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 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>";
for($i=1;$i<sizeof($columns);$i++)
echo "<td class='small'bgcolor=\"$color\"><center>".$row[$columns[$i]]."</td>";
How can I do this ?
Thanks a lot !