Immense Gaming
Immense Gaming

Reputation: 1

Forum posts not showing

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

Answers (1)

Tuxes3
Tuxes3

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

Related Questions