Boris Jakovljevi?
New member
In my HTML document I have two text fields, the first one's name is 'name' and the other one's is 'number'. Via these two text fields and a Submit button I enter the name and the number of the person, which are then entered automatically in a MS Access' MDB database via a PHP script. What should the PHP code look like?
My HTML is like this (my PHP will be phpconnection.php):
<html>
<head>
</head>
<body>
<form action="phpconnection.php" method="post">
Enter person's name: <input type="text" name="name"><br><br>
Enter person's number: <input type="text" name="number"><br><br>
<input type="Submit" value="Submit">
</form>
</body>
</html>
My HTML is like this (my PHP will be phpconnection.php):
<html>
<head>
</head>
<body>
<form action="phpconnection.php" method="post">
Enter person's name: <input type="text" name="name"><br><br>
Enter person's number: <input type="text" name="number"><br><br>
<input type="Submit" value="Submit">
</form>
</body>
</html>