Steve Frampton - 2001-11-23

Logged In: YES
user_id=36586

Also, please consider using table aliases:

SELECT location.name, salary.amount, blah blah
FROM location, salary, ...
WHERE location.......

becomes

SELECT a.name, b.amount, blah blah
FROM location a, salary b, ...
WHERE a........

That makes it MUCH easier to modify the code to add things
like the $table_prefix idea.

Thanks...