How to develop a forum for a web page using HTML, CSS, Javascript and PHP together with Apache?
Hοw tο renovate a forum fοr a web page using HTML, CSS, Javascript аnd PHP collectively wіth Apache?
Eνеrу time a particular user post hіѕ views (text etc), іt ѕhουld appear іn thе same page collectively user’s username.
Give mе ѕοmе sample examples.
Please lеt mе know ѕοmе references regarding thеѕе stuff.
Regards.
Hello,
Ok, fist I would make a database mySQL to store the data. One table will be topics should id and topicName fields. If you whant sub topics make a table subtopics id, topicName, subtopicName fields. Then make a table resposes with id,topicName,subtopicName, and respose field. Now make a login system to login with username. Then you whant a page that displays links of all topics that goes to subtopics. Just
$sql = “SELECT * FROM topics”;
$result = mysql_query($sql,$con);
while($row = mysql_fetch_array($result)) {
echo “
“;
Now all links will go to subTopic page you do the same with subTopics.
You just then make A Link to view and new thread link. The new thread will be a form and stores the info in the resposes table. Thats the most of it. Well if you need any more help doing this just email me at jouellet@liquidct.com. Hope that gives you an thought of the process.
There are a dozen open sources forums available online already (a Google search for “PHP forum” listed at least 4 on the first page).
There’s no top re-making the wheel. Start with a forum that is well established, then customise it to your specific needs. This will save you time and money.
I would suggest you to use some open source ready made forum software packages that are available:
www.phorum.org
You can also check
http://www.techunits.com/programming for tips and tricks.
yes, you should use an open source forum – already working, tested and with excellent support.
Try this: www.phpbb.com – it is mostly well loved open source forum. It’s simple for install, configure and maintenance.
You may like to take an html tutorial at
http://referencedesigner.com/tutorials/html/html_1.php