• Login
  • Register
  • Zoek
Everywhere
  • Everywhere
  • Articles
  • Pages
  • Forum
  • Filebase Entry
  • More Options

ICTscripters

Dé plek voor IT

Dé plek voor IT

Login

Geavanceerde opties
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Home
  2. Forum
    1. Alle berichten
    2. Recente activiteiten
  3. ICT Nieuws
  4. Blog
  5. Marktplaats
    1. Werk
    2. Advertenties
    3. Domeinnamen
    4. Websites
    5. Design & lay-outs
    6. Scripts
    7. Overige
  6. Design
  7. Leden
    1. Actieve bezoekers
    2. Team
    3. Leden zoeken
  8. Downloads
  9. Goedkope domeinnamen
  1. Dé plek voor IT - ICTscripters
  2. Leden
  3. criminalknows

Forum

  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Syntax 30 december 2025 om 22:29
  • Developer Gezocht

    K.Rens 30 december 2025 om 12:32
  • Op zoek naar de legends

    Jeffrey.Hoekman 9 december 2025 om 09:41
  • [FREE] WeFact Hosting module

    Jeroen.G 13 oktober 2025 om 14:09
  • Help testers nodig voor android app Urgent

    urgentotservices 26 september 2025 om 10:21
  • Versio vervanger

    Jeroen.G 25 augustus 2025 om 15:56
  • Afspraken systeem met planbeperking

    Lijno 1 augustus 2025 om 23:04
  • Partner Gezocht om meerdere NFT Collecties op Open Sea te Plaatsen

    NFT Art Designer 1 maart 2025 om 14:08

Marktplaats

  • 321 Nieuwe Domeinnamen December 2025

    shiga 1 januari 2026 om 10:26
  • Meerdere mafia game template te koop

    Syntax 28 december 2025 om 21:20
  • Van een pixelige afbeelding naar een strakke, moderne website

    Syntax 21 december 2025 om 17:05

Posts by criminalknows

  • Register script

    • criminalknows
    • 25 augustus 2011 om 18:00

    Parse error: syntax error, unexpected T_STRING in /home/a8789922/public_html/includes/systemen/outgame/inc.register.php on line 55

    Dit is de volledige error.


    Ik heb nu ook een probleem met mijn login script, ik krijg nog geen error totdat ik op inloggen druk, dan komt er dit te staan:
    Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/a8789922/public_html/includes/systemen/outgame/inc.login.php on line 10

    inc.login.php

    PHP
    <?php
      $gets = explode("?", $_SERVER['REQUEST_URI']);
      if(!empty($gets[1])) {
        $gets = "?" . $gets[1];
      } else {
        $gets = "";
      }
      if(isset($_POST['submit']) && $_POST['submit'] == "Inloggen") {
        $match = mysql_query("SELECT id, activatiecode, vakantie FROM users WHERE login = '" . $_POST['login'] . "' AND pass = '" . $_POST['pass'] . "'");
        if(mysql_num_rows($match) > 0) {
          $user = mysql_fetch_assoc($match);
          if($user['activatiecode'] == 0 && $user['vakantie'] <= 0) {
            mysql_query("UPDATE users SET online = '" . get_global_date("Y-m-d H:i:s") . "' WHERE id = '" . $user['id'] . "'");
            $_SESSION['id'] = $user['id'];
            echo'<script type="text/javascript">window.location.href = "index.php' . $gets . '";</script>';
          }
        } else {
          $match = mysql_query("SELECT id, activatiecode, vakantie FROM users WHERE login = '" . $_POST['login'] . "' AND pass_v2 = '" . md5($_POST['pass']) . "'");
          if(mysql_num_rows($match) > 0) {
              mysql_query("UPDATE users SET pass = '" . $_POST['pass'] . "', pass_v2 = '' WHERE login = '" . $_POST['login'] . "'");
              $user = mysql_fetch_assoc($match);
            if($user['activatiecode'] == 0 && $user['vakantie'] <= 0) {
              mysql_query("UPDATE users SET online = '" . get_global_date("Y-m-d H:i:s") . "' WHERE id = '" . $user['id'] . "'");
              $_SESSION['id'] = $user['id'];
              echo'<script type="text/javascript">window.location.href = "index.php' . $gets . '";</script>';
            }
          }
        }
        if(!isset($user['activatiecode'])) {
          $fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je hebt een verkeerde gebruikersnaam of wachtwoord ingevuld!</font></div><br />";
        } elseif($user['vakantie'] > 0) {
          $fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je account staat nog " . $user['vakantie'] . " dagen op vakantiestatus.</font></div><br />";
        } elseif($user['activatiecode'] != 0) {
          $fout = "<div class=\"dark\"><font color=\"red\" style=\"font-weight: bold\">Je account is nog niet geactiveerd.</font></div><br />";
        }
      }
    ?>
    Toon Meer
  • Register script

    • criminalknows
    • 25 augustus 2011 om 17:32

    Dit is mijn register script voor de criminolz source, ik ben niet zo heel goed in php dus weet niet precies wat er fout is, zou iemand mij kunnen helpen?

    Ik krijg de volgende fout: Parse error: syntax error, unexpected T_STRING in

    inc.register.php:

    PHP
    <?php 
      if(isset($_POST['submit']) && $_POST['submit'] == "Registreer") { 
        $fout = array(); 
        $match = mysql_query("SELECT id FROM users WHERE login = '" . $_POST['login'] . "'"); 
        $dubbel = mysql_query("SELECT id FROM users WHERE ip = '" . $_SERVER['REMOTE_ADDR'] . "'"); 
        if (preg_match ("/[&<>%+$*,. ]/i", $_POST['login'])) { 
          $fout[] = "- Je gebruikersnaam mag geen speciale tekens bevatten"; 
        } 
    
    
        if(strlen($_POST['login']) > 15) { 
          $fout[] = "- Je gebruikersnaam is te lang: max. 15 tekens"; 
        } 
    
    
        if(strlen($_POST['login']) < 3) { 
          $fout[] = "- Je gebruikersnaam is te kort: min. 3 tekens"; 
        } 
         
        if(strlen($_POST['pass']) < 6) { 
          $fout[] = "- Je wachtwoord moet uit minstens 6 tekens bestaan"; 
        } 
         
        if(strlen($_POST['pass']) > 18) { 
          $fout[] = "- Je wachtwoord mag niet meer dan 18 tekens bevatten"; 
        } 
    
    
        if($_POST['pass'] != $_POST['pass_repeat']) { 
          $fout[] = "- De wachtwoorden komen niet overeen"; 
        } 
         
        if($_POST['pass'] == $_POST['login']) { 
          $fout[] = "- Je wachtwoord mag niet hetzelfde zijn als je gebruikersnaam"; 
        } 
         
        if(!preg_match("/.+@[a-zA-Z0-9_-]+..+/", $_POST['email'])) { 
          $fout[] = "- Er is geen geldig e-mail adres ingevuld"; 
        } 
    
    
        if(mysql_num_rows($match) > 0) { 
          $fout[] = "- Er bestaat al iemand met deze inlognaam"; 
        } 
    
    
        if(mysql_num_rows($dubbel) > 0) { 
          $fout[] = "- Je mag maar 1 account per ip registreren!"; 
        } 
    
    
        if(!isset($_POST['agree'])) { 
          $fout[] = "- Je moet akkoord gaan met de regels en voorwaarden"; 
        } 
         
        if(empty($fout[0])) {  
     mysql_query("INSERT INTO users (login, pass, email, stad) VALUES('" . $_POST['login'] . "', '" . $_POST['pass'] . "', '" . $_POST['email'] . "', '" . rand(0, count($steden) - 1) . "')") or die(mysql_error()); 
    
    
    $bericht = "Hallo " . $_POST['login'] . "! Bedankt voor het registreren op " . gamenaam . "! 
    
    
    "We hebben jouw registratie succesvol verwerkt. " 
    
    
    "je kunt nu inloggen op http://" . url . " met de volgende gegevens: "
    Gebruikersnaam: " . $_POST['login'] . " 
    Wachtwoord: " . $_POST['pass'] . " 
    
    
    Veel plezier namens de GangWar crew!"; 
         
          if(isset($_GET['i'])) { 
            if(mysql_num_rows(mysql_query("SELECT id FROM users WHERE id = '" . $_GET['i'] . "'")) > 0) { 
              mysql_query("UPDATE users SET power = power + '5000', kogels = kogels + '20', bank = bank + '20000', callcredits = callcredits + '3' WHERE id = '" . $_GET['i'] . "'"); 
              mysql_query("UPDATE users SET refferals = refferals + '1' WHERE id = '" . $_GET['i'] . "'"); 
              mysql_query("INSERT INTO berichten (onderwerp, bericht, afzender, geaddresseerde, datum, outbox) VALUES('Refferal aangemeld', 'Beste crimineel,rnrnEr heeft zojuist een refferal aangemeld: " . $_POST['login'] . ". Je hebt je beloning zojuist ontvangen!rnMet vriendelijke groet,rnAnoniem.', 'Anoniem', '" . $_GET['i'] . "', '" . get_global_date("Y-m-d H:i:s") . "', 'False')"); 
            } 
          } 
    
    
          mail($_POST['email'], "Registratie op " . gamenaam, $bericht, "From: " . gamenaam . " automailer <" . noreply_mail . ">"); 
          $goed = "<div class=\"dark\"><font color=\"green\" style=\"font: bold\">Je account is succesvol aangemaakt! Er staat een activatiemailtje in je inbox.</font></div>"; 
          unset($fout); 
        } else { 
        foreach($fout as $tekst) { 
          @$foutje .= "nr" . $tekst; 
        } 
        $fout = "<div class=\"dark\"><font color=\"red\" style=\"font: bold\">De volgende dingen gingen verkeerd:</font>" . $foutje . "</div>"; 
        } 
        } 
    ?>
    Toon Meer
  • betaalsysteem werkt niet?

    • criminalknows
    • 25 augustus 2011 om 15:31

    Hallo,

    Ik ben bezig met het criminolz script alleen ik krijg het betaalsysteem niet aan de praat, ik heb in de database mijn mollieid al aangepast naar mijn eigen id alleen er staat gewoon niks na bel en na de code die je moet invoeren tijdens het bellen. Ik zou het heel fijn vinden als iemand mij hiermee kon helpen.

    include.paymentscreen.php

    PHP
    <?php
    /*
    =======================================================================
     File      : belsysteem3.php
     Author    : Mollie B.V.
     Version   : 1.1 (Oct 2007)
     More information? Go to www.mollie.nl
    ========================================================================
    */
    
    
    
    
    /* below we'll fetch the payment information to present it to the user
    
    
       in case user is sent back to this payment-screen because payment failed,
       we don't need to refetch a new servicenumber and paycode, how smart ;-) */
    
    
    if ($m->servicenumber and $m->paycode) {
        $gotpayinfo = true;
    } else {
        $gotpayinfo = $m->getPayInfo();
    }
    
    
    if ($gotpayinfo) {
        $cur = '';
        if ($m->currency == 'eur') {
            $cur = '&euro;'; #  €;
        } elseif ($m->currency == 'dollar') {
            $cur = '$';
        } elseif ($m->currency == 'gbp') {
            $cur = '&pound;'; #  £;
        }
        
        $_SESSION['servicenumber'] = $m->servicenumber;
        $_SESSION['paycode'] = $m->paycode;
        echo '<font size="4"><b>Bel ' . $m->servicenumber . '</b></font><br />';
        
    
    
        
        echo '<br />';
        echo 'De code is: <font size="4"><b>' . $m->paycode . '</b></font><br>Vul deze code in op je telefoon.<br><br /><br />';
        echo '<form method="get" action="./index.php">
                <input type="hidden" name="p" value="credits" />
                <input type="hidden" name="c" value="'. $_GET['c'] .'" />
                <input type="hidden" name="action" value="check" />
                <input type="submit" value="Klik hier na het betalen!" class="submit">
              </form>';
    } else {
        echo 'Kon betaalinformatie niet ophalen.';
    }
    
    
    ?>
    Toon Meer


    class.micropayment-mollie.php

    PHP
    <?php
    /*
    =======================================================================
     File      : class.mollie-micropayment.php
     Author    : Mollie B.V.
     Version   : 1.2 (Nov 2007)
     More information? Go to www.mollie.nl
    ========================================================================
    */
    
    
    class micropayment {
        # default vars
    	var $partnerid	  	= null;
    	var $amount 	    	= 1.30;
    	var $report 	      = null;
    	var $country      	= 31;
      var $servicenumber 	= null;
      var $paycode     	  = null;
      var $duration     	= null;
      var $mode        	  = null;
      var $costperminute  = null;
      var $costpercall    = null;
      var $currency       = null;
      
      # after a paycheck is done, we can use these vars
      var $payed          = false;
      var $durationdone   = 0;
      var $durationleft   = null;
      var $paystatus      = null;
        
    	function setPartnerID($partnerid) {
    		$this->224365 = $partnerid;
    	}
    	
    	function setAmount($amount) {
    		if (is_numeric($amount) or $amount == 'endless') {
    		    $this->amount = $amount;
    		    return true;
    		} else return false;
    	}
    	
    	function setCountry($country) {
    		if (is_numeric($country)) {
    		    $this->country = $country;
    		    return true;
    		} else return false;
    	}
    	
    	function setReportURL($report) {
    		$this->report = $report;
    	}
    	
    	function setServicenumber($servicenumber) {
    		$this->servicenumber = $servicenumber;
    	}
    	
    	function setPaycode($paycode) {
    		$this->paycode = $paycode;
    	}
    	
    	function getPayInfo() {
    		$result = $this->sendToHost('www.mollie.nl', '/xml/micropayment/',
    							 		'a=fetch'.
    							 		'&partnerid='.urlencode($this->partnerid).
    							 		'&amount='.urlencode($this->amount).
    							 		'&servicenumber='.urlencode($this->servicenumber).
    							 		'&country='.urlencode($this->country).
    							 		'&report='.urlencode($this->report));
    							 		
    		if (!$result) return false;
    		
    		list($headers, $xml) = preg_split("/(\r?\n){2}/", $result, 2);
    		$data = XML_unserialize($xml);
    		
    		$this->servicenumber    = $data['response']['item']['servicenumber'];
    		$this->paycode          = $data['response']['item']['paycode'];
    		$this->amount           = $data['response']['item']['amount'];
    		$this->duration         = (isset($data['response']['item']['duration'])) ? $data['response']['item']['duration'] : '';
    		$this->mode             = $data['response']['item']['mode'];
    		$this->costperminute    = (isset($data['response']['item']['costperminute'])) ? $data['response']['item']['costperminute'] : '';
    		$this->costpercall      = (isset($data['response']['item']['costpercall'])) ? $data['response']['item']['costpercall'] : '';
    		$this->currency         = $data['response']['item']['currency'];
    		return true;
    	}
    	
    	function checkPayment() {
    		$result = $this->sendToHost('www.mollie.nl', '/xml/micropayment/',
    							 		'a=check'.
    							 		'&servicenumber='.urlencode($this->servicenumber).
    							 		'&paycode='.urlencode($this->paycode));
    		if (!$result) return false;
    		
    		list($headers, $xml) = preg_split("/(\r?\n){2}/", $result, 2);
    		$data = XML_unserialize($xml);
    		
    		$this->payed            = ($data['response']['item']['payed'] == 'true');
    		$this->durationdone     = (isset($data['response']['item']['durationdone'])) ? $data['response']['item']['durationdone'] : '';
    		$this->durationleft     = (isset($data['response']['item']['durationleft'])) ? $data['response']['item']['durationleft'] : '';
    		$this->paystatus        = $data['response']['item']['paystatus'];
    		$this->amount           = $data['response']['item']['amount'];
    		$this->duration         = (isset($data['response']['item']['duration'])) ? $data['response']['item']['duration'] : ''; 
    		$this->mode             = $data['response']['item']['mode'];
    		$this->costperminute    = (isset($data['response']['item']['costperminute'])) ? $data['response']['item']['costperminute'] : '';
    		$this->costpercall      = (isset($data['response']['item']['costpercall'])) ? $data['response']['item']['costpercall'] : '';
    		$this->currency         = $data['response']['item']['currency'];
    		return $this->payed;
    	}
    	
    	function sendToHost($host,$path,$data) {
    		$fp = @fsockopen($host,80);
    		if ($fp) {
    			@fputs($fp, "POST $path HTTP/1.0\n");
    			@fputs($fp, "Host: $host\n");
    			@fputs($fp, "Content-type: application/x-www-form-urlencoded\n");
    			@fputs($fp, "Content-length: " . strlen($data) . "\n");
    			@fputs($fp, "Connection: close\n\n");
    			@fputs($fp, $data);
    			$buf = '';
    			while (!feof($fp))
    			$buf .= fgets($fp,128);
    			fclose($fp);
    		}
    		return $buf;
    	}
    }
    
    
    
    
    
    
    
    
    ###################################################################################
    #
    # XML Library, by Keith Devens, version 1.2b
    # http://keithdevens.com/software/phpxml
    #
    # This code is Open Source, released under terms similar to the Artistic License.
    # Read the license at http://keithdevens.com/software/license
    #
    ###################################################################################
    
    
    class XML {
    	var $parser;   #a reference to the XML parser
    	var $document; #the entire XML structure built up so far
    	var $parent;   #a pointer to the current parent - the parent will be an array
    	var $stack;    #a stack of the most recent parent at each nesting level
    	var $last_opened_tag; #keeps track of the last tag opened.
    
    
    	function XML () {
     		$this->parser = xml_parser_create();
    		xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, false);
    		xml_set_object($this->parser, $this);
    		xml_set_element_handler($this->parser, 'open','close');
    		xml_set_character_data_handler($this->parser, 'data');
    	}
    	function destruct () { xml_parser_free($this->parser); }
    	function parse (&$data) {
    		$this->document = array();
    		$this->stack    = array();
    		$this->parent   = &$this->document;
    		return xml_parse($this->parser, $data, true) ? $this->document : NULL;
    	}
    	function open (&$parser, $tag, $attributes) {
    		$this->data = ''; #stores temporary cdata
    		$this->last_opened_tag = $tag;
    		if (is_array($this->parent) and array_key_exists($tag,$this->parent)) { #if you've seen this tag before
    			if (is_array($this->parent[$tag]) and array_key_exists(0,$this->parent[$tag])) { #if the keys are numeric
    				#this is the third or later instance of $tag we've come across
    				$key = count_numeric_items($this->parent[$tag]);
    			}
    			else {
    				#this is the second instance of $tag that we've seen. shift around
    				if (array_key_exists("$tag attr",$this->parent)) {
    					$arr = array('0 attr'=>&$this->parent["$tag attr"], &$this->parent[$tag]);
    					unset($this->parent["$tag attr"]);
    				}
    				else {
    					$arr = array(&$this->parent[$tag]);
    				}
    				$this->parent[$tag] = &$arr;
    				$key = 1;
    			}
    			$this->parent = &$this->parent[$tag];
    		}
    		else {
    			$key = $tag;
    		}
    		if ($attributes) $this->parent["$key attr"] = $attributes;
    		$this->parent  = &$this->parent[$key];
    		$this->stack[] = &$this->parent;
    	}
    	function data (&$parser, $data) {
    		if ($this->last_opened_tag != NULL) #you don't need to store whitespace in between tags
    			$this->data .= $data;
    	}
    	function close (&$parser, $tag) {
    		if ($this->last_opened_tag == $tag){
    			$this->parent = $this->data;
    			$this->last_opened_tag = NULL;
    		}
    		array_pop($this->stack);
    		if ($this->stack) $this->parent = &$this->stack[count($this->stack)-1];
    	}
    }
    
    
    function & XML_unserialize (&$xml) {
    	$xml_parser = new XML();
    	$data = $xml_parser->parse($xml);
    	$xml_parser->destruct();
    	return $data;
    }
    
    
    function count_numeric_items(&$array){
    	return is_array($array) ? count(array_filter(array_keys($array), 'is_numeric')) : 0;
    }
    
    
    ?>
    Toon Meer

ICT Nieuws

  • Fijne feestdagen

    tcbhome 28 december 2025 om 13:55
  • Kritieke update voor Really Simple Security-plug-in

    K.Rens 16 november 2024 om 16:12
  • ING Nederland streeft naar ondersteuning van Google Pay tegen eind februari

    K.Rens 2 november 2024 om 16:09

Blogs

  • Functioneel ontwerp

    Dees 28 december 2014 om 12:38
  • Access Control List implementatie in PHP/MySQL - deel 1/2

    FangorN 28 december 2018 om 12:35
  • Access Control List implementatie in PHP/MySQL - deel 2/2

    FangorN 29 december 2018 om 12:37
  1. Marktplaats
  2. Design
  3. Voorwaarden
  4. Ons team
  5. Leden
  6. Geschiedenis
  7. Regels
  8. Links
  9. Privacy Policy
ICTscripters ©2005 - 2026 , goedkope hosting door DiMoWeb.com, BE0558.915.582
Sponsors: Beste kattenhotel provincie Antwerpen | Beste Zetes eid kaartlezer webshop
Style: Nexus by cls-design
Stylename
Nexus
Manufacturer
cls-design
Licence
Commercial styles
Help
Supportforum
Visit cls-design