Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/10/2010, 07:30
cesar31
 
Fecha de Ingreso: octubre-2010
Mensajes: 26
Antigüedad: 13 años, 6 meses
Puntos: 0
Problems Importing Data to MYSQL

Estoy teniendo problemas para importar mi data al MySql,
Este el es error que me esta dando es:

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\xampp\htdocs\xampp\prueba1\prueba1.php on line 6[/B]

El error esta en la linea 6 de prueba1.php, COMO LO SOLUCIONO? aqui esta prueba1.php:

<?php

echo $_POST["fecha"].",".
$_POST["consultor"]

mysql_connect("localhost","root","welcome");

if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("hoja",$con);



$sql = INSERT INTO hoja (TELEFONO) VALUES ($_POST[fecha],$_POST[consultor]);

if (!mysql_query($sql,$con)
{
die('Error: ' . mysql_error());
}


mysql_close($con);

?>