Reputation: 4979
i notice some webpage display images using php scripts. how do i do that and wats the benefit? forexample: http://static.ak.fbcdn.net/rsrc.php/yp/r/kk8dc2UJYJ4.png
Upvotes: 1
Views: 906
Reputation: 318468
Why showing images through PHP might be useful:
How you do that:
Send the appropriate header for whatver image type (e.g. header('image/png');
) you want to show and then output the raw image data, e.g. using readfile()
Upvotes: 4