Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6018793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:19:34+00:00 2026-05-23T03:19:34+00:00

I am creating a PHP website, and need to integrate MONEYBOOKERs as the payment

  • 0

I am creating a PHP website, and need to integrate MONEYBOOKERs as the payment gateway.

Need help in embedding the MoneyBookers gateway to my site. As I am using the test link (sandbox URL) which is:

https://www.moneybookers.com/app/test_payment.pl

The problem which I am facing is, MONEYBOOKERs is not showing any transtion while testing it.

Please Help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T03:19:35+00:00Added an answer on May 23, 2026 at 3:19 am

    I cover this topic in detail on a recent blog post of mine: How to automate Moneybookers (Skrill) using status_url (IPN). There is example code for PHP and C# and pictures illustrating the points:

    1. Signup for a Moneybookers test account
    2. Create a “secret word”
    3. Create your own payment form (with your logo on the Moneybookers checkout page)
    4. Verify the Moneybookers order

    I won’t cover every step here, because if I did my answer would take up several pages. However I will cover the 4th topic (verifying the Moneybookers order) because the answer currently on this page is riddled with problems (SQL injections, etc.). If you want in-detail instructions for every step then read my article.

    Simple payment form on your website

    I go into this in more detail in the article, but here’s a simple payment form. Replace the bold values with your correct prices, app name, and Moneybookers email:

    
    <form action="https://www.moneybookers.com/app/payment.pl" method="post">
      <input type="hidden" name="pay_to_email" value="merchant-email@example.com"/>
      <input type="hidden" name="status_url" value="http://example.com/verify.php"/> 
      <input type="hidden" name="language" value="EN"/>
      <input type="hidden" name="amount" value="Total amount (e.g. 39.60)"/>
      <input type="hidden" name="currency" value="Currency code (e.g. USD)"/>
      <input type="hidden" name="detail1_description" value="YourApp"/>
      <input type="hidden" name="detail1_text" value="License"/>
      <input type="submit" value="Pay!"/>
    </form>
    

    Verifying the Moneybookers order

    After a user has paid for your software, eBook, or other digital content you’ll want to automatically verify the order and send what they ordered to their email address. In this example I mention creating a product key using LimeLM, but you can really do anything.

    In the example form above you set the location of script that will verify the Moneybookers orders:

    
    <input type="hidden" name="status_url" value="http://example.com/verify.php"/> 
    

    The relevant part of the script is this:

    
    // Validate the Moneybookers signature
    $concatFields = $_POST['merchant_id']
        .$_POST['transaction_id']
        .strtoupper(md5('Paste your secret word here'))
        .$_POST['mb_amount']
        .$_POST['mb_currency']
        .$_POST['status'];
    
    $MBEmail = 'merchant-email@example.com';
    
    // Ensure the signature is valid, the status code == 2,
    // and that the money is going to you
    if (strtoupper(md5($concatFields)) == $_POST['md5sig']
        && $_POST['status'] == 2
        && $_POST['pay_to_email'] == $MBEmail)
    {
        // Valid transaction.
    
        //TODO: generate the product keys and
        //      send them to your customer.
    }
    else
    {
        // Invalid transaction. Bail out
        exit;
    }
    

    If you don’t know how to set your secret word in Moneybookers, I explain how to do this in the ” How to automate Moneybookers (Skrill) using status_url (IPN)” article.

    Full payment example

    If you’re not keen on writing this code yourself then we have a fully built payment form for our LimeLM customers. It’s written for PHP, C#, and VB.NET and it’s free for all our customers (even our free-users). So you can download it, integrate it into your site, and use it without paying us a cent.

    Here’s what the payment selection page looks like:

    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating a login for a website using PHP but when I try to
I am creating a search engine for my php based website. I need to
I'm creating dynamic website with Php and Mysql. So i need insert bangla language
I'm currently creating a PHP website where users need to be able to upload
I am creating a website and I need to to some PHP in my
I'm creating a sample website using xhtml with javascript support. Also using php for
I'm creating a used cars website (written in PHP), and I'm stuck on sending
I am creating site with php. On localhost all works well. On my hosting
I'm creating a new website, I don't want to link direct to it so
I'm creating a PHP website which involves users signing up, and I'm wondering about

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.