Recent content by stevejustine

  1. S

    PLease Review My Website?

    Hello User, I have made a new Web Design end SEO business, check the link below. Could you please check it out and review it so that I know how it is? Site--> infilon.com Thanks. Infilon Technologies
  2. S

    PHP. Update database with submit button?

    You would have a function such as "newthread()". You could set it up like this. function newthread() { if (isset($_POST['submit'])) { $title = $_POST['title']; $message = $_POST['content']; //Query to update database with new thread } else { //Show Form } So it will default to show the form...
Back
Top