<?
// Define the settings of the database you will be using;
// a table called "orders" will be created.
$host = "localhost";
$username = "";
$password = "";
$database = "";
// The primary email address of your paypal account
define("BUSINESS","");
// The name of your shop
define("SHOP_NAME","");
// The name of the "item"
define("ITEM_NAME","Your Order");
// The date you will start to process payments
// with this script - so that people can't
// post old transations and get their stuff twice
define("START_DATE", "00:00:00 June 1, 2004 PST");
// Only accept payments made through website
define("TXN_TYPE","web_accept");
// Define the URLs paypal will redirect you to after
// payment is made or cancelled
define("SUCCESS","http://yourdomain/path/to/success.php");
define("FAILED","http://yourdomain/path/to/failed.php");
?>