What does Resource Id #4 stand for in php when you run this a script resembling this:
$dbs = mysql_connect('localhost', 'me', 'mypass')
OR die('Couldn\'t connect to the database: '.mysql_error());
@mysql_select_db('my_db') OR
die('Could not connect to the database: '.mysql_error());
$query_result = mysql_query("SELECT * FROM mytable;");
Then echoing query_result? I know what you have to do
mysql_fetch_array($query_result);
to get the contents of said query's result, but I want to know what Resource Id #4 actually means.