Pero debería corregirse con la opción que me diste ahora, pero figate que me sigue saliendo el mismo error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1
Este es todo el codigo que tengo en esa página
Código PHP:
Ver original<?php
require_once("conexion/conexion.php");
$idcitas=$_GET['idcitas'];#aki recibes el id que acabas de insertar
?>
<html>
<head>
<title>Consultar Citas</title>
</head>
<body onLoad="limpiar()">
<form action="edit.php" method="post" name="form">
<table align="center" width="814">
<tr>
<td valign="top" align="center" colspan="2">
<?php
switch ($_GET["m"])
{
case "1":
echo "<h2 style='color:#04B404'>Su cita se ha registrado correctamente</h2>";
break;
}
?>
<h3>Citas Generadas</h3>
</td>
</tr>
<?php
printf("<tr><td>Su numero de cita es:<b> %s </b></td> <p><td>Dia de la Cita:<b> %s </b></td>
<td>Hora:<b> %s </b></td>
<td>Tipo de Consulta:<b> %s </td>
<td>Fecha en la que se generó este registro:<b> %s </td></tr>", $row["idcitas"],$row["dia"],$row["jornada"],$row["solicitar_cita"],$row["fecha_peticion"]);
}
?>