Reputation: 1
I have a really big problem here with alot of code but i think i know the problem When im creating a topic(post) it get the category_id of 0 but category_id's is starting on 1 so the topic(post) is not showing in enny of the categorys. But i dont know how to fix that problem.
My codes:
Upvotes: 0
Views: 42
Reputation: 447
in your create_topic.php on line 33
<input type="hidden" name="cid" value"<?php echo $cid; ?>" />
Your are missing the "="
<input type="hidden" name="cid" value="<?php echo $cid; ?>" />
Upvotes: 1