<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: PayPal Integration YEAH!!!</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: PayPal Integration YEAH!!!</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 02:29:45 +0000</pubDate>

<item>
<title>drumaboy46 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11651</link>
<pubDate>Sun, 20 Mar 2011 08:36:16 +0000</pubDate>
<dc:creator>drumaboy46</dc:creator>
<guid isPermaLink="false">11651@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;awesome let me know how that works for you :)
&#60;/p&#62;</description>
</item>
<item>
<title>chicagowebmanagement on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11650</link>
<pubDate>Sun, 20 Mar 2011 03:39:45 +0000</pubDate>
<dc:creator>chicagowebmanagement</dc:creator>
<guid isPermaLink="false">11650@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Drumaboy, that is perfect. Thanks! And yes, I think this would be a GREAt feature for V3!
&#60;/p&#62;</description>
</item>
<item>
<title>drumaboy46 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11649</link>
<pubDate>Sun, 20 Mar 2011 03:09:17 +0000</pubDate>
<dc:creator>drumaboy46</dc:creator>
<guid isPermaLink="false">11649@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Yes this is correct chicagowebmar you can place that code anywhere you want. by that I mean whatever code you want/need to write you obvious would put it in the right place, then you wrap my code around it example. Let say you wanted php to write &#34;I see monkeys&#34; on your confirm page on line... lets say 85 but you only want to show it for your Zoo registration form, which is form id 16 then it would look like this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//obviously a stupid example but here goes: :)

//get the id from url if it equals 16
if($_GET[&#38;#39;id&#38;#39;] = &#38;#39;16&#38;#39;) {
       echo &#38;quot;I see monkeys&#38;quot;;  //then do this.
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the &#34;id&#34; is always present for every form you have making each forms url unique this is whats great about machform.&#60;br /&#62;
example: &#60;/p&#62;
&#60;p&#62;...machform/views.php?id=16&#60;/p&#62;
&#60;p&#62;In order for you to retrieve data from paypal (Paypal.com) yes you need to learn a little about the first post and IPN's its not to difficult. My code looks complicated and could have been cleaner I was in a rush when I did it , but read over it just to get the basic idea and any ? you have I will help.&#60;/p&#62;
&#60;p&#62;Yes you need to create a table the way I did it was like this.&#60;/p&#62;
&#60;p&#62;1. create a field in your form and hide it using CSS (to get element name simply view the source code in a browser)&#60;/p&#62;
&#60;p&#62;2. pre-fill that field when the form  loads (viewable to user)&#60;/p&#62;
&#60;p&#62;3. on submit send all data to machform db as usual then redirect to paypal passing the session in the pay buy link or button (as mentioned in first post) &#60;/p&#62;
&#60;p&#62;4. once member has paid paypal will automatically send data to the script (as mentioned in first post) within seconds&#60;/p&#62;
&#60;p&#62;5. create a script to compare the id's from your machform entry and paypals entry if they match you know the paid but IF they don't match then echo &#34;your payment has not been processed yet&#34;;  or whatever you want to say.&#60;/p&#62;
&#60;p&#62;Do you understand the concept?&#60;/p&#62;
&#60;p&#62;Just because a form is submitted and the user is redirected does not mean that they have paid you.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;(I&#38;#39;m not yelling but I just want to be clear so the same ?&#38;#39;s aren&#38;#39;t asked multiple times.)
PAYPAL IPN IS THE ONLY WAY TO KNOW AND ....RETRIEVE ANY AND ALL PAYMENT DATA
FROM PAYPAL AFTER YOUR FORM HAS REDIRECTED THEM YOU CAN ONLY PASS DATA
TO PAYPAL VIA THEIR CUSTOM URL PARAMETERS AND CAN ONLY RETRIEVE
THAT INFO ONCE IT HAS ARRIVED IN YOUR DB.

ALTHOUGH YOU CAN PLACE A REDIRECT URL IN YOUR PAYPAL ACCOUNT IT
WILL HAVE NO SESSION DATA AVAILABLE TO YOU OR A CUSTOM URL
WHICH YOU CAN $_GET INFO FROM&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&#38;#38;content_ID=developer/e_howto_admin_IPNIntro&#34; rel=&#34;nofollow&#34;&#62;https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&#38;#38;content_ID=developer/e_howto_admin_IPNIntro&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;please let me know if you need more help....drumaboy out!&#60;/p&#62;
&#60;p&#62;HEY APPNITRO THIS BETTER BE A FREAKN FEATURE IN MACHFORM V3 (Now i'm yelliing lol!) there are a lot of post about this feature!
&#60;/p&#62;</description>
</item>
<item>
<title>chicagowebmanagement on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11643</link>
<pubDate>Sat, 19 Mar 2011 03:13:37 +0000</pubDate>
<dc:creator>chicagowebmanagement</dc:creator>
<guid isPermaLink="false">11643@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks Drumaboy46! So I understand clearly, where would I place your three lines of code?&#60;/p&#62;
&#60;p&#62;Do I need to use your paypal.php code or no?&#60;/p&#62;
&#60;p&#62;I understand about IPN values, but wanted to know about being able to store the form payment receipt details in the database as well. I'd still have to add a payments table wouldn't I?&#60;/p&#62;
&#60;p&#62;Just looking for additional clarification, and again, THANKS!
&#60;/p&#62;</description>
</item>
<item>
<title>drumaboy46 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11641</link>
<pubDate>Fri, 18 Mar 2011 21:40:43 +0000</pubDate>
<dc:creator>drumaboy46</dc:creator>
<guid isPermaLink="false">11641@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;mig2000 this is a free forum you shouldn't have to pay anyone for a simple paypal btn. I can post step by step here its been a while but my form and paypal intergration has worked now for over a year and my clients couln't be more pleased and the one who helped me do it all was Yuniar so I'm giving back to the forum as a thank you and always will.
&#60;/p&#62;</description>
</item>
<item>
<title>drumaboy46 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11636</link>
<pubDate>Fri, 18 Mar 2011 20:23:52 +0000</pubDate>
<dc:creator>drumaboy46</dc:creator>
<guid isPermaLink="false">11636@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi I'm drumaboy and I actually started this post. I have a working &#34;complete pay intergration&#34;. You can acheive what you want by simply using this type of code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//&#38;#39;X&#38;#39; being your forms ID

if($_GET[&#38;#39;id&#38;#39;] == &#38;#39;X&#38;#39;){

    //Do whatever   

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You do not need to duplicate view-functions or post-functions...that may get real messy in the end. I hope that makes sense. I came back to the post to help everyone so please me anything.&#60;/p&#62;
&#60;p&#62;By the way just so everyone knows to store data from paypal after or machform submission you must use paypals IPN or their api to retrieve notifications of payments to your processing script.
&#60;/p&#62;</description>
</item>
<item>
<title>chicagowebmanagement on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11628</link>
<pubDate>Thu, 17 Mar 2011 23:00:37 +0000</pubDate>
<dc:creator>chicagowebmanagement</dc:creator>
<guid isPermaLink="false">11628@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Okay, I'd like to implement this myself, but the client has OTHER forms using Machform and I don't want to negatively impact it. So, does anyone know if we can run the mods without affecting other forms, or do I need to specify this modified form to use the modified files view-functions2.php and view-functions2.php (thereby keeping the changes separate from non-paypal form).&#60;/p&#62;
&#60;p&#62;Any thoughts on this?
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11173</link>
<pubDate>Thu, 06 Jan 2011 09:40:17 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">11173@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Trowar&#60;/p&#62;
&#60;p&#62;Are you available now? I do not mind to pay for your time if you can get this done for me. Please let me know.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>artitmedia on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-11169</link>
<pubDate>Thu, 06 Jan 2011 06:17:49 +0000</pubDate>
<dc:creator>artitmedia</dc:creator>
<guid isPermaLink="false">11169@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello guys.&#60;br /&#62;
I am as ASP developer and I want to implement paypal payment in one of my websites. All is good until the part with keeping (remembering) the form variables after the payment, as most of us struggle.&#60;br /&#62;
Is anyone familiar with ASP and can collaborate with me on this matter? I will gladly share my knowledge with someone in the same situation in order to overcome the little problem we have.&#60;br /&#62;
After all, 2 brains are better than one. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Trowar on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-10761</link>
<pubDate>Wed, 27 Oct 2010 03:51:53 +0000</pubDate>
<dc:creator>Trowar</dc:creator>
<guid isPermaLink="false">10761@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Sorry, I'm so swamped with work stuff at the moment.&#60;/p&#62;
&#60;p&#62;If you understand what the person is doing (yau have a knowledge of php and sql) thenf ollow the instructions. &#60;/p&#62;
&#60;p&#62;If you don't you would probably be better paying someone to do it for you.&#60;/p&#62;
&#60;p&#62;I wouldlove to help but I have some urgent matters to deal with and just don't have the time to write and post the code here. Intergrating with a paypal cart can get quite tricky.&#60;/p&#62;
&#60;p&#62;What's your timescale for getting this done?
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-10757</link>
<pubDate>Tue, 26 Oct 2010 10:17:13 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10757@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Trowar,&#60;/p&#62;
&#60;p&#62;Can you please advice?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-10681</link>
<pubDate>Tue, 19 Oct 2010 07:42:49 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10681@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Trowar,&#60;/p&#62;
&#60;p&#62;Should I go ahead and add the codes as the beginning of this post to my form to see if this works for me? Please advice.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-10672</link>
<pubDate>Sun, 17 Oct 2010 10:53:16 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10672@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello Trower,&#60;/p&#62;
&#60;p&#62;Many thanks for all of effort in helping me. At this point, I have not done or use any code as above. As you notice on my link above, I only have a simple form and the submit button which actually takes the user to pay pal . That is it. What I want to do is to take it to next level. I have never integrate anything like this before. Any suggestion that you provide me would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
</item>
<item>
<title>Trowar on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah/page/2#post-10669</link>
<pubDate>Sat, 16 Oct 2010 18:51:51 +0000</pubDate>
<dc:creator>Trowar</dc:creator>
<guid isPermaLink="false">10669@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Okay, assuming you have a hidden field containing the session ID in your form (as he mentions he did above),&#60;/p&#62;
&#60;p&#62;You could probably just add something like this to your 'www.yoursite.com/includes/paypal.php' file below the&#60;br /&#62;
&#60;code&#62;$insert = mysql_query($sql);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;mysql_query(&#34;UPDATE &#60;code&#62;ap_form_1&#60;/code&#62; SET payment = '$payment_status' WHERE sessionid = '$custom'&#34;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I am assuming you are using form number 1 (ap_form_1) and that in the table ap_form_1 you have creatused a custom field called 'payment'.&#60;/p&#62;
&#60;p&#62;If it works, every time a payment is made it should populate the field  'payment' with 'Completed', you could then just use a query to display all orders which had been completed.&#60;/p&#62;
&#60;p&#62;Though if you use the above example, all paying customers are saved in the 'payments' table anyway and e-mails from paypal.php will only be sent once payment is recieved anyway so surely the above script does everything you need?&#60;/p&#62;
&#60;p&#62;My site is coded completely differently to the above example but that should work, if it doesn't let me know. Remember you MUST save your session id saved in you ap_form_1 table.
&#60;/p&#62;</description>
</item>
<item>
<title>Trowar on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10668</link>
<pubDate>Sat, 16 Oct 2010 17:17:09 +0000</pubDate>
<dc:creator>Trowar</dc:creator>
<guid isPermaLink="false">10668@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I'll try to figure out the easierst way. Does you site use the above code? If so I'll try ro write something that integrates into that.
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10658</link>
<pubDate>Sat, 16 Oct 2010 07:45:29 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10658@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;That sounds Great. Can you share with me the step by step in what I need to do to get that accomplished? In advance I thank you for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>Trowar on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10656</link>
<pubDate>Sat, 16 Oct 2010 04:15:00 +0000</pubDate>
<dc:creator>Trowar</dc:creator>
<guid isPermaLink="false">10656@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I use a payment system on my machform. I have every entry generate a unique reference. This is passed through paypal using the 'custom' pass-through varibale.&#60;/p&#62;
&#60;p&#62;When PayPal cofirms the payment through IPN it sends me this reference. My IPN page then uses the reference to locate the customer's record and populates a field to say they have paid.
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10648</link>
<pubDate>Fri, 15 Oct 2010 09:44:11 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10648@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I have the following case. I wonder if this can work in my case:&#60;/p&#62;
&#60;p&#62;Please see the link below. This form requires the user to fill out the form and then the by clicking the Submit, the system takes them to PayPal to pay. How can I have it to make sure they pay before I actually let Macform to add the record to the database or send a copy or the email to the users? The way it is today, the user can create the record and NOT pay the payment. Please advice.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.dsaom.org/contactus/annualwalk/walk2010.html&#34; rel=&#34;nofollow&#34;&#62;http://www.dsaom.org/contactus/annualwalk/walk2010.html&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>mig2000 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10314</link>
<pubDate>Mon, 30 Aug 2010 03:29:03 +0000</pubDate>
<dc:creator>mig2000</dc:creator>
<guid isPermaLink="false">10314@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Has anyone else successfully implemented the above? I would like to do this as I see it to be a similar cases in many application. Thanks for the great work and sharing.
&#60;/p&#62;</description>
</item>
<item>
<title>drumaboy46 on "PayPal Integration YEAH!!!"</title>
<link>https://www.machform.com/forums/topic/paypal-integration-yeah#post-10052</link>
<pubDate>Mon, 26 Jul 2010 22:26:40 +0000</pubDate>
<dc:creator>drumaboy46</dc:creator>
<guid isPermaLink="false">10052@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;ok I'am back here we go:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;PLEASE BACK UP ALL YOUR FILES SO YOU DON&#38;#39;T SAY I RUINED YOUR MACHFROM!&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Step1: Get a paypal account duh!&#60;br /&#62;
 a1: Turn on form reidrect&#60;br /&#62;
 a2: Turn on IPN(instant payment notification) located in the menu profile-&#38;gt;more&#60;br /&#62;
     options-&#38;gt;Instant Payment Notification Preferences(under selling prefs)&#60;br /&#62;
     you will need to specify your IPN listener url example&#60;br /&#62;
     &#60;a href=&#34;http://www.yoursite.com/includes/paypal.php&#34; rel=&#34;nofollow&#34;&#62;www.yoursite.com/includes/paypal.php&#60;/a&#62; (so create a php page for this)&#60;br /&#62;
     call it whatever you want I use paypal.php it doesn't matter.&#60;br /&#62;
 a3: Once your bank info is verified you can have your customers skip paypal signup by&#60;br /&#62;
     &#34;enabling paypal account option&#34; Website Payment Preferences(under selling prefs)&#60;br /&#62;
     this is located in profile-&#38;gt;more options-&#38;gt;Website Payment Preferences&#60;/p&#62;
&#60;p&#62;Step2: Edit these include files&#60;br /&#62;
 a1: post-functions.php look for this code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//if &#38;#39;form review&#38;#39; enabled, send review_id
			if(!empty($form_review)) {
				$process_result[&#38;#39;review_id&#38;#39;]   = $record_insert_id;
			}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; right underneath that put you code something like this is what I use. I created the paypal links by using a paypal URL generator to get me started then learned the variables from paypal&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//CUSTOM CODE REDIRECT/////////////////////////////////////////////////
	if($form_id == &#38;quot;7&#38;quot;) {
		//Here I wanted to prepopulate some of the paypal fields from
                //they filled out on the machform
                //Of coarse just replace the elements_# with your elements
		$first_name = $user_input[&#38;#39;element_2_1&#38;#39;];
		$last_name = $user_input[&#38;#39;element_2_2&#38;#39;];
                //The phone number is split this way cause that&#38;#39;s how paypal reads it
		$ibo_phone_a = $user_input[&#38;#39;element_4_1&#38;#39;];
		$ibo_phone_b = $user_input[&#38;#39;element_4_2&#38;#39;];
		$ibo_phone_c = $user_input[&#38;#39;element_4_3&#38;#39;];
		$payer_email = $user_input[&#38;#39;element_5&#38;#39;];
                //Here I silently pass a session_id that is unique to each payer to
                //to a hidden form element
                //later in the code I will show you how to achieve this
		$custom_session_id = $user_input[&#38;#39;element_17&#38;#39;];

        switch ($user_input[&#38;#39;element_8&#38;#39;]) {
        //obviously this is where you would put your products depending on what the
        //user chooses they will be redirected to the correct paypal url
        //once the form has been submitted. The redirect will happen after the
        //the success page is viewed not at the review page
        //this way they get a &#38;quot;Success you form has been saved redirecting to PP...&#38;quot;
		case 1 : $item_name = &#38;quot;apples&#38;quot;; break;
		case 2 : $item_name = &#38;quot;monkeys&#38;quot;; break;
		case 3 : $item_name = &#38;quot;poo&#38;quot;; break;
		case 4 : $item_name = &#38;quot;yuniar&#38;quot;; break;

	case 1 : $redirect = &#38;quot;https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;#38;first_name=&#38;quot;.$first_fname.&#38;quot;&#38;#38;last_name=&#38;quot;.$last_lname.&#38;quot;&#38;#38;night_phone_a=&#38;quot;.$ibo_phone_a.&#38;quot;&#38;#38;night_phone_b=&#38;quot;.$ibo_phone_b.&#38;quot;&#38;#38;night_phone_c=&#38;quot;.$ibo_phone_c.&#38;quot;&#38;#38;email=&#38;quot;.$ibo_email.&#38;quot;&#38;#38;business=bussnessemail@yoursite.com&#38;#38;undefined_quantity=0&#38;#38;item_name=&#38;quot;.$team_name.&#38;quot;+&#38;#38;amount=180.00&#38;#38;no_shipping=1&#38;#38;return=yoursite.com&#38;#38;cancel_return=http://www.yoursite.com/cancelled.php&#38;#38;currency_code=USD&#38;#38;bn=PP%2dBuyNowBF&#38;#38;charset=UTF%2d8&#38;#38;custom=&#38;quot;.$custom_session_id.&#38;quot; target=_self&#38;quot;; break;

       case 2 : $redirect = &#38;quot;https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;#38;first_name=&#38;quot;.$first_fname.&#38;quot;&#38;#38;last_name=&#38;quot;.$last_lname.&#38;quot;&#38;#38;night_phone_a=&#38;quot;.$ibo_phone_a.&#38;quot;&#38;#38;night_phone_b=&#38;quot;.$ibo_phone_b.&#38;quot;&#38;#38;night_phone_c=&#38;quot;.$ibo_phone_c.&#38;quot;&#38;#38;email=&#38;quot;.$ibo_email.&#38;quot;&#38;#38;business=bussnessemail@yoursite.com&#38;#38;undefined_quantity=0&#38;#38;item_name=&#38;quot;.$team_name.&#38;quot;+&#38;#38;amount=280.00&#38;#38;no_shipping=1&#38;#38;return=yoursite.com&#38;#38;cancel_return=http://www.yoursite.com/cancelled.php&#38;#38;currency_code=USD&#38;#38;bn=PP%2dBuyNowBF&#38;#38;charset=UTF%2d8&#38;#38;custom=&#38;quot;.$custom_session_id.&#38;quot; target=_self&#38;quot;; break;

       case 3 : $redirect = &#38;quot;https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;#38;first_name=&#38;quot;.$first_fname.&#38;quot;&#38;#38;last_name=&#38;quot;.$last_lname.&#38;quot;&#38;#38;night_phone_a=&#38;quot;.$ibo_phone_a.&#38;quot;&#38;#38;night_phone_b=&#38;quot;.$ibo_phone_b.&#38;quot;&#38;#38;night_phone_c=&#38;quot;.$ibo_phone_c.&#38;quot;&#38;#38;email=&#38;quot;.$ibo_email.&#38;quot;&#38;#38;business=bussnessemail@yoursite.com&#38;#38;undefined_quantity=0&#38;#38;item_name=&#38;quot;.$team_name.&#38;quot;+&#38;#38;amount=80.00&#38;#38;no_shipping=1&#38;#38;return=yoursite.com&#38;#38;cancel_return=http://www.yoursite.com/cancelled.php&#38;#38;currency_code=USD&#38;#38;bn=PP%2dBuyNowBF&#38;#38;charset=UTF%2d8&#38;#38;custom=&#38;quot;.$custom_session_id.&#38;quot; target=_self&#38;quot;; break;

       case 4 : $redirect = &#38;quot;https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#38;#38;first_name=&#38;quot;.$first_fname.&#38;quot;&#38;#38;last_name=&#38;quot;.$last_lname.&#38;quot;&#38;#38;night_phone_a=&#38;quot;.$ibo_phone_a.&#38;quot;&#38;#38;night_phone_b=&#38;quot;.$ibo_phone_b.&#38;quot;&#38;#38;night_phone_c=&#38;quot;.$ibo_phone_c.&#38;quot;&#38;#38;email=&#38;quot;.$ibo_email.&#38;quot;&#38;#38;business=bussnessemail@yoursite.com&#38;#38;undefined_quantity=0&#38;#38;item_name=&#38;quot;.$team_name.&#38;quot;+&#38;#38;amount=100.00&#38;#38;no_shipping=1&#38;#38;return=yoursite.com&#38;#38;cancel_return=http://www.yoursite.com/cancelled.php&#38;#38;currency_code=USD&#38;#38;bn=PP%2dBuyNowBF&#38;#38;charset=UTF%2d8&#38;#38;custom=&#38;quot;.$custom_session_id.&#38;quot; target=_self&#38;quot;; break;
       }
	//custom code
	//$process_result[&#38;#39;form_redirect&#38;#39;] = $redirect; //you don&#38;#39;t need this code
	//$_SESSION[&#38;#39;form_redirect&#38;#39;] = $process_result[&#38;#39;form_redirect&#38;#39;];//not needed
	$_SESSION[&#38;#39;form_redirect&#38;#39;] = $redirect; //needed
}
			/////////////////////////////////////////////////////////////////////////&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; a2: now go to bottom pf post-functions.php around line 2340 you will see this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//delete all entry from this user in review table
	$session_id = session_id();
	do_query(&#38;quot;DELETE FROM &#38;lt;code&#38;gt;ap_form_{$form_id}_review&#38;lt;/code&#38;gt; where id=&#38;#39;{$record_id}&#38;#39; or session_id=&#38;#39;{$session_id}&#38;#39;&#38;quot;);
	$commit_result[&#38;#39;form_redirect&#38;#39;] = $form_redirect;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Right below that add this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;//CUSTOM REDIRECT CODE
	//custom code
	if (!empty($_SESSION[&#38;#39;form_redirect&#38;#39;])) {
		//disable the code to redirect using timer
		//$commit_result[&#38;#39;form_redirect&#38;#39;] = $_SESSION[&#38;#39;form_redirect&#38;#39;];
	}
	return $commit_result;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Step 3: Edit view-functions.php&#60;br /&#62;
 a1: around line 2267 you will see this&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$form_markup = &#38;lt;&#38;lt;&#38;lt;EOT&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;  ABOVE this line put this code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ($form_id == 7 &#38;#38;&#38;#38; !empty($_SESSION[&#38;#39;form_redirect&#38;#39;])) {
     $custom_redirect_url = &#38;#39;&#38;lt;meta http-equiv=&#38;quot;Refresh&#38;quot; content=&#38;quot;5;url=&#38;#39;.$_SESSION[&#38;#39;form_redirect&#38;#39;].&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
            unset($_SESSION[&#38;#39;form_redirect&#38;#39;]);
        }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; a2: Now if you wanted the redirects to contain the session_id like I did that way you&#60;br /&#62;
     could use it as a receipt or a unique indetifier if you were creating a DB to&#60;br /&#62;
     store all the data that pay pal sends you like i did read this post&#60;br /&#62;
     &#60;a href=&#34;http://www.appnitro.com/forums/topic/session_id-retreival?replies=3&#34; rel=&#34;nofollow&#34;&#62;http://www.appnitro.com/forums/topic/session_id-retreival?replies=3&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Step 4: Setting up an IPN listener this will enable to store user data into your DB&#60;br /&#62;
  a1: create a table in the your machform DB called lets say payments&#60;br /&#62;
  a2: create a file called paypal.php&#60;br /&#62;
  a3: go to paypal and the you will need to specify your IPN listener url example&#60;br /&#62;
      &#60;a href=&#34;http://www.yoursite.com/includes/paypal.php&#34; rel=&#34;nofollow&#34;&#62;www.yoursite.com/includes/paypal.php&#60;/a&#62;&#60;br /&#62;
  a4: In you paypal.php file erase all default html and put this between&#60;br /&#62;
     &#38;lt;body&#38;gt;paste here!&#38;lt;/body&#38;gt; tags&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;!DOCTYPE html PUBLIC &#38;quot;-//W3C//DTD XHTML 1.0 Strict//EN&#38;quot; &#38;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#38;quot;&#38;gt;
&#38;lt;html xmlns=&#38;quot;http://www.w3.org/1999/xhtml&#38;quot;&#38;gt;
&#38;lt;head&#38;gt;
&#38;lt;meta http-equiv=&#38;quot;Content-Type&#38;quot; content=&#38;quot;text/html; charset=UTF-8&#38;quot; /&#38;gt;
&#38;lt;title&#38;gt;Untitled Document&#38;lt;/title&#38;gt;
&#38;lt;/head&#38;gt;

&#38;lt;body&#38;gt;
&#38;lt;?
include(&#38;quot;../machform/config.php&#38;quot;);//Establishes varibles used to connect to you machform DB, then you can specify wich table in your inserst command
mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
@mysql_select_db(DB_NAME) or die( &#38;quot;Unable to select database&#38;quot;);

//add &#38;#39;cmd&#38;#39; as required to get VERIFIED response
$req = &#38;#39;cmd=_notify-validate&#38;#39;;
//put post into NVP format
foreach ($_POST as $key =&#38;gt; $value)
{
 $value = urlencode(stripslashes($value));
 $req .= &#38;quot;&#38;#38;$key=$value&#38;quot;;
}
// setup headers for request to paypal
$header .= &#38;quot;POST /cgi-bin/webscr HTTP/1.0\r\n&#38;quot;;
$header .= &#38;quot;Content-Type: application/x-www-form-urlencoded\r\n&#38;quot;;
$header .= &#38;quot;Content-Length: &#38;quot; . strlen($req) . &#38;quot;\r\n\r\n&#38;quot;;
//Open socket
$fp = fsockopen (&#38;#39;ssl://www.sandbox.paypal.com&#38;#39;, 443, $errno, $errstr, 30);
//Test your IPN with the sandbox account for devs you must create one first
//go to &#60;a href=&#34;https://developer.paypal.com/&#34; rel=&#34;nofollow&#34;&#62;https://developer.paypal.com/&#60;/a&#62;
//$fp = fsockopen (&#38;#39;ssl://www.paypal.com&#38;#39;, 443, $errno, $errstr, 30);// use this when testing is done and you want to go live

if (!$fp)// failed to connect to url
{
 //write to file
 $fh = fopen(&#38;quot;logipn.txt&#38;quot;, &#38;#39;a&#38;#39;);//open file and create if does not exist
 fwrite($fh, &#38;quot;\r\n/////////////////////////////////////////\r\n HTTP ERROR \r\n&#38;quot;);//Just for spacing in log file
 fwrite($fh, $errstr);//write data
 fclose($fh);//close file

 //email
 $mail_From = &#38;quot;From: &#60;a href=&#34;mailto:payments@yoursite.com&#38;quot;;&#34;&#62;payments@yoursite.com&#38;quot;;&#60;/a&#62;
 $mail_To = $email;
 $mail_Subject = &#38;quot;HTTP ERROR&#38;quot;;
 $mail_Body = $errstr;//error string from fsockopen
 mail($mail_To, $mail_Subject, $mail_Body, $mail_From);
}
else//successful connect to url
{
 fputs ($fp, $header . $req);//send request
 while (!feof($fp)) //while not end of file
 {
  $res = fgets ($fp, 1024);//get response
  if (strcmp ($res, &#38;quot;VERIFIED&#38;quot;) == 0) //IF ALL PAYPAL IPN VARIABLES ARE VERIFIED PROCEED
  {
  	//PAYPAL IPN VARIABLES
	//Payment Information = $_POST[&#38;#39;&#38;#39;];
	$payment_type = $_POST[&#38;#39;payment_type&#38;#39;];
	$payment_date = $_POST[&#38;#39;payment_date&#38;#39;];
	$paymentDateTmp=strtotime($_POST[&#38;#39;payment_date&#38;#39;]);
	$ConvertedPaymentDate=strftime(&#38;#39;%Y-%m-%d %H:%M:%S&#38;#39;,$paymentDateTmp);
	if($_POST[&#38;#39;pending_reason&#38;#39;] == &#38;quot;&#38;quot;){
		$pending_reason = &#38;quot;none&#38;quot;;
	}else{
		$pending_reason = $_POST[&#38;#39;pending_reason&#38;#39;];
	}
	if($_POST[&#38;#39;reason_code&#38;#39;] == &#38;quot;&#38;quot;){
		$reason_code = &#38;quot;none&#38;quot;;
	}else{
		$reason_code = $_POST[&#38;#39;reason_code&#38;#39;];
	}
	$payment_status = $_POST[&#38;#39;payment_status&#38;#39;];
	$receipt_id = $_POST[&#38;#39;receipt_ID&#38;#39;];
	//Buyer Information
	$address_status = $_POST[&#38;#39;address_status&#38;#39;];
	$payer_status = $_POST[&#38;#39;payer_status&#38;#39;];
	$first_name = $_POST[&#38;#39;first_name&#38;#39;];
	$last_name = $_POST[&#38;#39;last_name&#38;#39;];
	$payer_email = $_POST[&#38;#39;payer_email&#38;#39;];
	$payer_id = $_POST[&#38;#39;payer_id&#38;#39;];
	$address_name = $_POST[&#38;#39;address_name&#38;#39;];
	$address_country = $_POST[&#38;#39;address_country&#38;#39;];
	$address_country_code = $_POST[&#38;#39;address_country_code&#38;#39;];
	$address_zip = $_POST[&#38;#39;address_zip&#38;#39;];
	$address_state = $_POST[&#38;#39;address_state&#38;#39;];
	$address_city = $_POST[&#38;#39;address_city&#38;#39;];
	$address_street = $_POST[&#38;#39;address_street&#38;#39;];
	$night_phone_a = $_POST[&#38;#39;night_ phone_a&#38;#39;];
	$night_phone_b = $_POST[&#38;#39;night_ phone_b&#38;#39;];
	$night_phone_c = $_POST[&#38;#39;night_ phone_c&#38;#39;];
	//Basic information
	$business = $_POST[&#38;#39;business&#38;#39;];
	$receiver_email = $_POST[&#38;#39;receiver_email&#38;#39;];
	$receiver_id = $_POST[&#38;#39;receiver_id&#38;#39;];
	$residence_country = $_POST[&#38;#39;residence_country&#38;#39;];
	$item_name = $_POST[&#38;#39;item_name&#38;#39;];
	$item_number = $_POST[&#38;#39;item_number&#38;#39;];//Will be used for team name
	$quantity = $_POST[&#38;#39;quantity&#38;#39;];
	$shipping = $_POST[&#38;#39;shipping&#38;#39;];
	$tax = $_POST[&#38;#39;tax&#38;#39;];
	//Currency and currrency exchange
	$mc_currency = $_POST[&#38;#39;mc_currency&#38;#39;];
	$mc_fee = $_POST[&#38;#39;mc_fee&#38;#39;];
	$mc_gross = $_POST[&#38;#39;mc_gross&#38;#39;]; //Full Payment amount before fee&#38;#39;s
	$mc_gross_1 = $_POST[&#38;#39;mc_gross_1&#38;#39;];
	//Transaction fields
	$txn_type = $_POST[&#38;#39;txn_type&#38;#39;];
	$txn_id = $_POST[&#38;#39;txn_id&#38;#39;];
	$notify_version = $_POST[&#38;#39;notify_version&#38;#39;];
	//Advanced and custom information
	$custom = $_POST[&#38;#39;custom&#38;#39;]; //Can either equal a session ID or the number 2
	if($_POST[&#38;#39;resend&#38;#39;] == &#38;quot;&#38;quot;){
		$resend = &#38;quot;none&#38;quot;;//amount of time that the IPN message was resent
	}else{
		$resend = $_POST[&#38;#39;resend&#38;#39;];
	}

	//Obviously you need to create a table with these fields number_of_payments,payment_date,element_2_1,element_2_2,element_5,custom_session_id,payment_amt,payment_status,pending_reason,reason_code,item_name,team_name,pp_receipt_id,times_resent
			$sql = &#38;quot;INSERT INTO payments (number_of_payments,payment_date,element_2_1,element_2_2,element_5,custom_session_id,payment_amt,payment_status,pending_reason,reason_code,item_name,team_name,pp_receipt_id,times_resent) VALUES (&#38;#39;$number_of_payments&#38;#39;, &#38;#39;$ConvertedPaymentDate&#38;#39;, &#38;#39;$first_name&#38;#39;, &#38;#39;$last_name&#38;#39;, &#38;#39;$payer_email&#38;#39;, &#38;#39;$custom&#38;#39;, &#38;#39;$mc_gross&#38;#39;, &#38;#39;$payment_status&#38;#39;, &#38;#39;$pending_reason&#38;#39;, &#38;#39;$reason_code&#38;#39;, &#38;#39;$item_name&#38;#39;, &#38;#39;$item_number&#38;#39;, &#38;#39;$receipt_id&#38;#39;, &#38;#39;$resend&#38;#39;)&#38;quot;;
			$insert = mysql_query($sql);

	//write to file
	$fh = fopen(&#38;quot;logipn.txt&#38;quot;, &#38;#39;a&#38;#39;);//open file and create if does not exist
	fwrite($fh, &#38;quot;\r\n/////////////////////////////////////////\r\n Verified \r\n&#38;quot;);//Just for spacing in log file
	fwrite($fh, $req);//write data
	fclose($fh);//close file

	//email construct
	//Email address to send emails:
	$to=&#38;quot;youremail@gmail.com&#38;quot;;//
    $from = &#38;quot;payments@yoursite.com&#38;quot;;
    $subject = &#38;quot;VERIFIED IPN Payment was Successful&#38;quot;;

    //begin of HTML message
    $message = &#38;quot;
		&#38;lt;html&#38;gt;
		  &#38;lt;body bgcolor=&#38;#39;#DCEEFC&#38;#39;&#38;gt;
			&#38;lt;center&#38;gt;
				&#38;lt;h4&#38;gt;Thank you $first_name for Your purchase.&#38;lt;/h4&#38;gt; &#38;lt;br&#38;gt;
				Below are the details fo your transaction.

				&#38;lt;strong&#38;gt;Date of payment&#38;lt;/strong&#38;gt; $payment_date new format $ConvertedPaymentDate

				&#38;lt;strong&#38;gt;Paypal Reciept#&#38;lt;/strong&#38;gt; &#38;lt;span style=&#38;#39;color:red;&#38;#39;&#38;gt;$receipt_id&#38;lt;/span&#38;gt; 

				&#38;lt;strong&#38;gt;Item Name:&#38;lt;/strong&#38;gt; $item_name

				&#38;lt;strong&#38;gt;Payment Amount:&#38;lt;/strong&#38;gt; $mc_gross

				&#38;lt;h4&#38;gt;Paypal Variable Test&#38;lt;/h4&#38;gt;

&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Date:&#38;lt;/strong&#38;gt; $ConvertedPaymentDate&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;First Name:&#38;lt;/strong&#38;gt; $first_name&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Last Name:&#38;lt;/strong&#38;gt; $last_name&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Buyers Email:&#38;lt;/strong&#38;gt; $payer_email&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;SessionID:&#38;lt;/strong&#38;gt; $custom&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Payment Status:&#38;lt;/strong&#38;gt; $payment_status&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Pending Reason Code:&#38;lt;/strong&#38;gt; $pending_reason&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Reason Code:&#38;lt;/strong&#38;gt; $reason_code&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Product:&#38;lt;/strong&#38;gt; $item_name&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Team Name:&#38;lt;/strong&#38;gt; $item_number&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;PayPal Receipt ID:&#38;lt;/strong&#38;gt; $receipt_id&#38;lt;/li&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;strong&#38;gt;Times IPN was resent:&#38;lt;/strong&#38;gt; $resend&#38;lt;/li&#38;gt;
			&#38;lt;/center&#38;gt;
		  &#38;lt;/body&#38;gt;
		&#38;lt;/html&#38;gt;&#38;quot;;
   //end of message
    $headers  = &#38;quot;From: $from\r\n&#38;quot;;
    $headers .= &#38;quot;Content-type: text/html\r\n&#38;quot;;

    //options to send to cc+bcc
    //$headers .= &#38;quot;Cc: [email]maa@p-i-s.cXom[/email]&#38;quot;;
    //$headers .= &#38;quot;Bcc: [email]email@maaking.cXom[/email]&#38;quot;;

    // now lets send the email.
    mail($to, $subject, $message, $headers);
  }
  else if (strcmp ($res, &#38;quot;INVALID&#38;quot;) == 0)
  {
	//write to file
	$fh = fopen(&#38;quot;logipn.txt&#38;quot;, &#38;#39;a&#38;#39;);//open file and create if does not exist
	fwrite($fh, &#38;quot;\r\n/////////////////////////////////////////\r\n Invalid \r\n&#38;quot;);//Just for spacing in log file
	fwrite($fh, $req);//write data
	fclose($fh);//close file

	$to=&#38;quot;youremail@gmail.com&#38;quot;;
    $from = &#38;quot;payments@yoursite.net&#38;quot;;
    $subject = &#38;quot;INVALID IPN therefore no entry was made into DB&#38;quot;;

		//Error messge when IPN&#38;#39;s are not verified
	$message2 = &#38;quot;
	&#38;lt;html&#38;gt;
	  &#38;lt;body bgcolor=&#38;#39;#DCEEFC&#38;#39;&#38;gt;
		&#38;lt;center&#38;gt;
			&#38;lt;h4&#38;gt;The IPN could not be verified and therefore was invalid.&#38;lt;/h4&#38;gt; &#38;lt;br&#38;gt;
			Below are the details.

			&#38;lt;strong&#38;gt;PayPal IPN Message&#38;lt;/strong&#38;gt; &#38;quot;.$req.&#38;quot;

		&#38;lt;/center&#38;gt;
	  &#38;lt;/body&#38;gt;
	&#38;lt;/html&#38;gt;&#38;quot;;
    $headers  = &#38;quot;From: $from\r\n&#38;quot;;
    $headers .= &#38;quot;Content-type: text/html\r\n&#38;quot;;

    //options to send to cc+bcc
    //$headers .= &#38;quot;Cc: [email]maa@p-i-s.cXom[/email]&#38;quot;;
    //$headers .= &#38;quot;Bcc: [email]email@maaking.cXom[/email]&#38;quot;;

    // now lets send the email.
    mail($to, $subject, $message2, $headers);
  }
 }
 fclose ($fp);//close file pointer
}

?&#38;gt;

&#38;lt;/body&#38;gt;
&#38;lt;/html&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; a5: Now go to &#60;a href=&#34;https://developer.paypal.com/&#34; rel=&#34;nofollow&#34;&#62;https://developer.paypal.com/&#60;/a&#62; and open a free dev account log in and on&#60;br /&#62;
     the left where you see test tools click it and then click&#60;br /&#62;
     &#34;Instant Payment Notification (IPN) Simulator.&#34; Specify you IPN listener in our&#60;br /&#62;
     case &#60;a href=&#34;http://www.yoursite.com/includes/paypal&#34; rel=&#34;nofollow&#34;&#62;www.yoursite.com/includes/paypal&#60;/a&#62; and choose web accept scroll down&#60;br /&#62;
     and click send. and if all goes well you will receive and email and the data should&#60;br /&#62;
     be in the DB as well.&#60;/p&#62;
&#60;p&#62;PLEASE NOTE: That this took me almost 3days to accomplish and you have to just carfully work the code I will be here to assist you but please have patients I will help. Just make sure to back all original files. thank you hopes this helps.&#60;/p&#62;
&#60;p&#62;Please Yuniar take my code and make it awesome for next build so we can have paypal and be very cool web devs thank :)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
