Posted by Jason Barnett on 05/04/05 16:23
Anasta wrote:
> Can anyone help with a statement, ive tried but it never works.
> I need to show a value if it is set to a specific value ie:
>
> At the moment If a user is logs in a record is updated from 'away' to
> 'online'---so i want an echo statement to show a value from another table if
> they are set to online or else they show another value.
> (2 seperate tables).
if ($online) {
// connect to database 1
echo $stmt;
} else {
// connect to database 2
echo $stmt;
}
[Back to original message]
|