What I am trying to do should be simple, I just think that I am having a brain fart.
$result2 = mysql_query("SELECT description FROM sub_service")
or die ("Invalid query");
//I want to pull the results of the above query into a varible like below so the a,b,c part will be whats pulled from the db.
$alpha = ("a","b","c");
What do I need to do? I have tried a ton of diffrent ways and haven't gotten the resutls that I want. I am sure I am overlooking something.
Thanks for the help in advance.