Jump to content

Point adding


Imtehbegginer

Recommended Posts

<?php
  $re = mysql_query("SELECT * FROM characters");
  $row = mysql_fetch_array($re);
  $str = $row['str'];
  $con = $row['con'];
  $int = $row['_int'];
  $dex = $row['dex'];
  $lvl = $row['level'];
  ?>

 

All of them are echod into a space for the user to see there current character points.

There is a row: statp, that's how many points they have.

 

How can I make sure that the input of str, con, dex, and int dont go over the amount in the statp row?

Link to comment
Share on other sites

The answer to your question really depends on twhat it is you want to do if the sum of these values go over. Anyway, a simple example might be....

 

<?php
if (($row['str'] + $row['con'] + $row['_int'] + $row['dex']) < $row['statp']) {
  // sum less then statp
}
?>

 

You would be best however to do this with SQL but you'd need to explan more about exactly what it is you want to do.

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.