我在下面创建了这个简单的广播组,但在 PHP 中调用它时遇到了一些困难。
<form id="form1" name="form1" method="get" action="pre_process.php">
<p>
<input name="q" type="text" size="80"/>
</p>
<p>
<input type="submit" id="search_button" />
</p>
<p>
<label>
<input type="radio" name="SearchFormat" value="0" id="SearchFormat_0" />
Agreggated</label>
<br />
<label>
<input type="radio" name="SearchFormat" value="1" id="SearchFormat_1" />
Non-Aggregated</label>
我正在使用以下代码,但出现未定义索引的错误:SearchFormat
if($_GET["SearchFormat"]==0)
{
do stuff...
有人可以告诉我我做错了什么吗?
谢谢