I am still fairly new to this and can't quite get it working when I try two queries at once!
mysql_query("INSERT INTO ". FORUMS_TABLE ." (forum_id, forum_name, forum_desc, cat_id, forum_order, forum_posts, forum_topics, forum_last_post_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_announce, auth_sticky, auth_pollcreate, auth_vote, auth_attachments)
VALUES ('". $next_id ."', '" . str_replace("\'", "''", $username) . "', ' ', 1, 10, 0, 0, 0, 2, 0, 0, 0, 1, 1, 5, 5, 5, 5, 3)");
mysql_query("INSERT INTO ". AUTH_ACCESS_TABLE ." (forum_id, group_id, auth_view) VALUES ($nextid, $group_id, $value1)")
I want one after another to query to db. I know this is simple, just can't find an answer lol.