jk14 Posted May 30, 2006 Share Posted May 30, 2006 hi a new to php, so here is my problem;<?=$col?>">HKD $<?=$recSubscription['subscription_amount']?><br>[!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]USD $<?php echo ($recSubscription['subscription_amount'] == 149) ? '20.00' : '27.00'; ?>[!--colorc--][/span][!--/colorc--]I would like to add a third number for the USD currency but everytime i enter a number the page wont load.How can i add '34' together with '20.00' : '27.00'; cheers guys Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/ Share on other sites More sharing options...
poirot Posted May 30, 2006 Share Posted May 30, 2006 This syntax means:If $recSubscription['subscription_amount'] is 149 it echos USD $20.00Else, USD $27.00This is a bit weird. Why would you want to add a third number? Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/#findComment-40305 Share on other sites More sharing options...
jk14 Posted May 30, 2006 Author Share Posted May 30, 2006 [!--quoteo(post=378440:date=May 30 2006, 12:24 PM:name=poirot)--][div class=\'quotetop\']QUOTE(poirot @ May 30 2006, 12:24 PM) [snapback]378440[/snapback][/div][div class=\'quotemain\'][!--quotec--]This syntax means:If $recSubscription['subscription_amount'] is 149 it echos USD $20.00Else, USD $27.00This is a bit weird. Why would you want to add a third number?[/quote]there is two prices, but i would like to add a third.how can i? Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/#findComment-40313 Share on other sites More sharing options...
GingerRobot Posted May 30, 2006 Share Posted May 30, 2006 I dont think wha you are trying to do quite makes sense at the moment...As it stands, if the subscription_amount is equal to 149, it displays $20 and if not, it displays $27You would need some other condition to have three possible outputs:if ($recSubscription['subscription_amount'] == 149){echo "<br>USD $20.00";}elseif(some other condition){echo "<br>USD $27.00";}else{echo "<br>USD $34.00";} Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/#findComment-40359 Share on other sites More sharing options...
legohead6 Posted May 31, 2006 Share Posted May 31, 2006 if i get what you want i would recommend using switch command Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/#findComment-40407 Share on other sites More sharing options...
jk14 Posted May 31, 2006 Author Share Posted May 31, 2006 If the ($recSubscription['subscription_amount'] has 3 options of $149, $199, & $249 in USD currency, how can i make it to show in EURO just below? so it can echo eg. EURO100, EURO 150, EURO, 175 etc.. Quote Link to comment https://forums.phpfreaks.com/topic/10781-help-with-this-coding/#findComment-40500 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.