Project Description:
I have a very simple PHP forum which basically post text to a SQL database using the write.php form and show the entries at main.php where all the topics are displayed. Then, these topics have links to enter the full discussion at view_topic.php.
The work:
1. I would like to be able to post pictures at write.php along with the text for the topic.
-We should be able to post up to 3 pictures per topic
-System should automatically adjust the picture so that it is at or below 700 px width
-Picture should be displayed at main.php and view_topic.php
2. Currently the system automatically notifies via email to the creator of the topic whenever someone writes on his post. The system should notify to all users who wrote on the topic when a new entry is added.
-Email is obtained from a login variable called . Name can be obtained from a variable called
-The code to notify when the entry is added is located within the view_topic.php
4 files are included:
-view_topic.php which is the page where users can view topics and write a response.
-write.php where users can start a new topic
-main.php where all the topics are displayed
-forumtables-1.rtf which are the tables created at SQL
Feel free to ask if you have questions!