php - Function not working -
this question has answer here: reference: variable scope, variables accessible , “undefined variable” errors? 3 answers the following function not working , cannot see why. function nuevocontacto($_post) { try { include('func/usarbases.php'); $mensaje="insert `t_contactos`(`id_c`, `nombre`, `telefono`, `telefono2`, `corto`, `celular1`, `celular2`, `email`, `puesto`, `id_a`) values (null,'$_post[nombre]','$_post[tel1]','$_post[tel2]','$_post[corto]','$_post[cel1]','$_post[cel2]','$_post[email]','$_post[puesto]','$_post[id_a]')"; $hacerconsulta = $base->prepare($mensaje); $hacerconsulta->execute(); } catch( pdoexception $e) { echo "<p>error connection: " .$e->getmessage()."</p>"; } ...