Much thanks to everyone, I learned alot dealing with that little bit and still have much to learn.
Got another question while I'm here.
Trying to implode (change Array into String)
I know that it is my lack of knowing proper commands and syntax but here's what I'm doing.
I have a second table with a list of names, emails and states. What happens is based on the state the user inputs I do a search of the 2nd table to get ALL the email addresses associated with that state. No Problem here.
// Code
$Query = "SELECT * from $TableName2 where cstate = '$Array[State]'";
$Result = mysql_db_query ($DBName, $Query, $Link);
while ($Row = mysql_fetch_array ($Result)) {
print ("$Row[cemail]<br>");
}
//END CODE
This works just fine and shows me all the emails that it has retrieved from the database. I now want to email all of these people but can not get the $Row[cemail] to implode. My first guess is that $Row[cemail] is not an Array ... yet, OR I need to know the sperator that naturally comes back in the results