Hello all.
What I'm trying to do is to pass a variable using a form.
So I'm doing this
while ($num <= $num1) {
$num++;
echo "<br>$num";
echo "<br> <b>";
echo $big[name][$num];
echo "<br></b>";
echo $big[address][$num];
echo "<br>";
echo $big[city][$num];
echo "<br>";
echo $big[Postal_code][$num];
echo "<br>";
echo "Phone: ";
echo $big[phone][$num];
echo " Fax: ";
echo $big[fax][$num];
echo"<br>";
echo $big[email][$num];
echo "<br><br>";
if ($num == 10)
{$num = serialize($num);
echo "<FORM NAME ='next10prev10' METHOD=get ACTION='dataaccess.php'>
<input name='num' type='hidden' value = '.$num.' >
<a href='dataaccess.php'> Next 10</a>";
break;
} }
But it doesn't seem to be passing $num to the next page which is what I want it to do. Any ideas would be greatly appreciated.
Thanks all,
Ian