spooke2k Posted June 8, 2007 Share Posted June 8, 2007 my problem is this ill show code then explain what i want echo "<td width = 100px align=\"center\"><input type=\"submit\" name = \"{$row['productcode']}\" value= \"Download\"> </td>"; this bit is on a while loop adding buttons to a table giving them a unique name according to the record comming ba ck this is in a php self form so that it creates the table on fly deping on what query has been requested to run. $prodcuctname[$count] = $row['productcode']; trying to add the unique name to a array now at the top of this php script is this i want to do a check to see if the button has been clicked and then load the new query in but this part doesnt work how to i check to see it those unique buttons have been clicked and then exercute according new query. //doesnt work while ($i <= 6) { if( $_POST[$procuctname[$i]]=='Submit') { getimage("http://" .$procuctname[$i]); } $i++; } PLEASE PLEASE anyone know how to fix this its really important Spooke2k Link to comment https://forums.phpfreaks.com/topic/54810-solved-array-passing-to-button/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.