0
我有一個JavaScript日曆SQL查詢禁用日曆
<input type="text" size="8" id="date" name="calendar[]" />
當我輸入下面的PHP它禁用日曆。
$result=mysql_query("select * from products where id='maui'");
while($row=mysql_fetch_array($result)){
但如果我輸入沒有PHP的「where子句」它的工作原理:
$result=mysql_query("select * from products");
while($row=mysql_fetch_array($result)){
什麼是一個變通的一些選項?