☆ Trevor's World Famous Form Data Tester ☆


Notice: No POST or GET Data

This processing script provides advice when you submit POST or GET data from a web form.

Make sure that you set your form's method attribute to 'post' or 'get' for detailed feedback.

Also check that your fields have name attributes as well as id attributes.


More Details on your $_POST, $_GET and $_FILES data

<form method="post" ... >

Nothing has been submitted using the post method.

</form>


<form method="get" ... >

Nothing has been submitted using the get method.

</form>


<form ... enctype="multipart/form-data">

No files have been submitted as multipart/form-data.

</form>


To view the PHP code in this processing script, add "?viewsource" to the end of the url in the browser address bar.