Hola
Cuando quiero hacer esta instruccion en php:
<?php
include("conex_dg.phtml");
$link=Conectar();
//$link2=Conectar();
mysql_query("insert into historial
values ($id_hist,$hist_fech''$hist_gpo','$hist_cic',' $cmfi','$cmfr','$cmgc','$cmge','$cmgec','$cg','$as p','$aasc','$nec_esp','$obs','$aid','$zona','$jard in','$deleg','$cve')",$link);
mysql_query("insert into alumno
values($id_alum,'$nombre_n')",$link); // ahora es tan sencillo como hacer
//echo $consulta;
if (!mysql_query($link)) {
//echo "Error en la consulta: $consulta";
echo "MySQL dice: ".mysql_error();
exit;
}
Obtengo el siguiente error:
Error sintaxis near to id
Lo que quiero es insertar datos en diferentes tablas con un mismo script en php,si inserta los datos pero me marca ese error.
Si me pueden ayudar ,gracias