Hi, I've tried to upload a picture using the function
imagecreatefrom gif, with a script as simple as possible to avoid miss
spellings and stuff like that. I've ran the following line of code to
see if my host had the right gd lib, and it was positive:
<?PHP print_r(gd_info ()); ?>
so if it's not the server, what am i missing?
Here is my tiny script as it looks now:
<?php
function billede()
{
$bill = imageCreateFrom GIF ("hindenburg.gi f");
return $bill;
}
billede();
?>
Thanks for your help :)
imagecreatefrom gif, with a script as simple as possible to avoid miss
spellings and stuff like that. I've ran the following line of code to
see if my host had the right gd lib, and it was positive:
<?PHP print_r(gd_info ()); ?>
so if it's not the server, what am i missing?
Here is my tiny script as it looks now:
<?php
function billede()
{
$bill = imageCreateFrom GIF ("hindenburg.gi f");
return $bill;
}
billede();
?>
Thanks for your help :)
Comment