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);
?>