Forum Moderators: coopster
I have the code below within my .php script.
However i do not want to display the table or its data.
I want it hidden.
But i need the data to manipulate it, just need it hidden thats all.
Hope you can help
Thanks in advance
print "<table border=20>
<tr>
<th>seq name
<th>is called\n";
for($j=0; $j<$nrows; $j++)
{
$row = pg_fetch_array ($results);
printf ("<tr><td>%s</td>
<td>%s</td>
</tr>", $myrow['sequence_name'], $myrow['last_value']);
print "<tr><td>" . $row["sequence_name"];
print "<td>" . $row["last_value"];
print "\n";