PHP 超全局 $_GET 是否可以在表单标签之外按预期使用和工作?例如,我可以在表单标签之外执行 $_GET('select box id') 并让它按预期工作吗?
<?php
---Placeholder for DB login info---
switch($_GET['select box id'])
{
case "text shown for second option of select box":
$query = mysql_query("placeholder for actual query");
$row = mysql_fetch_row($query);
$textboxValue = $row[0];
break;
}
?>