Jump to content

switch case with <> number


fesan

Recommended Posts

Hi...

 

Having trouble to get this to work

 

$chose_background = mysql_num_rows($result);

switch($chose_background){
    	case " >10 ":
	echo "post some code";

break;
case " >5 ":
	echo "post some other code";

break;					
        case " >1 ":
	echo "post some totally different code";	

break;
default:
	echo "post the defoult code";		
}

 

Cant seem to get the value to react at the right case....

When it is like this the value that should go under case defoult ends up in case >10, and the rest ends up in defoult....

Link to comment
https://forums.phpfreaks.com/topic/146896-switch-case-with-number/
Share on other sites

but yuo can do

<?php
$chose_background = 4;

switch($chose_background){
    	case $chose_background >10 :
	echo "post some code";

break;
case $chose_background >5 :
	echo "post some other code";

break;					
        case $chose_background >1 :
	echo "post some totally different code";	

break;
default:
	echo "post the defoult code";		
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.