ID: 13133 Updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Open +Status: Bogus Bug Type: ODBC related Operating System: W98 ME PHP Version: 4.0.4pl1 New Comment:
Thank you for taking the time to report a problem with PHP. Unfortunately your version of PHP is too old -- the problem might already be fixed. Please download a new PHP version from http://www.php.net/downloads.php If you are able to reproduce the bug with one of the latest versions of PHP, please change the PHP version on this bug report to the version you tested and change the status back to "Open". Again, thank you for your continued support of PHP. Previous Comments: ------------------------------------------------------------------------ [2001-09-04 11:08:25] [EMAIL PROTECTED] LongBinary data from ACCESS. I receive 2 bytes for every byte of data, one is &h00. <?php $SceltaOggetto = "GIRASOLE"; $db=odbc_connect("CISTERNA","",""); $Where = "NCTN = '".$SceltaOggetto."'"; // cerco immagine ed eventualmente la scrivo $SQL="SELECT IMMAGINE,DIMENSIONE FROM IMMAGINI WHERE ".$Where; $resImg=odbc_exec($db,$SQL); if (odbc_fetch_row ($resImg) == TRUE): odbc_binmode ($resImg,ODBC_BINMODE_PASSTHRU); $Dimensione = odbc_result($resImg,2); // ll immagine echo "<BR>Dimensione: ".$Dimensione."<BR>"; $NomeFile = $SceltaOggetto.".jpg"; unlink($NomeFile); // scancello if (file_exists($NomeFile) == FALSE): odbc_longreadlen ($resImg,$Dimensione); $graf = odbc_result($resImg,1); echo "Lungore ".strlen($graf); $fp = fopen ($NomeFile, "wb"); fwrite($fp,$graf,$Dimensione); echo "<BR>ECHO<BR><BR>".$graf; fclose($fp); endif; endif; ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=13133&edit=1