Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/04/2004, 13:33
Avatar de oenriqueg
oenriqueg
 
Fecha de Ingreso: noviembre-2003
Ubicación: Ciudad de México
Mensajes: 485
Antigüedad: 20 años, 5 meses
Puntos: 1
Pues no jalan, mira al final me da este error en la de procesainfo.php

Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' on line 2

y este es el code
Código PHP:
<?php
$titulo
="$_POST['titulo']";
$fuente="$_POST['fuente']";
$contenido="$_POST['contenido']";
$tema="$_POST['tema']";
$imageurl="$_POST['imageurl']";
$autor="$_POST['autor']";



mysql_connect('localhost''miuser''mipass');
$sql="INSERT INTO `noticias` ( `id` , `tema` , `autor` , `contenido` , `fecha` , `fuente`, `imageurl`) 
VALUES ( '', '$tema', '$autor', '$contenido', UNIX_TIMESTAMP( ) , '$fuente', '$imageurl')
"
;
mysql_query($sql);
?>
__________________
bytes.