• Login
  • Register
  • Zoek
This Thread
  • Everywhere
  • This Thread
  • This Forum
  • 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. Forum
  3. Scripting & programmeren
  4. Overige
  5. Archief
  6. Request

Forum

  • Beta-testers gezocht voor Crypto-oefenplatform

    Syntax 29 januari 2026 om 16:11
  • Na 15 jaar terug van weggeweest: iCriminals.nl is terug (BETA)!

    Syntax 19 januari 2026 om 09:34
  • Developer Gezocht

    Mikevdk 10 januari 2026 om 18:57
  • Op zoek naar de legends

    Syntax 5 januari 2026 om 13:50
  • [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

Marktplaats

  • 350 Nieuwe Domeinnamen Januari 2026

    shiga 1 februari 2026 om 14:21
  • 321 Nieuwe Domeinnamen December 2025

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

    Syntax 26 december 2025 om 00:07

Mollie ivr api fout

  • DonM
  • 17 mei 2011 om 11:35
  • DonM
    Student
    Berichten
    48
    • 17 mei 2011 om 11:35
    • #1

    Beste leden/bezoekers,

    Ik heb de Mollie ivr api gedownload voor mijn site.
    Alleen heb ik de layout ervan veranderd (Netjes in Table gezet in td en tr zodat hij er mooi en precies op me website pas)

    Maar nu krijg ik deze teken boven op het scherm

    

    Het fout ervan weet ik niet? weten jullie het misschien?

    Met vriendelijke groet,

  • Guest, wil je besparen op je domeinnamen? (ad)
  • FrankY
    Another one bites the dust.
    Ontvangen Reacties
    3
    Berichten
    598
    • 17 mei 2011 om 11:36
    • #2

    Post script eens ?

    Bezig met cms:)

  • DonM
    Student
    Berichten
    48
    • 17 mei 2011 om 11:39
    • #3

    Pay.php

    PHP
    <?
        require('betaal_systeem/call/classes/class.micropayment-mollie.php');
        
        $m = new micropayment();
        
        $m->setPartnerID(588757); # change this to your partner ID
        if (isset($_GET['c']) and is_numeric($_GET['c'])) $m->setCountry($_GET['c']);
        $m->setAmount(1.30); # Set payment amount to ? 0,50
        
        if (isset($_GET['action']) and $_GET['action'] == 'check' and isset($_SESSION['servicenumber']) and isset($_SESSION['paycode']) and $_SESSION['servicenumber'] and $_SESSION['paycode']) {
            /* user posted a paymentcheck, so below we'll check if the servicenumber and the paycode is fully payed */
            
            $m->setServicenumber($_SESSION['servicenumber']);
            $m->setPaycode($_SESSION['paycode']);
            $m->checkPayment();
            
            if ($m->payed) {
                # User payed succesfully!
                # Now, do your thing: for example put credits on the users account, or give access to premium content
                
                echo '<table width=95% align=center><tr><td class=subTitle>Betaling</td></tr><tr><td class=mainTxt>
                      De betaling is succesvol gelukt!</td></tr>';
    mysql_query("UPDATE `speldata` SET `bankmoney`=`bankmoney`+'100000' WHERE `id`=".ID) or die(mysql_error());
    mysql_query("UPDATE `status` SET `betaald`=`betaald`+'16' WHERE `id`=".ID) or die(mysql_error());
            }
            else {
                # payment is not (fully) done, send the user back to the payment-screen
                echo '<table width=95% align=center><tr><td class=subTitle>Betaling</td></tr><tr><td class=mainTxt><font color=red><b>Betaling is niet afgerond, volg de onderstaande instructies!</b></font></td></tr></table>';
            }
        }
        
        if (!$m->payed) {
            /* Below we include the payment-screen, because no payment is received (yet) */
            include('betaal_systeem/call/includes/include.paymentscreen.php');
        }
    ?>
    Toon Meer


    Class

    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->partnerid = $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

    include

    PHP
    <?php
    
    
    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;
        
        # landen keuze
        ?>
    
    
    <table width=95% align=center>
    <tr><td class=subTitle colspan=3>Land keuze</td></tr>
    <tr><td class=mainTxt>
        <small>Kies land voor de betaling:</small></td>
    
    
       
        <td class=mainTxt><a href="./pay.php?c=31"><img src="./images/flags/nl.gif" width="20" height="12" border="" alt="flag 31" style="border: 1px solid black" /></a>
        <a href="./pay.php?c=31">Nederland</a></td>
        
        <td class=mainTxt><a href="./pay.php?c=32"><img src="./images/flags/be.gif" width="20" height="12" border="" alt="flag 31" style="border: 1px solid black" /></a>
        <a href="./pay.php?c=32">Belgi&euml;</a></td>
        </tr>
    	</table>
        <?
        echo '<table width=95% align=center>
    <tr><td class=subTitle colspan=2>Bel systeem</td></tr>
    <tr><td class=mainTxt>
    Om ' . $cur . number_format($m->amount, 2, ',', '.') . ' af te rekenen moet je het volgende doen:</td>';
        echo '<td class=mainTxt><b>Bel ' . $m->servicenumber . '</b>  ';
        
        echo '<small>';
        if ($m->mode == 'ppc') {
            echo $cur . number_format($m->costpercall, 2, ',', '.') .' per gesprek</td></tr>';
        } elseif ($m->mode == 'ppm') {
            echo $cur . number_format($m->costperminute, 2, ',', '.') .' per minuut, c.a. ' . $m->duration . ' seconden</td></tr>';
            
            # place an iframe for live display of the payment-progress ?
        }
        echo '</small>';
        
        echo '<tr><td class=mainTxt>en toets de volgende code in: <b>' . $m->paycode . '</b></td>';
        echo '<td class=mainTxt><form method="get" action="./betaald.php">
                <input type="hidden" name="action" value="check" />
                <input type="submit" value="Betaal!">
              </form></td></tr></table>';
    } else {
        echo 'Kon betaalinformatie niet ophalen.';
    }
    
    
    ?>
    Toon Meer
  • L.Groot
    Elite members
    Ontvangen Reacties
    31
    Berichten
    4.888
    • 17 mei 2011 om 14:02
    • #4

    Je moet alles in UTF-8 zonder bom opslaan.
    Download daarvoor Notepad++ (http://notepadd-plus-plus.org).
    Open daarin die bestanden en kies codering->UTF-8 (zonder BOM).
    Sla ze dan op en upload ze opnieuw.
    Als het goed is is het dan opgelost, eventueel moet je wat met die codering spelen (gewoon UTF-8 bijvoorbeeld) maar zonder bom moet werken.

    Veel succes ermee.

Participate now!

Heb je nog geen account? Registreer je nu en word deel van onze community!

Maak een account aan Login

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