somazvanica Posted October 14, 2013 Share Posted October 14, 2013 hi all i have problems with php script that i made, this script show items from sql db , and next to every item i put add to cart button, but when i click on that hi just get information from last raw of table.. what do i need to do? becouse i need a information from raw that is selected. i use this script for paypall { echo "<tr>"; echo "<td align='center' width=40>". $row['Art']. "</td>"; echo "<td align='center' width=80>". $row['d']. "</td>"; echo "<td align='center' width=80>". $row['De']. "</td>"; echo "<td align='center' width=80>". $row['Lo']. "</td>"; echo "<td align='center' width=80>". $row['R']. "</td>"; echo "<td align='center' width=80>". $row['nt']. "</td>"; echo "<td align='center' width=80>". $row['Ln']. "</td>"; echo "<td align='center' width=80>". $row['sn']. "</td>"; echo "<td align='center' width=80>". $row['Fn']. "</td>"; echo "<td align='center' width=80>". $row['rdj']. "</td>"; echo "<td align='center' width=80>". $row['stanje']. "</td>"; echo "<td align='center' width=80>". $row['cena']. "</td>"; echo "<td align='center' width=80>". $row['artnr']. "</td>"; echo '<td><button type="submit" src="shopping-cart-icon-614x460.png" width="30" height="30" id="btn_9" class="Button3" ></button></div> </div> <form id="form_1" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_self" style="margin:0;position:absolute;left:279px;top:1146px;width:220px;height:96px;"> <input type="hidden" name="bn" value="shoping.cart"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Druckfedern"> <input type="hidden" name="item_number" value="' . $row["artnr"] . '"> <input type="hidden" name="currency_code" value="EUR"> <input type="hidden" name="amount" value="1.00"> <input type="hidden" name="add" value="1"> <input type="hidden" name="quantity" value="1"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1">'; echo "</tr>"; } echo "</table>"; } mysql_close($db_con); ?> <input type="hidden" name="item_number" value="' . $row["artnr"] . '"> this value i every time i click only get me from last row of table, and there is also problem with pirst row of table becouse when i click add its not working only on frist row.. i will send whole script in attacment it prabaly need some claning but i am new in this, if someone can help me THX filter.php Link to comment https://forums.phpfreaks.com/topic/282948-paypall-litle-help-pliz/ Share on other sites More sharing options...
sasa Posted October 24, 2013 Share Posted October 24, 2013 move submit line inside form and close form tag somet6hing like this { echo "<tr>"; echo "<td align='center' width=40>". $row['Art']. "</td>"; echo "<td align='center' width=80>". $row['d']. "</td>"; echo "<td align='center' width=80>". $row['De']. "</td>"; echo "<td align='center' width=80>". $row['Lo']. "</td>"; echo "<td align='center' width=80>". $row['R']. "</td>"; echo "<td align='center' width=80>". $row['nt']. "</td>"; echo "<td align='center' width=80>". $row['Ln']. "</td>"; echo "<td align='center' width=80>". $row['sn']. "</td>"; echo "<td align='center' width=80>". $row['Fn']. "</td>"; echo "<td align='center' width=80>". $row['rdj']. "</td>"; echo "<td align='center' width=80>". $row['stanje']. "</td>"; echo "<td align='center' width=80>". $row['cena']. "</td>"; echo "<td align='center' width=80>". $row['artnr']. "</td>"; // echo '<td><button type="submit" src="shopping-cart-icon-614x460.png" width="30" height="30" id="btn_9" class="Button3" ></button></div> <form id="form_'.$row["artnr"] .'" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_self" style="margin:0;position:absolute;left:279px;top:1146px;width:220px;height:96px;"> <input type="hidden" name="bn" value="shoping.cart"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="item_name" value="Druckfedern"> <input type="hidden" name="item_number" value="' . $row["artnr"] . '"> <input type="hidden" name="currency_code" value="EUR"> <input type="hidden" name="amount" value="1.00"> <input type="hidden" name="add" value="1"> <input type="hidden" name="quantity" value="1"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="no_note" value="1">'; echo '<td><button type="submit" src="shopping-cart-icon-614x460.png" width="30" height="30" id="btn_9" class="Button3" ></button>'; echo '</form>'; echo "</tr>"; } echo "</table>"; } mysql_close($db_con); ?> i change form id to. it's must bi uniq Link to comment https://forums.phpfreaks.com/topic/282948-paypall-litle-help-pliz/#findComment-1455206 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.