Here's all the code for order.php
I didn't write it... I had a friend help who is now unavailable.
--
<?php
$str = $_POST['album'];
$album = strtok($str, ";");
$dl = strtok(";");
$price = $_POST['price'];
if($price == 0){?>
<META HTTP-EQUIV="Refresh" CONTENT="1;URL=<?php echo $dl ?>">
<html><head></head>
<body>
<centeR><P><BR><P><BR><P><BR><P><BR><P><BR><P><BR>
<FONT FACE=TAHOMA SIZE=2><H2><b>LOADING</B></center></body></html>
<?php
}else{
?>
<html>
<head>
</head>
<body>
<center><P><BR><P><BR><P><BR><P><BR><P><BR><P><BR>
<form target="paypal" action="
https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="image" src="
https://www.paypal.com/en_US/i/btn/x-click-but22.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">
<input type="hidden" name="add" value="1">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="
mptrecords@hotmail.com">
<input type="hidden" name="item_name" value="<?php echo $album?>">
<input type="hidden" name="amount" value="<?php echo $price?>">
<input type="hidden" name="shipping" value="0.00">
<input type="hidden" name="page_style" value="PayPal">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="return" value="<?php echo $dl?>">
<input type="hidden" name="cancel_return" value="
http://www.moshpittragedy.com">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="tax" value="0.00">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="bn" value="PP-ShopCartBF">
<!-- input type="submit" value="Place Order" -->
</form>
</body>
</html>
<?php } ?>