hello i me again with a New tour on how to make point script points is very simple after this tour you guys be master of making point system.
let get started we start with a connection like the last tour i made
<?php
/we need simple connect code with host, name and
password mysql_connect("host","user","password" or die(mysql_error());
//now we need select database code mysql_select_db("database name" or die(mysql_error());
//now here come the update part we start with $result //now we put UPDATE Table name
//now we need to set the cloum name//now after you do this points=points put + 1 //last we put WHERE to let the script know where to updated the points
$result = mysql_query("UPDATE table SET point=points + 1 WHERE username='".$_SESSION['username']."';
//now you have point here the full script
;?>
<?php
mysql_connect("","","" or die(mysql_error());
mysql_select_db("" or die(mysql_error());
$result= mysql_query("UPDATED users SET points=points +3 WHERE username='".$_SESSION['username']."';
?>
there you go oh you can echo out the row of points if you like
ok next week i be show you guys how to make bio using mysql_update
if you have any question post comment on my profile. bye hope you like the tour
If you put all that in a dynamic function, you can do what I do. Call the function whenever I need points added or taken away.
Example, add_points(10);