Justin M
07-13-2008, 05:56 PM
Ok, so I've got this small program:
<?php
for($level = 100; $turns <= 100;)
{
$points += ($level * 1.15);
echo $points . "<br />";
$turns++;
}
?>
Only I'm having a mindblock as how to make it exponentially increase instead of linear. Thanks for the help. :)
<?php
for($level = 100; $turns <= 100;)
{
$points += ($level * 1.15);
echo $points . "<br />";
$turns++;
}
?>
Only I'm having a mindblock as how to make it exponentially increase instead of linear. Thanks for the help. :)
