Jump to content

Need help with sending data


Madatan

Recommended Posts

Okey, so here is my problem.

Down here I got some code, there are of course database connections higher up but thats not
necessary at the moment, I guess. Anyway, what I want this form to do(any kind of link would suffice) is to send the data that will be shown in the button from the 'name' row in the database to another page. This page could be for example start.php. I then want to be able to use the 'name' thats been clicked in start.php

Does anyone understand what I want? :P

[code]<?
while($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
?>
Name:
<form id="form2" name="form2" method="post" action="">
<input type="submit" name="<? echo $row['name']; ?>" value="<? echo $row['name']; ?>" />
</form>

<?
}
?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/10968-need-help-with-sending-data/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.