Hey,
I am trying to tweak a forum so that when a post is made, rather than the standard
[php]echo ‘You have succesfully created your new topic.’;[/php]
It will redirect the user to the forum category page where the topic was posted, I’ve tried
[php]header( “Location: category.php?id=’. $topic_cat . '” );[/php]
But get
Warning: Cannot modify header information - headers already sent by (output started at /home3/topictal/public_html/header.php:17)
I’ve checked in header.php and every other file on the site using dreamweave source search but returned no results
I found an alternative
[php]echo “”;[/php]
But that is just taking me to index.php(where the topic post section is located" the data is going to the database fine, there are no errors, it’s just not redirecting to where I want it, please help