document.getElementById("id-of-image").style.height = "100px";
我在变量
中使用http://domain.com/update.php?id=DCS013001
的get方法
store id
但它不起作用
答案 0 :(得分:1)
使用isset()
if(isset($_GET['id']))
{
$id=$_GET['id'];
echo $id;
}
答案 1 :(得分:0)
您应该添加支票(如果有) -
$id = !empty($_GET['id']) ? $_GET['id'] : false; // Or store anything that would be useful to $id
仅在设置了$id
时才存储其他存储其他东西或不存储它。但是如果你不存储$id
,你必须在任何地方添加检查。