Justtechjobs.com Find a programming school near you






Online Campus Both


php3-list | 2000051

[PHP3] Making my WebPages search engine friendly From: Richard Kurth (rkurth <email protected>)
Date: 05/15/00

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>