<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.prometheusipn.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=86.156.41.224&amp;*</id>
		<title>PrometheusIPN Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.prometheusipn.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=86.156.41.224&amp;*"/>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Special:Contributions/86.156.41.224"/>
		<updated>2026-05-04T14:45:46Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.29.0</generator>

	<entry>
		<id>http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3424</id>
		<title>Integration:api</title>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3424"/>
				<updated>2016-08-26T21:18:23Z</updated>
		
		<summary type="html">&lt;p&gt;86.156.41.224: /* assignPackage Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dick&lt;br /&gt;
&lt;br /&gt;
NO&lt;br /&gt;
&lt;br /&gt;
===== List of actions ===== &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Api calls&lt;br /&gt;
|-&lt;br /&gt;
!Action&lt;br /&gt;
!getGoal&lt;br /&gt;
!assignPackage&lt;br /&gt;
!addCredits&lt;br /&gt;
!getPackages&lt;br /&gt;
|-&lt;br /&gt;
!Hash&lt;br /&gt;
|No&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
!Properties&lt;br /&gt;
|None&lt;br /&gt;
|steamid, package&lt;br /&gt;
|steamid, amount&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
!Returns&lt;br /&gt;
|error, cur, total, goal&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, packages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Examples =====&lt;br /&gt;
NO&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
        // Display an error if there is any&lt;br /&gt;
        if($array['error'] == 1){&lt;br /&gt;
                die($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Display success message&lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                echo($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;/div&gt;</summary>
		<author><name>86.156.41.224</name></author>	</entry>

	<entry>
		<id>http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3423</id>
		<title>Integration:api</title>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3423"/>
				<updated>2016-08-26T21:18:15Z</updated>
		
		<summary type="html">&lt;p&gt;86.156.41.224: /* getGoal Example */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dick&lt;br /&gt;
&lt;br /&gt;
NO&lt;br /&gt;
&lt;br /&gt;
===== List of actions ===== &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Api calls&lt;br /&gt;
|-&lt;br /&gt;
!Action&lt;br /&gt;
!getGoal&lt;br /&gt;
!assignPackage&lt;br /&gt;
!addCredits&lt;br /&gt;
!getPackages&lt;br /&gt;
|-&lt;br /&gt;
!Hash&lt;br /&gt;
|No&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
!Properties&lt;br /&gt;
|None&lt;br /&gt;
|steamid, package&lt;br /&gt;
|steamid, amount&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
!Returns&lt;br /&gt;
|error, cur, total, goal&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, packages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Examples =====&lt;br /&gt;
NO&lt;br /&gt;
&lt;br /&gt;
==== assignPackage Example ====&lt;br /&gt;
&lt;br /&gt;
'''assignPackageExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        // Replace everything in uppercase letters with your own information&lt;br /&gt;
        $source = 'http://yourprometheus.com/api.php?hash=YOUR_HASH&amp;amp;action=assignPackage&amp;amp;package=PACKAGE_ID&amp;amp;steamid=STEAM64_OR_STEAMID';&lt;br /&gt;
 &lt;br /&gt;
        $ch = curl_init();&lt;br /&gt;
        curl_setopt($ch, CURLOPT_URL, $source);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_SSLVERSION,4);&lt;br /&gt;
        $data = curl_exec($ch);&lt;br /&gt;
        $error = curl_error($ch);&lt;br /&gt;
        curl_close ($ch);&lt;br /&gt;
               &lt;br /&gt;
        if($data === false) {&lt;br /&gt;
                // Display an error if there is any&lt;br /&gt;
                die('Curl error: ' . $error);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Decode the data response&lt;br /&gt;
        $array = json_decode($data, true);&lt;br /&gt;
       &lt;br /&gt;
        // Display an error if there is any&lt;br /&gt;
        if($array['error'] == 1){&lt;br /&gt;
                die($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Display success message&lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                echo($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;/div&gt;</summary>
		<author><name>86.156.41.224</name></author>	</entry>

	<entry>
		<id>http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3422</id>
		<title>Integration:api</title>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3422"/>
				<updated>2016-08-26T21:18:02Z</updated>
		
		<summary type="html">&lt;p&gt;86.156.41.224: /* How do I use it? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dick&lt;br /&gt;
&lt;br /&gt;
NO&lt;br /&gt;
&lt;br /&gt;
===== List of actions ===== &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Api calls&lt;br /&gt;
|-&lt;br /&gt;
!Action&lt;br /&gt;
!getGoal&lt;br /&gt;
!assignPackage&lt;br /&gt;
!addCredits&lt;br /&gt;
!getPackages&lt;br /&gt;
|-&lt;br /&gt;
!Hash&lt;br /&gt;
|No&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
!Properties&lt;br /&gt;
|None&lt;br /&gt;
|steamid, package&lt;br /&gt;
|steamid, amount&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
!Returns&lt;br /&gt;
|error, cur, total, goal&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, packages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Examples =====&lt;br /&gt;
==== getGoal Example ====&lt;br /&gt;
&lt;br /&gt;
'''getGoalExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        $get = file_get_contents('http://marcuz.eu/ipn/api.php?action=getGoal');&lt;br /&gt;
        $array = json_decode($get, true);&lt;br /&gt;
       &lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                $percentage = $array['perc'];&lt;br /&gt;
                $total = $array['total'];&lt;br /&gt;
                $goal = $array['goal'];&lt;br /&gt;
                $currency = $array['cur'];&lt;br /&gt;
               &lt;br /&gt;
                echo '&lt;br /&gt;
                       &amp;lt;b&amp;gt;Goal:&amp;lt;/b&amp;gt; '.$goal.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Received:&amp;lt;/b&amp;gt; '.$total.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Percentage:&amp;lt;/b&amp;gt; '.$percentage.'%&lt;br /&gt;
               ';&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== assignPackage Example ====&lt;br /&gt;
&lt;br /&gt;
'''assignPackageExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        // Replace everything in uppercase letters with your own information&lt;br /&gt;
        $source = 'http://yourprometheus.com/api.php?hash=YOUR_HASH&amp;amp;action=assignPackage&amp;amp;package=PACKAGE_ID&amp;amp;steamid=STEAM64_OR_STEAMID';&lt;br /&gt;
 &lt;br /&gt;
        $ch = curl_init();&lt;br /&gt;
        curl_setopt($ch, CURLOPT_URL, $source);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_SSLVERSION,4);&lt;br /&gt;
        $data = curl_exec($ch);&lt;br /&gt;
        $error = curl_error($ch);&lt;br /&gt;
        curl_close ($ch);&lt;br /&gt;
               &lt;br /&gt;
        if($data === false) {&lt;br /&gt;
                // Display an error if there is any&lt;br /&gt;
                die('Curl error: ' . $error);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Decode the data response&lt;br /&gt;
        $array = json_decode($data, true);&lt;br /&gt;
       &lt;br /&gt;
        // Display an error if there is any&lt;br /&gt;
        if($array['error'] == 1){&lt;br /&gt;
                die($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Display success message&lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                echo($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;/div&gt;</summary>
		<author><name>86.156.41.224</name></author>	</entry>

	<entry>
		<id>http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3421</id>
		<title>Integration:api</title>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3421"/>
				<updated>2016-08-26T21:17:39Z</updated>
		
		<summary type="html">&lt;p&gt;86.156.41.224: /* The API */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dick&lt;br /&gt;
&lt;br /&gt;
===== How do I use it? =====&lt;br /&gt;
The API is accessed by typing this into your browser:&lt;br /&gt;
&lt;br /&gt;
  http://yourprometheus.com/api.php?hash=HASH&amp;amp;action=ACTION&lt;br /&gt;
&lt;br /&gt;
Not all actions require a hash, for instance the getGoal action does not require a hash and can be accessed directly. The API returns the response in **JSON**. It can be securely communicated with using **cURL**.&lt;br /&gt;
&lt;br /&gt;
===== List of actions ===== &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Api calls&lt;br /&gt;
|-&lt;br /&gt;
!Action&lt;br /&gt;
!getGoal&lt;br /&gt;
!assignPackage&lt;br /&gt;
!addCredits&lt;br /&gt;
!getPackages&lt;br /&gt;
|-&lt;br /&gt;
!Hash&lt;br /&gt;
|No&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
!Properties&lt;br /&gt;
|None&lt;br /&gt;
|steamid, package&lt;br /&gt;
|steamid, amount&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
!Returns&lt;br /&gt;
|error, cur, total, goal&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, packages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Examples =====&lt;br /&gt;
==== getGoal Example ====&lt;br /&gt;
&lt;br /&gt;
'''getGoalExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        $get = file_get_contents('http://marcuz.eu/ipn/api.php?action=getGoal');&lt;br /&gt;
        $array = json_decode($get, true);&lt;br /&gt;
       &lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                $percentage = $array['perc'];&lt;br /&gt;
                $total = $array['total'];&lt;br /&gt;
                $goal = $array['goal'];&lt;br /&gt;
                $currency = $array['cur'];&lt;br /&gt;
               &lt;br /&gt;
                echo '&lt;br /&gt;
                       &amp;lt;b&amp;gt;Goal:&amp;lt;/b&amp;gt; '.$goal.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Received:&amp;lt;/b&amp;gt; '.$total.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Percentage:&amp;lt;/b&amp;gt; '.$percentage.'%&lt;br /&gt;
               ';&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== assignPackage Example ====&lt;br /&gt;
&lt;br /&gt;
'''assignPackageExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        // Replace everything in uppercase letters with your own information&lt;br /&gt;
        $source = 'http://yourprometheus.com/api.php?hash=YOUR_HASH&amp;amp;action=assignPackage&amp;amp;package=PACKAGE_ID&amp;amp;steamid=STEAM64_OR_STEAMID';&lt;br /&gt;
 &lt;br /&gt;
        $ch = curl_init();&lt;br /&gt;
        curl_setopt($ch, CURLOPT_URL, $source);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_SSLVERSION,4);&lt;br /&gt;
        $data = curl_exec($ch);&lt;br /&gt;
        $error = curl_error($ch);&lt;br /&gt;
        curl_close ($ch);&lt;br /&gt;
               &lt;br /&gt;
        if($data === false) {&lt;br /&gt;
                // Display an error if there is any&lt;br /&gt;
                die('Curl error: ' . $error);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Decode the data response&lt;br /&gt;
        $array = json_decode($data, true);&lt;br /&gt;
       &lt;br /&gt;
        // Display an error if there is any&lt;br /&gt;
        if($array['error'] == 1){&lt;br /&gt;
                die($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Display success message&lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                echo($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;/div&gt;</summary>
		<author><name>86.156.41.224</name></author>	</entry>

	<entry>
		<id>http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3420</id>
		<title>Integration:api</title>
		<link rel="alternate" type="text/html" href="http://wiki.prometheusipn.com/index.php?title=Integration:api&amp;diff=3420"/>
				<updated>2016-08-26T21:17:26Z</updated>
		
		<summary type="html">&lt;p&gt;86.156.41.224: /* What is this api? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====== The API ======&lt;br /&gt;
&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;lt;nowiki&amp;gt;&amp;lt;nowiki&amp;gt;Insert non-formatted text here&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;&amp;lt;/nowiki&amp;gt;===== What is this api? =====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Add a packddddd&lt;br /&gt;
&lt;br /&gt;
The API has a few things you can designate:&lt;br /&gt;
&lt;br /&gt;
''hash'' - The hasdddh you genfferate above if you enable API. This has to be kept a secret. Do not give it to anyone else.&lt;br /&gt;
&lt;br /&gt;
''action'' - The perforffmed action&lt;br /&gt;
&lt;br /&gt;
''steamid'' - The users steamidegddgdg&lt;br /&gt;
fvvd&lt;br /&gt;
''package'' - The package&lt;br /&gt;
 cc dcvdv&lt;br /&gt;
&lt;br /&gt;
===== How do I use it? =====&lt;br /&gt;
The API is accessed by typing this into your browser:&lt;br /&gt;
&lt;br /&gt;
  http://yourprometheus.com/api.php?hash=HASH&amp;amp;action=ACTION&lt;br /&gt;
&lt;br /&gt;
Not all actions require a hash, for instance the getGoal action does not require a hash and can be accessed directly. The API returns the response in **JSON**. It can be securely communicated with using **cURL**.&lt;br /&gt;
&lt;br /&gt;
===== List of actions ===== &lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+Api calls&lt;br /&gt;
|-&lt;br /&gt;
!Action&lt;br /&gt;
!getGoal&lt;br /&gt;
!assignPackage&lt;br /&gt;
!addCredits&lt;br /&gt;
!getPackages&lt;br /&gt;
|-&lt;br /&gt;
!Hash&lt;br /&gt;
|No&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|Yes&lt;br /&gt;
|-&lt;br /&gt;
!Properties&lt;br /&gt;
|None&lt;br /&gt;
|steamid, package&lt;br /&gt;
|steamid, amount&lt;br /&gt;
|None&lt;br /&gt;
|-&lt;br /&gt;
!Returns&lt;br /&gt;
|error, cur, total, goal&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, msg&lt;br /&gt;
|error, packages&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===== Examples =====&lt;br /&gt;
==== getGoal Example ====&lt;br /&gt;
&lt;br /&gt;
'''getGoalExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        $get = file_get_contents('http://marcuz.eu/ipn/api.php?action=getGoal');&lt;br /&gt;
        $array = json_decode($get, true);&lt;br /&gt;
       &lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                $percentage = $array['perc'];&lt;br /&gt;
                $total = $array['total'];&lt;br /&gt;
                $goal = $array['goal'];&lt;br /&gt;
                $currency = $array['cur'];&lt;br /&gt;
               &lt;br /&gt;
                echo '&lt;br /&gt;
                       &amp;lt;b&amp;gt;Goal:&amp;lt;/b&amp;gt; '.$goal.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Received:&amp;lt;/b&amp;gt; '.$total.' '.$currency.'&amp;lt;br&amp;gt;&lt;br /&gt;
                       &amp;lt;b&amp;gt;Percentage:&amp;lt;/b&amp;gt; '.$percentage.'%&lt;br /&gt;
               ';&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== assignPackage Example ====&lt;br /&gt;
&lt;br /&gt;
'''assignPackageExample.php'''&lt;br /&gt;
  &amp;lt;?php&lt;br /&gt;
 &lt;br /&gt;
        // Replace everything in uppercase letters with your own information&lt;br /&gt;
        $source = 'http://yourprometheus.com/api.php?hash=YOUR_HASH&amp;amp;action=assignPackage&amp;amp;package=PACKAGE_ID&amp;amp;steamid=STEAM64_OR_STEAMID';&lt;br /&gt;
 &lt;br /&gt;
        $ch = curl_init();&lt;br /&gt;
        curl_setopt($ch, CURLOPT_URL, $source);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);&lt;br /&gt;
        curl_setopt($ch, CURLOPT_SSLVERSION,4);&lt;br /&gt;
        $data = curl_exec($ch);&lt;br /&gt;
        $error = curl_error($ch);&lt;br /&gt;
        curl_close ($ch);&lt;br /&gt;
               &lt;br /&gt;
        if($data === false) {&lt;br /&gt;
                // Display an error if there is any&lt;br /&gt;
                die('Curl error: ' . $error);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Decode the data response&lt;br /&gt;
        $array = json_decode($data, true);&lt;br /&gt;
       &lt;br /&gt;
        // Display an error if there is any&lt;br /&gt;
        if($array['error'] == 1){&lt;br /&gt;
                die($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
       &lt;br /&gt;
        // Display success message&lt;br /&gt;
        if($array['error'] == 0){&lt;br /&gt;
                echo($array['msg']);&lt;br /&gt;
        }&lt;br /&gt;
 &lt;br /&gt;
  ?&amp;gt;&lt;/div&gt;</summary>
		<author><name>86.156.41.224</name></author>	</entry>

	</feed>