Nov 21, 2009

Loop Through Form - How do you do it?

free web hosting
Open Discussion > MODERATED AREA > Computers > Programming Languages > PHP Programming

Loop Through Form - How do you do it?

Tyssen
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.

Comment/Reply (w/o sign-up)

ciroxyz
Not sure, but I think it can be done like this:

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;
}


Notice from BuffaloHELP:
Codes, any type, need to be within the CODE tag. Refrain from making double posts. Last caution note. Merging.

 

 

 


Comment/Reply (w/o sign-up)

truefusion
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!";
}

Comment/Reply (w/o sign-up)

Spectre
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.
 }
}

Comment/Reply (w/o sign-up)

Tyssen
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?

Comment/Reply (w/o sign-up)

dul
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.

Notice from BuffaloHELP:
It's bad enough that you did not use the CODE tag, that's all you had to say? Warning issued.

Comment/Reply (w/o sign-up)

HmmZ
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 tongue.gif

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 smile.gif

Hope that helps happy.gif

Comment/Reply (w/o sign-up)

gogoily
Maybe this can help:
CODE

foreach($_POST as $k=>$v)
   if(empty($v))
      echo "$k is null";

Comment/Reply (w/o sign-up)

FeedBacker
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

Comment/Reply (w/o sign-up)

sonesay
The previous post your question is so vague I have no idea what you are trying to do.

I have been using the $_POST array to loop through and string together my insert query. I have a very long list of text areas so it saved me a bit of typing by using the array instead of explicitly referencing each field name. I have how ever found out that if you include an input image type for the submit button this also gets added on to the array so you need to strip them off properly to be able to get the correct amount of array elements.

It usually adds on two values image_x and image_y coordinates of where you clicked on the image to the end of the array. You cannot just trim it on the right as string length differs depending on where you clicked on the image button.




Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : loop, form

  1. Php Date() Problem [resolved]
    date() seems to loop same ninute. (4)
  2. Help Needed With Directory/file Listing Code Infinite Loop
    Made an infinite loop but why is this so? (5)
    Hi all ive got a small and simple (for the moment atleast /unsure.gif"
    style="vertical-align:middle" emoid=":unsure:" border="0" alt="unsure.gif" /> )file and directory
    listing script in php as follows CODE $dir = "."; $num = 0; $file = scandir($dir); while($file
    = scandir($dir)){     echo $file ;     echo " ";     $num = $num + 1;      }; the concept is
    simple enough, the directory to start with is the current one, so scan this directory and while we
    have a result do a loop to echo the file/directories found, incriment the array number by one so we
    get the....
  3. For Loop
    for loop problem (5)
    i'd like to make for loop which dependes on a $_GET variable: here is my tries: CODE if
    (isset($_GET ) { switch($_GET )     {         case 'asc': $exp1 = "$x>0"; $exp2 =
    "$x=$total";             $condition = '$x++';             break;         case
    'desc'; $exp1 = "$x=$total"; $exp2 = "$x>0";             $condition = '$x--';
                break;     } } then CODE for($exp1; $exp2; $condition) { //** do something
    **// } that is what i want to do, sure this code is wrong so what is the valid code?!!....
  4. For Each Loop Help
    (1)
    I have a page where I list a number of records from my db. Under each record I have a checkbox and a
    text field. At the bottom of the list I have a submit button. I want to be able to check various
    boxes and edit the text field then click the button to update all of the records. I currenlty have
    the following and it updates the records ok (checkbox, I haven't messed with the text field yet)
    when I first check the boxes but it will not update the db when I uncheck the boxes. My form: PHP
    Code: CODE if(isset($_POST )); $active1=serialize($_POST );....
  5. While Loop
    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
    colums and a determind number of rows with a while loop, however when I test the page it goes and
    goes, and then returns an error stating that the maximum 30 second limit has been reached, I
    understand what that means I just don't know why it's looping forever: CODE while
    ($weightnum > 0); { echo " ";    echo   ' ';    echo   ' ';    echo " ";
    $appendval = $apendval + 1; $weightnum = $weightnum - 1; } Also Am I appending a number t....

    1. Looking for loop, form

Searching Video's for loop, form
See Also,
advertisement


Loop Through Form - How do you do it?

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com