$content_mysql = mysql_query("SELECT id, content FROM articles ");
I want to save content from mysql to an array, like:
// In the database table:
id: 1 content: oxigen
id: 2 content: hidrogen
//In the php array
echo $array['1']; //It is says: oxigen
echo $array['2']; //It is says: hidrogen