well its not that you can't do it that way... but with each elseif that you have and you want to define it before then $zodiacsign=""; then you'd have to use the same eval station after each esleif... kinda like this:
PHP Code:
} else if (($bday[2]>=20 and $bday[1]==4) or ($bday[2]<=20 and $bday[1]==5)) {
$zodiacsign="Taurus";
eval("
} else if (($bday[2]>=21 and $bday[1]==5) or ($bday[2]<=20 and $bday[1]==6)) {
$zodiacsign="Gemini";
eval("
etc... so after defining each zodiacsign you'd have to eval the template

but i just avoided that by waiting after the $zodiacsign=""; so that i could define that one as not eval the template and then everything other then "" would eval the template... hope i make any sense :P
g-force2k2