PHP SCRIPT ON POST help :)?

Chip

New member
hi, i have a script like this

if(empty($Product))
{
echo ("You didn't select any Product.");
}
elseif (isset($_POST["result"])
{
$P = count($Product);

for($i=0; $i < $P; $i++)
{
echo($Product[$i] . "<br/>");
}
}

and i want to use post on the result of

echo($Product[$i] . "<br/>");

is it possible? because i have tried it and it didn't worked out for me, or is there anoher way where in i can use a function to call the results, thanks in advance :)
 
Back
Top