KYKK 0 Posted November 8, 2007 Report Share Posted November 8, 2007 In HTML code I put a text box that people type words in then Submit how do i put those words to somewhere i know how to send a e=mail when the person press submit/. Quote Link to post Share on other sites
KYKK 0 Posted November 8, 2007 Author Report Share Posted November 8, 2007 and How I create a forums page with html or other .... is it a lot of links ?? but how people that login add a link to the html code ? Quote Link to post Share on other sites
Ingolme 1,027 Posted November 8, 2007 Report Share Posted November 8, 2007 That's far more than HTML, it uses PHP and other server side laguages. It's really complicated. I recommend reading W3Schools' PHP or ASP tutorials. Quote Link to post Share on other sites
Synook 47 Posted November 9, 2007 Report Share Posted November 9, 2007 and How I create a forums page with html or other .... is it a lot of links ?? but how people that login add a link to the html code ?It is also a good idea to download an existing open-source forum system like phpBB and have a look at their code for ideas.In HTML code I put a text box that people type words in then Submit how do i put those words to somewhere i know how to send a email when the person press submit/.You could store them in a database such as MySQL. Have a look at the MySQL part of the PHP tutorial.If you just want to store them in a flat file you can use PHP's file functions to open up an append+ stream and just write the posted data to the file.As Ingolme said, the W3Schools PHP tutorial is the way to go. Quote Link to post Share on other sites
SpOrTsDuDe.Reese 1 Posted November 9, 2007 Report Share Posted November 9, 2007 You would use PHP to make the forums page. HTML can't save replys to the server. PHP does that for you if you code it correctly. And if you want to show how many users are active within the past 5/10/15 minutes you would add a timestamp to your SQL members database. Persoanlly I find the PHP tutorial at w3schools to be not as well developed as it could be. Quote Link to post Share on other sites
KYKK 0 Posted November 9, 2007 Author Report Share Posted November 9, 2007 oo thanks Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.