I have a form that has multiple fields, and for testing purposes is there a way I could print out the values entered in all the fields, without having to individually print each value.
|
1
|
|
|
|
|
|
You should be able to do a |
||
|
|
|
|
For extra credit, I always have:
Whenever I need to debug an array - which is very often - I just do pre($arr); to get a nicely formatted dump. |
||
|
|
|
|
print_r() / var_dump() are simple and gets the job done. If you want a styled/dynamic option check out Krumo:
|
|||
|
|
|
Besides using inline debug statements, you could also considering transient debugging, i.e. you could use an IDE with debug capabilities, like eclipse or zend studio. This way you could watch any variable you'd like to. bye! |
||
|
|
|
|
If you're debugging a lot, I would recommend installing XDebug. It makes var_dump's very pretty and useful (giving you the type and length of the variable aswell). |
||
|
|
|
|
This PHP code doesn't require any knowledge of the fields in the form that submits to it, it just loops through all of the fields, including multiple-choice fields (like checkboxes), and spits out their values.
|
||
|
|
