Forum Moderators: phranque
Welcome to WebmasterWorld!
It's one URL. It's not a very pretty one, though.
I'd suggest you look into using mod_rewrite to pass static URL requests to your script, and use URLs like:
/variable-value
Then a simple example mod_rewrite like
RewriteRule ^([^-]+)-([^/]+)/?$ /mypage.php?variable=$1&value=$2 [L]
can be used to transparently call your script when a /variable-value URL is requested.
Static URLs are generally ranked better in search engine results than URLs which have long query strings.
Jim