Shorten A URL

 

PayPal Price Increment Script

This is a simple Paypal price increment script will change the display price on your web page every time the page is loaded depending on how frequently you want the price to change.

Current price: $432752.59

 

Source code used to generate this page
<html>
<head>
<title>Your Price Page</title>
</head>
<body>
<center>
<table>
<tr>
<td>
<p><font size="6" face="Georgia"><b>Current price: $<?php $price 0.01 floor((time() - filemtime(__FILE__)) / 1); echo (($price 1000000000) ? 1000000000 $price); ?></b></font></p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="youremail@example.com">
<input type="hidden" name="item_name" value="Test">
<input type="hidden" name="amount" value="<?php $price 0.01 floor((time() - filemtime(__FILE__)) / 1); echo (($price 1000000000) ? 1000000000 $price); ?>">
<input type="hidden" name="return" value="http://www.example.com">
<input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD">
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but5.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
</td>
</tr>
</table>
</body>
</html>

Powered by GoWWWGo