"Karthikeyan" <[EMAIL PROTECTED]> skrev i melding
002601c1c461$cfa08580$0600a8c0@aspire006...">news:002601c1c461$cfa08580$0600a8c0@aspire006...;
Hi Guys,

  I allready posted this question in detail but I believe I didn't explain
it properly.

  There are 2 hidden variable in my FORM.

  1. order = 10 and 2. order=20

  I want to retrieve both the orders in the next page say somename.php.  How
do i do that.

  Regards,

karthikeyan.

You must put the in a array like this

<input type="hidden" name="order [1]" value="10">
<input type="hidden" name="order [2]" value="20">


On the nest page you just do

echo "The first  order is ".order[1]." and the second order is ".order[2];



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to