fname $row->lname
\n'; }" class="related-a">
114. What will happen if the following code is executed? $resultSet = mysql_query('SELECT fname, lname FROM customers') for ($nIndex = 0; $nIndex < mysql_num_rows($resultSet) ; $nIndex++) { if (!mysql_data_seek($resultSet, $nIndex)) { echo "Cannot seek to row $nIndex\n"; continue; } if(!($row = mysql_fetch_object($resultSet))) continue; echo '$row->fname $row->lname
\n'; }