[PHP-DB] INSERT img+ID

2009-01-24 Thread Emiliano Boragina
Hi I have this PHP: "; $contenido .= "Nombre y Apellido: ".$_POST["nombre"].""; $contenido .= "Localidad: ".$_POST["localidad"].""; $contenido .= "Mail de tus papas: ".$_POST["mail"].""; $contenido .= "Nombre de la creación: ".$_POST["nombCre

Re: [PHP-DB] WAMP server Problem and Correct way to install PHP and MySQL???

2009-01-24 Thread Stephen Wilding
Hello there, yeah I'm new to this list and I'm no professional, but I'm sure something can be done to help you. And welcome to the world of PHP and MySQL... bring paracetamol :) Okay when you say you've installed WAMP, you are installing Windows, Apache, MySQL and PHP on your web server (be it lo

RE: [PHP-DB] INSERT img+ID

2009-01-24 Thread Chris Verges
Hi Emiliano, You may want to look at escaping your $_POST, $_REQUEST, and $_GET variables before using them in their raw form. Otherwise, you may be susceptible to SQL injection attacks. http://us2.php.net/mysql_escape_string This may also affect the upload of your binary data using SQL, sinc