I have this nice loop to print out all of my field names. it sends it to input.php
LIST.PHP
for ($i = 0; $i < $columns; $i++)
{
echo "<td><a href=input.php?offset=" . $i . "?listitems=" . $list. ">" . mysql_field_name($fields, $i) . "</a>";
$offset = $i;
if ($i%3==0)
{
echo "<BR></tr></td><tr>";
}
}
INPUT.PHP
echo $offset;
echo $listitems;
when I hover my mouse over the links they show the correct offset and listitem, but when I click on it and it goes to the next page offset = 24 and $listitem is not recognized.
what is going on?
Thank you for your help
Damian