<? /* * Exemplar Web hosting * http://www.exemplar.biz * * Title: PHP Online Invoice System * Version: 2.0 * Author: Exemplar * Date: 01-01-2006 * Notice: Edit the information below to your * Company Information. Take care to put information * between the "" (quote marks). Very important. */ // Your PHP Invoice URL to where the files are. $site = "http://www.your_domain.com/invoices"; // Database Information $database = "db name"; // Database Name $user = "db user name"; // DB user name $pass = "db user password"; // DB user password $hostname = "localhost"; // Default is localhost // Your Company Information $yourcompany = "Company Name Here"; $c_address = "456 Your street"; $c_city = "Your City"; $c_state = "Your State"; $c_zip = "Your Zip"; $c_companyphone = "1-555-5555"; // Company Logo for Invoice $uselogo = "yes"; // display a logo image use "no" if you do not want a logo image $companylogo = "logo.jpg"; // the one shown is 250 width X 100 height // Company or Your Email Address $youremail = "hide@address.com"; $powerby = "your domain name here"; // --NO http://-- needed, just the domain name!! // Currency Symbol & Tax Rate $taxrate = 7.5; // Tax rate $currency = "$"; // Currency symbol // Company Payee $payee = "John Doe"; // this is who they will make checks payable to // Payments are due within how many days? $due = "30 days"; // you can also set this to words, like "Immediately" or "A.S.A.P" // Your Paypal email account information $usepaypal = "yes"; // put no between the " " to not show paypal button $paypal = "hide@address.com"; // YOUR_PAYPAL_EMAIL $paypal_curr = "USD"; // PayPal Currency Code for your Country $paypal_lang = "US"; // Sets the locale (language) of the PayPal login page $button = "inc/pay.gif"; //Set to "NO" if you dont want a Thank You email sent after an invoice is paid. $emailoption = 'yes'; // Set main table and main cell width, height and border color $main_table_width = "100%"; $main_table_height = "100%"; $main_table_bordercolor = "800000"; // just need the color number ex.. black is 000000 $main_table_borderwidth = "2"; $main_cell_bordercolor = "000000"; $main_cell_borderwidth = "2"; // set footer border width and color $footer_cell_borderwidth = "2"; $footer_cell_bordercolor = "000000"; ?>