Jump to content

[SOLVED] Php maths - not working :S


ILYAS415

Recommended Posts

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

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.