-
Notifications
You must be signed in to change notification settings - Fork 0
/
ingresarMenu.php
48 lines (44 loc) · 1.04 KB
/
ingresarMenu.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
//conectamos Con el servidor
$conectar=@mysql_connect('localhost','root','');
//verificamos la conexion
if(!$conectar){
echo"No Se Pudo Conectar Con El Servidor";
}else{
$base=mysql_select_db('tacos');
if(!$base){
echo"No Se Encontro La Base De Datos";
}
}
//recuperar las variables
$ID=$_POST['IDPlato'];
$nombre=$_POST['nombre'];
$descripcion=$_POST['descripcion'];
$precio=$_POST['precio'];
//hacemos la sentencia de sql
$sql="INSERT INTO menu VALUES('$ID', '$nombre', '$descripcion', '$precio')";
//ejecutamos la sentencia de sql
$ejecutar=mysql_query($sql);
//verificamos la ejecucion
if(!$ejecutar){
echo"Hubo Algun Error";
}else{
echo"Datos Guardados Correctamente<br>";
}
mysql_close($conectar);
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="estiloTabla.css">
</head>
<body>
<form action="ingresarMenu.html">
<input type=submit value="Otro Plato">
</form>
<form action="index.html">
<input type=submit value="Volver">
</form>
</body>
</html>