这是我的按钮,它包含一个值:
<td><a href="viewMore.php?eventID=<?php echo $row['eventID'];?>"><button class="viewMore"> View </button></a></td>
这是我的php代码:
<?php
include ('connectDB.php');
$eventID = $_GET['eventID'];
echo $eventID;
?>
这是错误消息:
注意:第4行的/users/c/cakaja/www/astonevents/viewmore.php中未定义索引:eventid
我不知道为什么 $eventID
没有价值。
2条答案
按热度按时间qjp7pelc1#
如果您的web服务器配置不正确,则可能需要在按钮代码中的文件和查询字符串之间添加/符号:
m528fe3b2#
你需要使用
if(isset($_GET['eventId']))
.尝试使用:
PHP
isset()
文档:http://php.net/manual/en/function.isset.php同时尝试使用: