我无法理解为什么我无法在这里正确使用 echo 语句。
将获取值传递给脚本的链接
http://example.com/example.php?page=2&hot=1002
下面是我的脚本,它从链接中获取 GET 值。
<?php
session_start();
require('all_functions.php');
if (!check_valid_user())
{
html_header("example", "");
}
else
{
html_header("example", "Welcome " . $_SESSION['valid_user']);
}
require('cat_body.php');
footer();
?>
cat_body.php 如下:
<?php
require_once("config.php");
$hot = $_GET['hot'];
$result = mysql_query( "select * from cat, cat_images where cat_ID=$hot");
echo $result['cat_name'];
?>
请帮我。