Hi,
Here is my problem: I want to visualize all columns from a table. The contents of the last one are too large, so I though of instead of showing those on the table, just output a link (perhaps a small gif or just the word 'view') so that when you click on it you get a pop-up window (via some javascript instruction) with the contents of that last column.
The way I do it now is
$query = "select * from blah blah...";
$result = mysql_query($query);
$j=0;
while($row=mysql_fetch_array($result))
{
echo "<tr>";
echo "<td class='small'bgcolor=\"$color\"><center>".$row[columnname]."</td>";
echo "</tr>";
}
How could I do this ?
Thanks a million