Need Ideas To Improve our Forum

than make a new database :p

And then all of the modifications to existing files or make new files.

The form for a whole standard new thread is specially made to insert the data in a specific table in the database, You would need to modify existing files or make a new form.
 


make a new database and have it check for posts using the database

The database can't check for quick quote posts, You need a PHP file to execute the MySQL Query such as:

Code:
mysql_query("SELECT title, content, userid, etc FROM quickquote_reply WHERE threadid='$threadid'")

You see, not so simple, Also you cannot edit an existing table in the database, you would have to create a new one, user another PHP file and installer of some sorts.

Also the database doesn't know if the posts in that table are quick quotes. You would have to create a new table, called quickquote_threads or something along those lines and query posts from that table.

The database is simply data storage, and the only way you can tell what is what is by querying it.

I have create over 1300 lines of just mysql querys for my forum software you know, and there is more to squeeze in.

EDIT: Saw the edition, My post still counts.
 
12 T_T
not enough characters to post

I was about to say You can't have joined up when you was 8, Anyhow.

Anyhow, I'm 14, nice to meet you.

You can learn PHP better from tutorials, I learned all of my knoledge from examples and tutorials.

I first started where you are now at 11, I know a bit fo VBS and BATCH, i just thing you can't do much with them. That's why i learned PHP and MySQL, CSS, HTML, JS.
 
the problem is i have nothing to make but i can easily learn (i want to say assimilate) a language on my own, i stood up till 1 am at http://esolangs.org/wiki/
 
Last edited:

Back
Top