Hi,
I have this SQL statement
select count(*) from Articles natural join Composes article_id where abstract like '%DSS%' or title like '%DSS%' or first_name like '%DSS%' or last_name like '%DSS%';
When i run it on mysql client, it give some matching results back. However when i use this statement in PHP...
i.e. $result = mysql_query($query);
and $query is that SQL statement.
PHP gives an error that the argument is invallid. Why is that? How do i fix it? Thanks a lot