Re: Free Loan Shark System PROBLEM?
Alternatively, you could just tell us on here so people can find a solution. If it's to do with entering a minus number in the borrow box then that's easy to fix.
Something along the lines of
{
if($_POST['borrowed'] < 1)
{
die("Try again.");
}
else
{
global $ir,$c,$userid,$h;
$maxloan=$ir['level']*2100;
$loan=$ir['loan'];
if ($loan == $maxloan)
{
die("You have already taken out the max loan possible you must pay it back before you can loan more
> [url='loanshark.php?action=repay']Repay[/url]");
}
However I'm new to coding so I could be wrong.