I am trying to run a query with a couple of conditions, unfortunately they are giving me grief.
What I am after is the following:
if text has a title then skip and continue onto the next
if text has a null title, then get that information if status=allowed
status, text and title are all text fields, this is what I have so far
PHP Code:
$result = mysql_query("SELECT username,title,text,date,userid,status
FROM table_text
ORDER BY date desc
LIMIT 5" ) or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
can anyone offer some guidance please?