Ok, the error I am receiving is:
"Fatal error: Cannot use string offset as an array in"
I know the database query is working and passing a value.... I believe its some issue with PHP5 but I can't find the answer anywhere.... and anyone help??
$card[] = array(
id => $row['id'],
name => $row['name'],
bt_period => $row['bt_period'],
transfer_rate => $row['transfer_rate'],
fee => ($row['fee'] + $row['reward_fee']),
rewards => $row['rewards'],
interest_free => $row['interest_free'],
image => $row['img'],
url => $row['link']
);