当我在wampserver上运行时,我总是得到未定义的索引通知。在去这里之前尝试做了一些research,我把代码整合到了这里,但仍然没有运气。请帮忙。
<?php
if(!empty($_GET['lurl']) || ($_GET['lclass']) || ($_GET['lnotes'])) {
$url=$_GET['lurl'];
$clas=$_GET['lclass'];
$notez=$_GET['lnotes'];
$sql="CALL geturl('$url')";
$result1=mysql_query($sql);
?>
<center>
<table border="1">
<thead>
<tr>
<th>URL</th>
<th>CLASS</th>
<th>NOTES</th>
</tr>
</thead>
<?php
while($row=mysql_fetch_assoc($result1)){
?>
<tbody>
<tr>
<td><?php echo $row['URL']; ?></td>
<td><?php echo $row['Class']; ?></td>
<td><?php echo $row['Notes']; ?></td>
</tr>
</tbody>
<?php } ?>
<?php } ?>
答案 0 :(得分:1)
在第1行
if(!empty($_GET['lurl']) || ($_GET['lclass']) || ($_GET['lnotes']))
必须
if(!empty($_GET['lurl']) || !empty($_GET['lclass']) || !empty($_GET['lnotes']))
的参考