yes,
basically i had what you had above, but after the if statement i had a few other things to do
for example
Code:
if (laa = deedaa)
dothis
do that
and this
else
jump
eat_the_apple
so above, if laa does equal deedaa then it will process: dothis, do that, and this, and eat_the_apple
but if laa equals something else then php will process: do that, and this, jump, and eat_the_apple
but will not process dothis
including the {} like so:
Code:
if (laa = deedaa) {
dothis
do that
and this
}
else {
jump
eat_the_apple
}
then else will process everything inside its brackets and the if will process everything inside its brackets
this was my problem a few days ago i kept forgetting the {} and thus messing my coded up
--antken
_______________________
and dont for get the ;