Having problems putting it down in Notepad just how to confront the following problem.
I have a database table called tablename that I want to output into a html table just one of the columns called name and I want to skip the rows that has another column called other_name as NULL
Query looks like this.
$result=mysql_query("SELECT * FROM tablename WHERE other_name IS NOT NULL");
Right, I know how to set up loops and such and have done so but not gonna take up space here to show it as it seems unnecessary. What I want is a html table to display three records of the name in one single table row or column(suspecting table row will be easier, but would prefer column.), one in each field and if there are more, create another table row/column and continue with new 3 fields.
Any takers on this?
Thank you in advance.