Greetings all
I'm trying to input data to a table but I'm not having any luck.
A MySql database has been created and I've been able to put a table in it with two fields titled "Username" and "Password."
Now I'm trying to put data into the table. But I'm not having any luck.
Below is the most recent code I've tried.
<html>
<head>
Information to login to database here.
</head>
<body>
<?php
$sql = INSERT INTO aaa (username,password)
values (User3, Carpet);
?>
</body>
</html>
Help!