posting a hyperlink with a table ???
Is there any way that i can post the value in of betIDinto a session or onto another page using a hyperlink in a table
I cant do it any way
wonderin if any gurus can help me
$i=1;
while($row = mysql_fetch_array($result))
{
$color = ($i % 2) ? "#F0E68C " : "#E0FFFF ";
echo "<tr bgcolor =", $color,">";
echo "<td><a href = 'seeBet.php'>", $row['betID'],"</a></td><td>",$row['fixtureID'], "</td><td>", $row['userName'], "</td><td>", $row['amount'],
"</td><td>", $row['prediction'],"</td><td>", $row['time'],"</td><td>",$row['result'],"</td><td>","</td>";
echo "</tr>";
$i++;
}
thanks