Hi everybody!
Please, a little help with some basic stuff
I have a conditional but it is not working, it always shows the same result
<?php echo $row_result['sign']; ?>
$thesign = $row_result;
switch ($thesign)
{
case $thesign = "Aries" :
echo " Hello";
break;
case $thesign ="Tauro" :
echo " Goodbye";
break;
}
It always shows Hello and I don't know where I am wrong
Thanks for any help