ILYAS415 Posted August 18, 2007 Share Posted August 18, 2007 Okay im having trouble with something in my scripts. I have a script that controls the prices on an ingame stock market. Ive found the problem but dont no how to fix it. Heres the part of the code where the error is... $stockmarket= mysql_query("SELECT * FROM `stockmarket`"); while ($var= mysql_fetch_object($stockmarket)){ $forms= intval(rand(2, 5)); $formul= intval(rand(5, 10)); $price=intval($var->current_price); if ($var->activity <= $var->pre_activiy){ $form=$price-$forms; }elseif ($var->activity > $var->pre_activity){ $form=$price+$forms; } echo "<BR>£$price<br> random number to take away/add: $forms<br> new price: ".$form."<br>"; } You can see an example of this script running at: http://www.ragingmortals.com/tester.php As u can see, on the page the 'new price' is not being outputted. This only means that the variable is wrong but i cant see any mistake :S Quote Link to comment https://forums.phpfreaks.com/topic/65594-solved-php-maths-not-working-s/ Share on other sites More sharing options...
sasa Posted August 18, 2007 Share Posted August 18, 2007 if ($var->activity <= $var->pre_activity){ Quote Link to comment https://forums.phpfreaks.com/topic/65594-solved-php-maths-not-working-s/#findComment-327530 Share on other sites More sharing options...
ILYAS415 Posted August 18, 2007 Author Share Posted August 18, 2007 hehe thnx lol Quote Link to comment https://forums.phpfreaks.com/topic/65594-solved-php-maths-not-working-s/#findComment-327560 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.