I tried
Code: Select all
fopen (“image1.php?aa=23&bb=125874”, “r”)
Moderators: egami, macek, gesf
Code: Select all
fopen (“image1.php?aa=23&bb=125874”, “r”)
Code: Select all
isset($_GET['bb']); //-- PHP 4.1.0 and higher
isset($_HTTP_GET_VARS['bb']); //-- before that
miguelna wrote:I have an image generated by PHP (image1.php?aa=23&bb=125874). Sometimes this image is not loaded. Can I detect if the image is loaded or not?
I tried, but the first argument is invalid…Code: Select all
fopen (“image1.php?aa=23&bb=125874”, “r”)