| | In ASP you'd do this: CODE For Each Field in Request.Form So how do you do it in PHP? I want to loop through a form, check to see if it has a value and if so, append to a string to send as the body of my email. |
|
|
CODE if (!filled_out($HTTP_POST_VARS)) { do something } And add this somewhere: CODE function filled_out($form_vars) { // test that each variable has a value foreach ($form_vars as $key => $value) { if (!isset($key) || ($value == "")) return false; } return true; }
if and else statements are all that is needed no looping functions.
CODE if(!$variable){ echo "you did not fill in the entire form"; } else{ echo "thanks for your submittion!"; }
ciroxyz, $HTTP_POST_VARS is generally considered 'obsolete' now. It may work (I think it may have been completely dropped from PHP 5x, but I don't know), but it's better to use the $_POST variable, in which all content submitted via the POST method is stored.
And truefusion, that will not work for a couple of reasons - for one, the $_POST variable is an array, and for two, an index not existing does not return FALSE in itself (although there are functions to reach this state, such as isset()). Further more, some input elements in a form - such as a radio button - will not register themselves at all when submitting the data if not selected - so simply checking whether or not they are empty will not work. Anyway, Tyssen, here's a quick snippet that should work (will only check if entries are null): CODE $array_keys = array_keys($_POST);
for( $i=0;$i<count($array_keys);$i++ ) { if( $_POST[$array_keys[$i]] == '' ) { // Not all fields have been enetered. } }
I found this on another forum:
CODE foreach($_POST as $key => $data) { if($key != 'required') { if($data !='') { $message .= $key.": ".$data ."\n"; } } } That works fine except that my output looks like this: Name: My Name Nameinitvalue: Name Positioninitvalue: Position Addressinitvalue: Address Phone: 5555555555 Phoneinitvalue: Phone Faxinitvalue: Fax Email: myemail@email.com Emailinitvalue: Email Home_workinitvalue: Work Comments: Test Commentsinitvalue: Comments The ones in italics are the actual fields that were filled in so all the others shouldn't be there (ie the ones with initvalue in the field name). Anyone got any idea where they're coming from?
Tysson's way is better. which is
CODE foreach($_POST as $key => $data) { if($key != 'required') { if($data !='') { $message .= $key.": ".$data ."\n"; } } } use array. come on.
Tyssen, from what i see, i am thinking you used type="hidden" for the initvalues, but when you recall all $_POST from your form, it will also recall the hidden types, all types are recalled with an array, not just the ones you want
I either suggest doing it without an array and do it manually, or use php to make the form more viable while using an array I am, however, unsure what you want to achieve with those initvalues, but i think (and i hope im right): CODE if(empty($Name)){ $value = "Name"; } else { $value = ""; } with something like that you can achieve to give the field an initial value, but, there is another way i was thinking of: You just want a text-field (for example: name field) where the field is not empty initially, but states "name" and disappears once the user focusses on the text field, so it can type its own name, i think thats achieves similar to the following: [code] print "<input type=\"text\" value=\"Name\" name=\"username\" onFocus=\"if(this.value=='Name')this.value=''\">"; [code] that provides a text field -> name insert text that is in the textfield (not focussed on it) -> Name when a user focusses on the text field, Name disappears and makes it an empty textfield, giving no trouble to the user Hope that helps
Extracting Text Field from Form using For Loop
Loop Through Form Dear, I am developing a form in which I want the data repeatedly. For example: For ($x=0; $x > 3; $x++){ Exam Name <input name="ename[]" type="text" id="ename" /> # of Subjects <input name="totsubj[]" type="text" id="totsubj" /> } I want to get the individual values once the form is submitted. The form uses method post and call another file where I get my variable through $_POST. HELP PLEASEEEEEE -question by Khabi Khan
Recent Queries:-
Keywords : loop, form
Made an infinite loop but why is this so? (5) Hi all ive got a small and simple (for the moment atleast /unsure.gif" for loop problem (5) i'd like to make for loop which dependes on a $_GET variable: here is my tries: CODE (1) I have a page where I list a number of records from my db. Under each record I have a checkbox and a how to stop the timeout (9) I have written a piece of code that is to make a forum which contains a table consiting of two Looking for loop, form
|
|
![]() Loop Through Form - How do you do it? |
| ADD REPLY / Got an Opinion! | Remove these ADs! | RAPID SEARCH! | Free Web Hosting | [X] |
|
Express your Opinions, Thoughts or Contribute more info. to help others. Ask your Doubts & Queries to get answers, So that "Together We can help others!" |
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP. | 500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE |
|