hi
does anyone know how to hide a combo box and show?so if i had the number 100 or 200 etc.. it will show a combo box but if i had the number 87 or 99 etc... it wont show this is what i got so far please help thanks...
<?php
$var = 100;
if ($var = (200)){
echo "Has 200 referrals";
}
if ($var = (100)){
echo "Has 100 referraks";
}
?>