Lo que hace es resivir una imagen de flash, asta aca todo bien, pero el problema es el siguiente no consigo guardar la img en una carpeta.
Les dejo el codigo haver si me pueden ayudar.
include("./coneccion.php");
$id = ''.$_GET["id"].'';
switch($id){
case "1":
$id_item = ''.$_GET["id_item"].'';
// Guarda la imagen en servidor
if ( isset ( $GLOBALS["HTTP_RAW_POST_DATA"] )) {
$im = $GLOBALS["HTTP_RAW_POST_DATA"];
$fp = fopen($_GET['vFoto'], 'wb');
fwrite($fp, $im);
fclose($fp);
echo $_GET['vFoto']." se ha guardado en el servidor";
}
else echo 'No hay datos binarios';
*/
/*
// Da la opción de descargar la imagen
if (isset($GLOBALS["HTTP_RAW_POST_DATA"]))
{
// get bytearray
$jpg = $GLOBALS["HTTP_RAW_POST_DATA"];
$img = $_GET["vFoto"];
// add headers for download dialog-box
header('Content-Type: image/jpeg');
header("Content-Disposition: attachment; filename=".$img);
echo $jpg;
}
else echo 'No hay datos binarios';
*/
break;
}
?>
Como hago para guardar la imagen en el servidor?.... no logro entender... :( Desde ya muchas gracias.