<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: I Have A Godaddy Acct, Wordpress Acct And Want To Sell Stuff Online But Dont Want The Cost Of An Ssl.  How?</title>
	<atom:link href="http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 02 Mar 2010 23:13:58 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: j k</title>
		<link>http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html/comment-page-1#comment-2745</link>
		<dc:creator>j k</dc:creator>
		<pubDate>Fri, 03 Jul 2009 20:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html#comment-2745</guid>
		<description>Check and see if Godaddy offers a shared ssl certificate. If they do, it&#039;s available to all on the server for free.</description>
		<content:encoded><![CDATA[<p>Check and see if Godaddy offers a shared ssl certificate. If they do, it&#8217;s available to all on the server for free.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: just "JR"</title>
		<link>http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html/comment-page-1#comment-2744</link>
		<dc:creator>just "JR"</dc:creator>
		<pubDate>Fri, 03 Jul 2009 16:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.savagehost.com/i-have-a-godaddy-acct-wordpress-acct-and-want-to-sell-stuff-online-but-dont-want-the-cost-of-an-ssl-how.html#comment-2744</guid>
		<description>You do NOT need SSL, unles you are a bank or have a real merchant account.
SSL requires certification, which is a lot of paper work and quite expensive (to renew every year as well!)
If you want to sell anything, just use PayPal in its simple form.  You don&#039;t ned to ask private data from any of your customer (NEVER do that, unless you are certified).
Here is a simple piece of code:
&lt;html&gt;
&lt;head&gt;
&lt;?php
function process_payment()
{
if ($_POST[&#039;payment_status&#039;] == &quot;Completed&quot;)
return(&quot;Thank you for your payment of &quot;.$_POST[&#039;mc_gross&#039;].&quot; &quot;.$_POST[&#039;mc_currency&#039;]);
else
return(&quot;Sorry, payment failed.&quot;);
}
function call_paypal()
{
$PPbusiness = &quot;my_paypal@yahoo.com&quot;; // YOUR PAYPAL ACCOUNT
$PPreturn = &quot;http://www.yoursite.com/paypal.php&quot;; // ENTER THE FULL URL OF YOUR SITE
$PPcancel = &quot;http://www.yoursite.com/paypal.php&quot;; // ENTER THE FULL URL OF YOUR SITE
$Sess = &quot;your session number or anything you want to get back&quot;;
$txt = &quot;&lt;form name=&#039;spaypal&#039; action=&quot;https://www.paypal.com/uk/cgi-b... method=&quot;post&quot;&gt;&quot;;
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;cmd&quot; value=&quot;_xclick&quot; /&gt;&#039;;
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;business&quot; value=&quot;&#039;.$PPbusiness.&#039;&quot; /&gt;&#039;; 
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;item_name&quot; value=&quot;Global Purchase/Payment&quot; /&gt;&#039;;
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;currency_code&quot; value=&quot;EUR&quot; /&gt;&#039;;
// CHANGE THIS &quot;EUR&quot; IN THE CURRENCY OF YOUR PAYMENT
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;return&quot; value=&quot;&#039;.$PPreturn.&#039;&quot; /&gt;&#039;; 
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;cancel_return&quot; value=&quot;&#039;.$PPcancel.&#039;&quot; /&gt;&#039;; 
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;invoice&quot; value=&quot;&#039;.$Sess.&#039;&quot; /&gt;&#039;;  
$txt .= &#039;&lt;input type=&quot;hidden&quot; name=&quot;rm&quot; value=&quot;2&quot; /&gt;&#039;;
// IMPORTANT: FORCES PAYPAL TO RETURN USING $_POST INSTEAD OF $_GET!
$txt .= &quot;Enter here the amount to pay:&lt;rb /&gt;&quot;;
$txt .= &#039;&lt;input type=&quot;text&quot; name=&quot;amount&quot; id=&quot;amount&quot; /&gt;&#039;;  
// TOTAL TO PAY
$txt .= &#039;&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Proceed&quot; /&gt;&#039;;
$txt .= &quot;&lt;/form&gt;&quot;;
return($txt);
}
?&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;?php
if (isset($_POST[&#039;mc_gross&#039;]))
echo (process_payment());
else if (!isset($_POST[&#039;submit&#039;]))// first time around
echo (call_paypal());
unset($_POST);
?&gt;
&lt;/body&gt;
&lt;/html&gt;
(change &lt;rb /&gt; with its real form, stupid editor!)</description>
		<content:encoded><![CDATA[<p>You do NOT need SSL, unles you are a bank or have a real merchant account.<br />
SSL requires certification, which is a lot of paper work and quite expensive (to renew every year as well!)<br />
If you want to sell anything, just use PayPal in its simple form.  You don&#8217;t ned to ask private data from any of your customer (NEVER do that, unless you are certified).<br />
Here is a simple piece of code:<br />
<html><br />
<head><br />
< ?php<br />
function process_payment()<br />
{<br />
if ($_POST['payment_status'] == "Completed")<br />
return("Thank you for your payment of ".$_POST['mc_gross']." ".$_POST['mc_currency']);<br />
else<br />
return("Sorry, payment failed.");<br />
}<br />
function call_paypal()<br />
{<br />
$PPbusiness = "my_paypal@yahoo.com"; // YOUR PAYPAL ACCOUNT<br />
$PPreturn = "http://www.yoursite.com/paypal.php"; // ENTER THE FULL URL OF YOUR SITE<br />
$PPcancel = "http://www.yoursite.com/paypal.php"; // ENTER THE FULL URL OF YOUR SITE<br />
$Sess = "your session number or anything you want to get back";<br />
$txt = "<br />
<form name='spaypal' action="https://www.paypal.com/uk/cgi-b... method="post">&#8220;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="cmd" value="_xclick" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="business" value="'.$PPbusiness.'" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="item_name" value="Global Purchase/Payment" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="currency_code" value="EUR" />&#8216;;<br />
// CHANGE THIS &#8220;EUR&#8221; IN THE CURRENCY OF YOUR PAYMENT<br />
$txt .= &#8216;<br />
<input type="hidden" name="return" value="'.$PPreturn.'" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="cancel_return" value="'.$PPcancel.'" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="invoice" value="'.$Sess.'" />&#8216;;<br />
$txt .= &#8216;<br />
<input type="hidden" name="rm" value="2" />&#8216;;<br />
// IMPORTANT: FORCES PAYPAL TO RETURN USING $_POST INSTEAD OF $_GET!<br />
$txt .= &#8220;Enter here the amount to pay:<rb />&#8220;;<br />
$txt .= &#8216;<br />
<input type="text" name="amount" id="amount" />&#8216;;<br />
// TOTAL TO PAY<br />
$txt .= &#8216;<br />
<input type="submit" name="submit" value="Proceed" />&#8216;;<br />
$txt .= &#8220;&#8220;;<br />
return($txt);<br />
}<br />
?><br />
</head><br />
<body><br />
< ?php<br />
if (isset($_POST['mc_gross']))<br />
echo (process_payment());<br />
else if (!isset($_POST['submit']))// first time around<br />
echo (call_paypal());<br />
unset($_POST);<br />
?><br />
</body><br />
</html><br />
(change <rb /> with its real form, stupid editor!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
