I have a pretty basic forum template I am working on for testing purposes
When I create a topic, and press submit, the proccess updates the database but doesn\'t out
Problem is in your code:
$result=mysql_query($sql); echo $result;
$result is resource type, since mysql_query($sql) returns resource Stop echoing $result.
$result
mysql_query($sql)