I can't seem to figure out what the problem is here:
This works:
$chart['chart_data'] = array ( array ( "", "W10098940", "W10133981-50", "W10098960", "W10100388" ), array ( "TESTING ONLY", 83, 11, 3, 3 ), );
This doesn't:
$tableData = 'array ( array ( "", "W10098940", "W10133981-50", "W10098960", "W10100388" ), array ( "TESTING ONLY", 83, 11, 3, 3 ), );';
$chart['chart_data'] = $tableData;
Ignore the contents of what I am trying to assign to variable or the chart bit, I'm just wondering why these two statements don't do the exact same thing??