On Wed, 2004-01-14 at 15:11, Ryan A wrote:

[snip]

> and heres the output:
> 
> Ok,we are in show.php
> No $_GET[id]
> No $_GET[sid]
> Array ( )
> 
> 
> Ideas?

Seems like you are getting closer. You are going to the right place, but
none of your variables are making it. I am not sure what your rule looks
like now, but at one point it was:

RewriteRule ^show/(.*)/(.*)/(.*) /show.php?category=poetry&sid=$2&id=$3

I would recommend trying just one variable first. See if you can get
that to work, then add the others one at a time. Maybe something like
this to start with:

RewriteRule ^show/(.*) /show.php?foo=$1

And see what $_GET looks like.

- Brad

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to