okay, I have set bye number to say 4... now i want to set bye_exists to 1... this code does not do it... does anyone know why??
if ($bye_number < 0) { $bye_exists == 1; } else { $bye_exists == 0; }
if ($bye_number < 0) { $bye_exists = 1; } else { $bye_exists = 0; }