debugging PHP using ZendStudio

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aswathip
    New Member
    • Jan 2009
    • 16

    debugging PHP using ZendStudio

    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
    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();
    		}
    	?>
    Thanks
  • Markus
    Recognized Expert Expert
    • Jun 2007
    • 6092

    #2
    You'd be better off asking on the zend developer forums.

    Comment

    • aswathip
      New Member
      • Jan 2009
      • 16

      #3
      thanks i will do that

      Comment

      Working...