Hi Folks,
I have managed to get a page to populate reflecting data from a table in mysql.
I have also managed to find this phph that will help me to exclude rows that do not have data.
I understand that my phph file has 2 equalities [WHERE//AND], and i have several fields.
I need to insert the Code below, after the while() statement, and that is part of my difficulty - where does the while() statement end in my php file?
PHP Code:
PHP Code:
I have several if statements but am not sure which if statement I should be using? to paste the following:
PHP Code:
I have managed to get a page to populate reflecting data from a table in mysql.
I have also managed to find this phph that will help me to exclude rows that do not have data.
I understand that my phph file has 2 equalities [WHERE//AND], and i have several fields.
I need to insert the Code below, after the while() statement, and that is part of my difficulty - where does the while() statement end in my php file?
PHP Code:
if($row['d32'] != '' && $row['d41'] != '' && $row['d42'] != '' && $row['d51'] != '' && $row['d52'] != '' && $row['d61'] != '' && $row['d62'] != '' && $row['d71'] != '' && $row['d72'] != '' && $row['d81'] != '' && $row['d82'] != '' && $row['d91'] != '' && $row['d92'] != '' && $row['d101'] != '' && $row['d111'] != '' && $row['d112'] != '' && $row['d121'] != '' && $row['d122'] != '' && $row['d131'] != '' && $row['d132']) {
PHP Code:
echo '</td></tr>';
I have several if statements but am not sure which if statement I should be using? to paste the following:
PHP Code:
}
Comment