I have a JavaScript calendar
<input type="text" size="8" id="date" name="calendar[]" />
When I input the following php it disables the calendar.
$result=mysql_query("select * from products where id='maui'");
while($row=mysql_fetch_array($result)){
but if I input the php without the "where clause" it works:
$result=mysql_query("select * from products");
while($row=mysql_fetch_array($result)){
What are some options for a work around?