One for Pending:
<?php
......
// request the text of all the info
$result = mysql_query("SELECT author, url, language FROM table WHERE status = 'pending'");
while($fetch = mysql_fetch_array($result))
{
// define vars
$author = $fetch["author"];
$url = $fetch["url"];
$language = $fetch["language"];
......
}
?>
And for Complete
<?php
......
// request the text of all the info
$result = mysql_query("SELECT author, url, language FROM table WHERE status = 'complete'");
while($fetch = mysql_fetch_array($result))
{
// define vars
$author = $fetch["author"];
$url = $fetch["url"];
$language = $fetch["language"];
......
}
?>