Hi there,
I’m kind of having the same problem as the poster before me.
I’m trying to display the query results in a table but as of right now all that is visible is the table border. Any advice would be greatly appreciated.
Thanks,
[code]
Untitled [/code] [php]<?php // Establish a connection with the database server $db = mysql_connect("localhost","icomdesign","arloguthrie")or die("ERROR.O1"); mysql_select_db("icomdesign")or die("ERROR. O2"); $results=mysql_query($db,"SELECT * FROM ananda");
//echo $results;
print "
" . $row['field1'] ." | " . $row['field2'] ." | " . $row['field3'] ." |
//mysqli_close($db);
?>[/php]
[code]</table>
[/code]