--- "Matthew K. Gold" <[EMAIL PROTECTED]> wrote:
> SELECT FooLName, FooPhone, FooEmail
> FROM foo, foocontact
> WHERE foocontact.FooID=$FooID and foo.FooID=$FooID;

You might try this instead:

select foolname, foophone, fooemail
from   foo, foocontact
where  foo.fooid='$fooid' and foo.fooid=foocontact.fooid

Also, are you certain that $fooid is set? You might have to
use $_GET["fooid"] if register_globals is not on.

Chris

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

Reply via email to