I got old php code ;)
PHP Code:
echo '
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="your email@hotmail.com">
<input type="hidden" name="item_name" value="Ad: 50">
<input type="hidden" name="amount" value="1.50">
<input type="hidden" name="no_shipping" value="0">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="MX">
<input type="hidden" name="bn" value="PP-BuyNowBF">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but6.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
';
You can change these 3 inputs:
PHP Code:
<input type="hidden" name="business" value="your email@hotmail.com">
change the value to your email of your paypal account.
<input type="hidden" name="item_name" value="Ad: 50">
The name of your sell
<input type="hidden" name="amount" value="1.50">
Amount the payment is, like its now 1.50
Hope this helps <3