我将通过请求向 PHP 代码发送GET
请求。它将传递几个参数。我将在我的 select 语句的 WHERE 子句中使用这些参数。
获取请求
http://localhost/server/person.php?Id=1&age=12&hieght=100
PHP 代码
<?php
$connection = mysql_connect("localhost","user","pwd");
if (!$connection )
{
die('FAIL: ' . mysql_error());
}
mysql_select_db("db", $connection );
$result = mysql_query("SELECT * FROM Person where hieght='$_GET[hieght]");
$num_rows = mysql_num_rows($result);
?>
我认为我的 PHP 代码是错误的。我不确定这是否是从GET
请求中获取变量的方法。