Ver Mensaje Individual
  #5 (permalink)  
Antiguo 14/01/2012, 09:08
Avatar de Quentin_
Quentin_
 
Fecha de Ingreso: septiembre-2011
Mensajes: 32
Antigüedad: 12 años, 7 meses
Puntos: 0
Respuesta: problema al insertar dato en tabla mysql

el error me lo esta dando en la linea del INSERT, eso seguro:

<?php require_once('../conections/conexion.php');

$texto=$_POST['texto'];
$insertSQL = "INSERT INTO mitabla (texto) VALUES ('$texto')";

mysql_select_db($database_conexion, $conexion);
$Result = mysql_query($insertSQL, $conexion) or die(mysql_error());

?>