PD: Nombre De La Base De Datos : Prueba y De La Tabla Es : Prueba
Código PHP:
<html>
<head>
<title>Prueba Para PHP y Base De Datos</title>
</head>
<body>
<form action="" method="POST">
Nombre: <input type="text" name="Nombre">
<P>
Correo:<input type="text" name="Correo">
<p>
<input type="Submit" name="Enviar" Value="Enviar" >
</form>
<?php
if (isset($Enviar)){
$db= mysql_connect("localhost","root","02071993");
mysql_select_db("prueba",$db);
$sql="INSERT TO prueba('Nombre','correo') VALUES('2','3')";
mysql_query($sql);
};
?>
</body>
</html>