ここで echo ステートメントを適切に使用できない理由がわかりません。
取得値をスクリプトに渡すリンク
http://example.com/example.php?page=2&hot=1002
以下は、リンクから値を取得するスクリプトです。
<?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'];
?>
私を助けてください。