[thelist] Re: reports of no images on Mac...

John Corry webshot at neoncowboy.com
Fri Jun 8 22:21:42 CDT 2001


> http://www.dianalehr.com/detail.php?title=Pele%27s+Pillow
>
>
> the above is bad news

Actually, the above is a standard, URL encoded URL with querystring.
PHP even has a function to create an encoded URL + qs, <tip type="beginner
php">
Wana make a link querystring legible to dumb browsers who can't figure out
what a space or apostrophe is? Run your qs through the built in PHP function
urlencode().
<?php
$query_string = "foo bar";
$query_string = urlencode($query_string);
?>
$query_string now equals foo%20bar
</tip>

jc





More information about the thelist mailing list