CS 55.13

PHP Programming

Little League Newsletter



Current mailing list for the Newsletter. Register, or login for other options.

'; while($row = mysqli_fetch_array($result)){ // Display the registered users. echo ''; echo $row['first_name'] . ' '; if(is_file(LL_UPLOADPATH . $row['pic']) && filesize(LL_UPLOADPATH . $row['pic']) > 0){ echo 'User pic'; } else{ echo ''; } } echo ''; //Close the connection to the database. mysqli_close($dbc); ?>