Debuging Question?
Moderator: General Moderators
-
DougieDoug
- Forum Newbie
- Posts: 2
- Joined: Mon Jan 11, 2010 1:24 pm
Debuging Question?
I'll admit right up front that I am in way over my head on this one.... I'm trying to modify a script created by one of those web form creation programs (SIMFATIC..which works really well). I have one form processing script that displays the form and does all the mail and validation stuff. The form's action goes back to this same script (ie the webform is accessed via url example/example.php and this same file is in the form action) . I have learned quite a bit about PHP by using the debugger and stepping through each line of code. I want to step through each line of the code that is called in the form's action. How do I do this? Am I even looking at this correctly?
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: Debuging Question?
You can use xdebug with several popular editors. And Zend provides some solutions to provide debugging.
(#10850)
-
DougieDoug
- Forum Newbie
- Posts: 2
- Joined: Mon Jan 11, 2010 1:24 pm
Re: Debuging Question?
OK So even though its the same script I can't use the same means of debugging since one is client side and the other is Server side? Do I have that right? Thanks for your help.