Jump to content
MakeWebGames

Monkey644

Members
  • Posts

    112
  • Joined

  • Last visited

Personal Information

  • Location
    Derby, England
  • Interests
    Slot Car Racing, Model Railways, Coding
  • Occupation
    Manager - Service Chat

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Monkey644's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Didn't see them within the program I use to edit the code. Removed these. All fine now, Thanks!!!
  2. Hey all, I keep getting: Parse error: syntax error, unexpected '{' in /home/a4767764/public_html/header.php on line 273 This is what is on line 273 plus 5 lines of code either side: { **return (is_numeric($var)&&(intval($var)==floatval($var))); } $array = array_merge($_GET, $_POST); while ($post_cap = current($array)) { ***if ($post_cap < 0) { print "Illegal Operation"; die(""); ****} ***if (is_numeric($post_cap) && !is_whole_number($post_cap)) { print "Illegal Operation";   Any and all help would be appreciated. If its any help, I am converting my header into a split left and right sided design.
  3. My bad guys! 000webhost is who I use.
  4. Hey all, I get the following once I have installed the files...   PHP Error Message Fatal error: Call to undefined function request_csrf_code() in /home/a4767764/public_html/myshop.php on line 70 Free Web Hosting
  5. You're awesome! No more error. Thank you very much for everyones help and input.
  6. I have found the following within the property mod globals, which is an included file.   function get_house_name($id) { global $db; $get = $db->query("SELECT `name` FROM `property_mod` WHERE `id`={$id}"); return $db->fetch_single($get); } function get_house_name_by_row($row) { global $db; $get = $db->query("SELECT `name` FROM `property_mod` WHERE `id` IN (SELECT `houseid` FROM `properties_mod_user` WHERE `id`={$row})"); return $db->fetch_single($get); }   This is out of the global func file. } function get_rank($stat, $mykey) { global $db; global $ir,$userid,$c; $q=$db->query("SELECT count(*) FROM userstats us LEFT JOIN users u ON us.userid=u.userid WHERE us.$mykey > $stat AND us.userid != $userid AND u.user_level != 0") ; return $db->fetch_single($q)+1; } function item_add($user, $itemid, $qty, $notid=0) { global $db; if($notid > 0) {
  7. The function is: function fetch_single($result=0) { if(!$result) { $result=$this->result; } return mysql_result($result, 0, 0); }   There is nothing containing fetch_single in the index.php and I have found this is happening on loggedin.php If it's any help, this has only appeared after I installed Sniko's Advanced Property Modification.
  8. Will do when I get home from work. Thanks for looking into this for me.
  9. The snippet of code that is causing this error is: if(!$result) { $result=$this->result; } return mysql_result($result, 0, 0); }   Any advice?
  10. Hey everyone, I am getting the following error message: Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 17 in /home/a4767764/public_html/class/class_db_mysql.php on line 94 Only on my index.php page, all other pages are fine. Any advice on this? Cheers
  11. You, my good sir, are awesome :)
  12. Hey all! The ZIP file is not opening :S Downloads, but does not open on my system.
  13. I would be very interested in seeing the in-game and register. May look at using this.
  14. Can anybody help?
  15. Hiya everyone, Quick question, Does anyone know how i can edit my game so i can gain exp whilst training at the gym and possibly through crimes? Cheers :)
×
×
  • Create New...