Jump to content

mburt

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mburt's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi. I have a very simple question: How do I add data to my MySql database?
  2. Ah. I see. So... How exactly do I do this? Note: I [i]do[/i] have a MySql Database.
  3. Hi. I want to make a basic page where a form puts data into a page and it stays there. Like a comment box. Here's my html: [code]<html> <head> </head> <body> <form action="submit.php" method="post"> <p>Your name: <input type="text" name="name" /></p> <p>Your age: <input type="text" name="comment" /></p> <p><input type="submit" /></p> </form> </body> </html>[/code] and the PHP [code]<html> <head>   <title>PHP Test</title> </head> <body> <b><?php echo $_POST['name']; ?></b> <hr> <?php echo $_POST['comment']; ?> <hr> </body> </html>[/code] So my question is: How can I store data onto that page?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.