fluidsharp Posted January 23, 2011 Share Posted January 23, 2011 Hi everybody! Could you help me with debugging. Exactly from index.php I call result_found.php through <form method="post" action="view/result_found.php"> and cannot debug code in this file. When I've tried set up breakpoint it doesn't help. Just show me result of executing code in result_found.php Thank you in advance! Link to comment https://forums.phpfreaks.com/topic/225426-phped-595-debugging-issue/ Share on other sites More sharing options...
mike12255 Posted January 24, 2011 Share Posted January 24, 2011 try posted the code on here and telling us what your error is unless we have those two things we cannot help you, sorry. Link to comment https://forums.phpfreaks.com/topic/225426-phped-595-debugging-issue/#findComment-1164205 Share on other sites More sharing options...
fluidsharp Posted January 24, 2011 Author Share Posted January 24, 2011 Hi, Thanks for reply. I wrote simple other code with has the same issue. I cannot interrupt executing code in result_found.php. Cannot run Stap Over (F8). It works only for index.php index.php: <?php some code ?> <form method="post" action="view/result_found.php"> Enter input format: <input type="text" name="from" value="" maxlength="5" size="30"> <input type="submit" value="Find enterd formats"> </form> result_found.php: <?php $a = $_POST['from']; echo $a; ?> Link to comment https://forums.phpfreaks.com/topic/225426-phped-595-debugging-issue/#findComment-1164296 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.