Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
all it's saying is that if you name a file "Daniel+Robinson.php" what the browser sees when you place that into the navigation bar is "Daniel Robinson.php", which is pretty sloppy, but technically a correct filename. You could link to a file called Daniel+Robinson.php, but you would need to urlencode it first. A shortcut for doing this in php is with the urlencode function:
PHP Code:
<a href="<?=urlencode("Daniel+Robinson.php")?>">Daniel Robinson</a>
which would output HTML that looks like this:
HTML Code:
<a href="Daniel%2BRobinson.php">Daniel Robinson</a>
Dont expect anyone to remember how to type Daniel%2BRobinson.php, however. Dashes and underscores do not need to be urlencoded, and thus are easy to type and remember.
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
Last edited by wayfarer07; 09-04-2008 at 09:35 AM..
|