Has the subject says...i'm still a noob and i dont know all fuctions etc...but i am testing php's in a localhost server with apache and mysql installed...well my doubt is...like how do i save a form results to a .txt file or (if you dont bother explaining some basics) how to save anything to Mysql(dont know Sh*t about Mysql)...
Like here is a basic form in Html :
Form.html
(talking about
ness eh?
<html>
<form action="formresult.php" method="POST">
Your Name <input type="text" name="name" />
Your Age: <input type="text" name="age" />
Hobbies: <input type="text" name="hobbies" />
Hours Spent at Pc per day: <input type="text" name="hours" />
<input type="submit">
</form>
</html>
Formresult.php
Hi <?php echo $_POST["name"]; ?>.
You are <?php echo $_POST["age"]; ?> years old.
Your hobbies are <?php echo $_POST["hobbies"]; ?>
You spend <?php echo $_POST["hours"]; ?> hours a day
Here i wanted to have somthing like a button..Confirm or smtnhg that saved the data..
...
Thanks