i working on Authorize.net gateway i need to create below array for itemized bill
$sql= "select * from shop where cusid = '1'";
$sqlexc= mysql_query($sql) or die(mysql_error());
$line_items = array();
while ($title = mysql_fetch_array($sqlexc)) {
$line_items[] = ('Coupon',' $title[6]', '1', '0.99', 'Y');
}
how to create below kind of array
/* $line_items = array(
"Coupon1','description','2','10.99','Y'",
"Coupon2','description','2','10.99','Y'",
"Coupon3','description','2','10.99','Y'",);*/