I have the following code
mysql_select_db('example_db', $r);
$result1 = mysql_query('SELECT content FROM `example_table` WHERE 1') or die ('"bad times an error!"' . mysql_error() . '');
echo $result1;
which returns "Resource ID #114". What does this mean? The info I'm trying to pull is a base64 & json encoded twitter feed stored in a DB. I've tried adding the base64 & json decoding, but get an error stating that it's a resource and not a string, so I assume it's trying to parse "Resource ID #114" rather than the actual feed itself.
Any help is appreciated!