php3-list | 2000051
Date: 05/15/00
- Next message: Richard Lynch: "Re: [PHP3] URL encoding"
- Previous message: Richard Lynch: "[PHP3] Re: Re: [PHP4BETA] eval - isnīt as slow as rumors about it"
- Next in thread: TomHenry: "Re: [PHP3] Making my WebPages search engine friendly"
- Reply: TomHenry: "Re: [PHP3] Making my WebPages search engine friendly"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I can't figure this out I have my links set up like this to pull data from
my database
<A HREF='category.php3/$vcatid/$title'TARGET='_top'>".$r[title]."</A>
Using this method to extract the info to be used on the category page
$res = explode("category.php3/", $REQUEST_URI);
$vars = explode("/", $res[1]);
$catid = $vars[0]; //now var1 holds value1
$ptitle= $vars[1]; //and var2 holds value2
But when I go to select another link It has doubled
<A
HREF='category.php3/20/&Education'category.php3/20/Education/category.php3/3
/Auto
Why is this happening
-- PHP 3 Mailing List <http://www.php.net/> To unsubscribe, send an empty message to php3-unsubscribe <email protected> To subscribe to the digest, e-mail: php3-digest-subscribe <email protected> To search the mailing list archive, go to: http://www.php.net/mailsearch.php3 To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Richard Lynch: "Re: [PHP3] URL encoding"
- Previous message: Richard Lynch: "[PHP3] Re: Re: [PHP4BETA] eval - isnīt as slow as rumors about it"
- Next in thread: TomHenry: "Re: [PHP3] Making my WebPages search engine friendly"
- Reply: TomHenry: "Re: [PHP3] Making my WebPages search engine friendly"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

