I am * wildcard in my localhost phpMyAdmin 2.5.3.
Problem comes if I use it online in my server using phpMyAdmin - 2.9.0.2.
It only accepts if I indicate all field names one by one. heres the code:
<? $sql = "SELECT * FROM tbl_news WHERE news_id = $news_id";
It only works if I use:
<? $sql = "SELECT content, picsmall, piclarge, news_id, title, dt_created FROM tbl_news WHERE news_id = $news_id";
What shall I replace * so I dont have to write all of my field names in the query?