We also push the refresh button more than once, but the picture just change not much.
please see our script:
$koneksi=odbc_connect("passgo","passgo","passgo");
$eksekusi=odbc_exec($koneksi,"select * from photo where Nip='$nipnya' ");
$nip=odbc_result($eksekusi,1);
$pict=odbc_result($eksekusi,2);
odbc_free_result($eksekusi);
print $pict;
odbc_close_all();
this script will result bad picture.
now if we add one statement before "print $pict" like:
print $nip;
the picture will disapear and we will see the ascii code from the pict [BLOB].
Can you give us your analyse and solution?