I am running the following code:
// selects Col EIN from table and gives one result back with only the EIN col
$query_s = "SELECT EIN FROM irs_rawdata LIMIT 0,1";
$result_s = mysql_query($query_s) OR die("Sorry, unable to to select ein for the first record! <br /> ". mysql_error());
$record = mysql_query($result_s['EIN']);
echo $record." -- Testing see if result shows with EIN";
when I run this query it does not show the results, I don't see any thing wrong with it, am I not calling the var up right?
Thanks ahead of time!
Christopher