I am wanting to send this browser a different session variable for each row but I don't want to send it in the url
basically send the next page the id number so that it can pull records
any help will be greatly appreciated
I am new to php
$result = mysql_query("SELECT fldappdate, control, fldbuyfirstname, fldbuymiddlename,fldbuylastname FROM financial WHERE fldcarlotprefix='$prefix'");
while ($row = mysql_fetch_array($result, MYSQL_NUM)) {
echo'<TR> <th width="30%">';
echo '<a href="noneditbuyer.php">'.$row[0].'</a>';
//after clicking on this link send session variable
echo '<th width="30%">';
echo '<a href="noneditbuyer.php">'.$row[1].'</a>';
//after clicking on this link send session variable
echo '<th width="30%">';
echo '<a href="noneditbuyer.php">'.$row[2].$row[3].$row[4].'</a>';
//after clicking on this link send session variable
echo '</TR>';