How to pass the value of "quantity", "price" to the next page
when clicked the image button? why even can't get value from
$_POST['quantity']?
echo("<form name=\"tradeForm\" >);
echo("<table>");
echo("<tr><td>Quanity:</td><td><input type=\"text\" name=\"quantity\"></td></tr>");
echo("<tr><td>Best Price:</td><td><input type=\"text\" name=\"price\"></td></tr>");
echo("<tr><td><A HREF=\"confirm.php?trade=buy&symbol=".urlencode($symbol)."\"><IMG SRC=\"arrow1.gif\" NAME=\"buy\" ALT=\"Buy\" BORDER=\"0\" onClick=\"JavaScript:return checkTrade()\"></A></td>");
echo("</table>");
echo("</form>");