olinux:

I have some checkboxes that are generated on the fly that represent a 
person signing up for an activity:

<input type=\"checkbox\" name=\"signup[$title_team]\" value=\"$rowID\" unchecked>
<input type=\"hidden\" name=\"whichForm\" value=\"sendchk\">";

//On the page this form is submitted to I pick the results up thus:

while(list($key) = each($signup)) {
                
//Start off SQL query - inserting available values into $table
                
$query = mysql_query("INSERT INTO $table 
(activity,username,email,signedup4,theDate) VALUES 
('$id','$username','$ipemail','$key','$completeDate')");
                        
                        $list = "<p align=\"center\">";
                        $list .= "<b>'</b>";
                        $list .= "$key";
                        $list .= "<b>'<b><br>"; 
                        $list .= "</p>";
                        $resultText = "<h2 align=\"center\">Thanks $username! Your 
selection has been recorded succesfully!</h2>";
                        }
//end-while


HTWI (Hope That Was Informative) - New FLA (Four Letter Acronym)

Russ

#-------------------------------------------------------#
                                
         "Believe nothing - consider everything"        
                                                        
  Russ Michell
  Anglia Polytechnic University Webteam
  http://gertrude.sipu.anglia.ac.uk/webteam
  [EMAIL PROTECTED]
  +44 (0)1223 363271 ext 2331
  
  www.theruss.com
                        
#-------------------------------------------------------#


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to