Lets say I want to call a page by this foo.php?page=compose. I want all elements of compose to come form a database. How would I go about and call those elements. My database has a table called images with fields page uid and picname. Her is my code to call certain images so far.
$sql= \\"SELECT picname FROM images ORDER BY uid\\";
$result =@($sql, $connection) or die(\\"Couldnt excecute query.\\");
while ($row = mysql_fetch_array($result)) {
$picname =$row[\\'picname\\'];
I guees the probem i run into is this part
$sql= \\"SELECT picname FROM images ORDER BY uid\\";
I do;nt know quite what to order or dslect them form the page.