Forum Moderators: coopster

Message Too Old, No Replies

Hide information php

Hide information php

         

Imy_S3

12:06 pm on Mar 18, 2004 (gmt 0)

10+ Year Member



Hi

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";

Birdman

4:41 pm on Mar 18, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can do that easily with CSS.

<table style="display: none;">

Birdman

vincevincevince

10:05 pm on Mar 18, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



everywhere you have print change it to $string.=

at the end, everything will be in a variable called $string that only you can access from php (not output to client browser)