I am using Zend studio for the first time.
Every thing works fine with my php and html. But once i do submit the output pane just goes blank and bebugging stops. The code behind the submit is
Thanks
Every thing works fine with my php and html. But once i do submit the output pane just goes blank and bebugging stops. The code behind the submit is
Code:
<?php
if(isset($_GET['button1']))
{
opentable();
echo "Inside isset";
$tot=0;
for($i=0;$i<10;$i++)
{
echo "$i+";
$tot=$tot+$i;
}
echo $tot;
closetable();
}
?>
Comment