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
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";		
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.