Posted: Fri Nov 21, 2003 3:54 am
wow i really appreciate you guys helping me out with this, im actually learning some php. anyways heres the code you wanted to see.....constant.php
<?php
$dbhost="localhost";
$dblogin="mylogin";
$dbpass="mypass";
$dbname="mydb";
$trans_status=array(1=>"saved", 2=>"ordered");
$backorder_status=array("not sent", "sent", "accepted");
$mesec=array('01' => 'January', '02' => 'February', '03' => 'March', '04' => 'April', '05' => 'May', '06' => 'June', '07' => 'July', '08' => 'August', '09' => 'September', '10' => 'October', '11' => 'November', '12' => 'December');
$cr_card_types=array( "VISA", "Master Card", "American Express", "Discover", "not in list");
?>