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! Quote Link to comment 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. Quote Link to comment 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; ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.