DEV Community

David Kanekanian
David Kanekanian

Posted on

E4 - Extra Steps

Now that you know how to use some debugging features, try it out a few more times to build up your confidence. Here are some suggestions on what to try out:

  1. Put a breakpoint on the form processing script from example 2 and step through the execution flow. Check it is doing what you expected.

  2. Add a watch on an expression combining several variables, so that you can see observe changes to the whole expression. (Eg, $x + $y - 10)

  3. Try opening the webpage on a computer in your network other than your development computer (localhost). You may need to check your computer's IP address.

Parent topic: Example 4

Top comments (0)