If you want list all values of submitted fields, you can write a simple loop to retrieve all entries in the $_REQUEST array. Below is an improved version of processing_forms.php to list all submited input values:<?php print("<html><pre>"); $count = count($_REQUEST); print("Number of values: $count\n"); foreach ($_REQUEST as $key=>$value) { print(" $key = $value\n"); } print("</pre></html>\n");?>If you test this with submit_comments.php on your Web server, you will get something like:Number of values: 2 name = Fyi Center comment = Good job.
PHP
Topic: PHP Forms
How To List All Values of Submitted Fields?
Browse random answers:
What are the method available in form submitting?
What are the differences between GET and POST methods in form submitting?
How To Create a Web Form?
How To Generate a Form?
what are the various methods to pass data from one web page to another web page ?
Where Is the Submitted Form Data Stored?
How To Retrieve the Submitted Form Data?
What Happens If an Expected Input Field Was Not Submitted?
How To Avoid the Undefined Index Error?
How To List All Values of Submitted Fields?
What Are Input Values of SELECT Tags?
How To Specify Input Values for Radio Buttons?
How To Specify Input Values for Checkboxes?
How To Supply Default Values for Text Fields?
How To Remove Slashes on Submitted Input Values?
How To Support Hidden Form Fields?
Difference between Get and Post?
Difference between $_GET and $_POST ?
What is $_REQUEST method for ?
How can we access the data sent through the URL with the GET method?
How can we access the data sent through the URL with the POST method?
what is max POST size.
Default upload max file size of file a file in php.ini?.