Ok guys, dont kill me here. I could be way off.
But here is whats going on.
my graph code requires this:
$data = array(
'Jan' => 12,
'Feb' => 25,
'Mar' => 0,
'Apr' => 7,
'May' => 80,
'Jun' => 67,
'Jul' => 45,
'Aug' => 66,
'Sep' => 23,
'Oct' => 23,
'Nov' => 78,
'Dec' => 23
);
I am inserting this. And if i do it alone it works, in my graph script it does not.
$data = array(
while ($row = mysql_fetch_array($rsQuerySignups))
{
"'".$row['month']. "' => " .$row['COUNT']."<br>"
}
);
Any ideas? Really about to lose it!! 🙂🙂