Madatan Posted June 1, 2006 Share Posted June 1, 2006 Okey, so here is my problem. Down here I got some code, there are of course database connections higher up but thats notnecessary 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.phpDoes 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.