Pass different variables and use them both in your query.

http://www.xyz.com/foo.php?FooID=1 
http://www.xyz.com/foo.php?Foo2ID=2 

$query = "SELECT * FROM table WHERE id=$FooID OR id=$Foo2ID";

HTH

Martin Clifford
Homepage: http://www.completesource.net
Developer's Forums: http://www.completesource.net/forums/


>>> "Matthew K. Gold" <[EMAIL PROTECTED]> 07/18/02 04:20PM >>>
can I use an OR operator in a variable that is passed through a url?

ex.  how can I combine the following two lines so that I end up with records
that have an id of either 1 or 2?

http://www.xyz.com/foo.php?FooID=1 

http://www.xyz.com/foo.php?FooID=2 

(I tried the following, but it didn't work:
http://www.xyz.com/foo.php?FooID=1||FooID=2  )

thanks in advance for your help.

Matt


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



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

Reply via email to