<?php
// conectar MBD
$con = mysql_connect("localhost","*****","******"
;
// seleccion BD
mysql_select_db("videoteca",$con);
$imagen = addslashes(fread(fopen($imagen, "r"
, filesize($imagen)));
// construir SQL
$sql = "INSERT INTO peliculas (nombre, tipo, cod_peli, sinopsis, imagen)".
"VALUES ('$nombre', '$tipo', '$cod_peli', '$sinopsis', '$imagen')";
// Ejecutar SQL
$cursor=mysql_query($sql,$con);
// Procesar resultado
$insert = mysql_affected_rows($con);
if ($insert == -1)
echo "Ud. debe tener un error en su sql";
if ($insert > 0)
echo "La Pelicula fue insertada correctamente";
else
echo "El registró no fue insertado";
// cierra conexion
mysql_close($con);
?>
wich version of MySQL does the wamp install?
could My problem be that i'm using php 4 code for MySQL 5?
thanks
Flavio