Reply to Re: Globals and the if statement
If you don't have an account, just leave the password field blank.
justa small note on tabbing, the DN ppl here all seem to do this:
if (&foo == &bar)
{
do_this();
}else
{
do_somethinf_else();
}
wheres, i do this:
if (&foo == &bar)
{
do_this();
}
else
{
do_this();
}
theres no right and wrong way to do it, but i find MY way sooo much easier to do, its more logical, thats all...
if (&foo == &bar)
{
do_this();
}else
{
do_somethinf_else();
}
wheres, i do this:
if (&foo == &bar)
{
do_this();
}
else
{
do_this();
}
theres no right and wrong way to do it, but i find MY way sooo much easier to do, its more logical, thats all...