HI,
I am having some trouble with entering the data I call into a table and making it hang together correctly...
In my database I have a table called forum and three fields called 'email', 'exhibition' and 'text'. The user can go in and insert data into these three fields. What I need is for them to be posted on my index all hanging together organized in a table. When I post what I have on my index it all comes out a mess, squished together....
How do I call what each user has entered at a time? I think it must have something to do with arrays but I am not sure how I would do it.
This is my code
<?
mysql_connect("localhost","","");
mysql_select_db("Trapholt");
$get=mysql_query("select * from forum");
while($row=mysql_fetch_array($get)){
print "$row[email]"."$row[exhibition]"."$row[text]";
}
?>
Hope someone can help, I am in a real pickle!
AM