CaptainLepidus

function store()

Mar 6th, 2012
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. //INSIDE GAME.PHP:
  2. function store($act,$arg1,$arg2)
  3. {
  4. $date=date('m/d/y h:i:s');
  5. $uid=get_stat('id');
  6. $sql="INSERT INTO log(user,date,action,arg1,arg2) VALUES($uid,'$date','$act','$arg1','$arg2')";
  7. $result=mysql_query($sql);
  8. }
  9. //INSIDE SEND_GOLD.PHP
  10. include("game.php");
  11. //some stuff
  12. store('transfer gold through gift',$user,$gold);
Advertisement
Add Comment
Please, Sign In to add comment