Guru help needed with forms

liunx

Guest
I have a script written in PHP that looks like this:<?//there is only non-pertinant info above this<br />
while ($row=mysql_fetch_array($list))<br />
{<br />
?><br />
<FORM ACTION="xxxxxx" METHOD=GET><br />
<?<br />
echo "<FONT COLOR=\"#FFCC00\"><B><CENTER>List for the raid on ".$row['target']." that was run by ".$row['host']." at ".$row['raidtime']."</FONT><BR>\r\n";<br />
echo $row['credit']."</CENTER></B><BR>\r\n";<br />
?><br />
<CENTER><INPUT TYPE=SUBMIT NAME="APPROVE" VALUE="Approve Points!"> <INPUT TYPE=SUBMIT NAME="DELETE" VALUE="Delete Raid!"><br />
</FORM><br />
<br />
<br />
<BR><BR><BR><br />
<br />
<br />
<?<br />
<br />
The output is the following:<FORM ACTION="xxxxxxxxxx" METHOD=GET><FONT COLOR="#FFCC00"><B><CENTER>List for the raid on Test that was run by Shibbey at 2003-03-15 15:47:00</FONT><BR><br />
Shibbey, Argulace, Crepuscular, Compost</CENTER></B><BR><br />
<CENTER><INPUT TYPE=SUBMIT NAME="APPROVE" VALUE="Approve Points!"> <INPUT TYPE=SUBMIT NAME="DELETE" VALUE="Delete Raid!"><br />
</FORM><br />
<br />
<br />
<BR><BR><BR><br />
<br />
<br />
<FORM ACTION="xxxxxxxx" METHOD=GET><FONT COLOR="#FFCC00"><B><CENTER>List for the raid on MoK that was run by Argulace at 2003-03-15 15:54:17</FONT><BR><br />
Shibbey, Argulace, Solarance</CENTER></B><BR><br />
<CENTER><INPUT TYPE=SUBMIT NAME="APPROVE" VALUE="Approve Points!"> <INPUT TYPE=SUBMIT NAME="DELETE" VALUE="Delete Raid!"><br />
</FORM><br />
<br />
<br />
<BR><BR><BR><br />
xxxxxx was substituted for security reasons... How can I make the form submit the list of names? I don't care if the names can be added to, or deleted. In fact if there is a way to set a default value to the <INPUT TYPE=TEXT> function, that would be best!<!--content-->If I understood your question correctly,<br />
add this line of code in the code where you create HTML code in your PHP.<br />
<br />
<input type="hidden" name="nameList" value="Shibbey, Argulace, Crepuscular, Compost"/><br />
<br />
Now when the form is submitted you will have <br />
<br />
nameList = Shibbey, Argulace, Crepuscular, Compost<br />
<br />
Hope this helps<br />
<br />
Khalid<!--content-->
 
Back
Top