jbcoreawards TexStarOrderReport.php mysql_result needs to first be changed to mysqli_fetch_row. - orderphotos2018V.php - TexStarAlbumReport.php - TexStarAllAlbumList.php - TexStarCustomer-find.inc - TexStarGatherDeluxePosterPhotos.php - TexStarGatherOneAlbum.php - TexStarGatherOneAlbumForBackup.php - TexStarGatherPosterPhotos.php - TexStarOrderPhotosReport.php Replace "mysql_select_db(" with "mysqli_select_db($con," Replace mysqli_query($conn, " with "mysqli_query($con," Replace "mysql_" with "mysqli_" mysqli_fetch_array -> mysqli_fetch_array( $result, $type) mysqli_fetch_assoc -> mysqli_fetch_assoc( mysqli_num_rows -> mysqli_num_rows( $result) mysql_query -> mysqli_query( $link, $query) mysql_select_db - > mysqli_select_db( $link, $database) mysqli_fetch_row -> mysqli_fetch_row( $result) mysqli_insert_id -> mysqli_insert_id( $link) mysqli_close -> mysqli_close($link) mysql_affected_rows -> mysqli_affected_rows($link) mysqli_data_seek -> mysqli_data_seek( $result, $offset) mysql_errno -> mysqli_errno( $link) mysql_error -> mysqli_error( $link) mysql_fetch_lengths -> mysqli_fetch_lengths( $result ) mysql_fetch_object -> mysqli_fetch_object( $result, $class, $params) mysql_field_seek -> mysqli_field_seek( $result, $number) mysql_free_result -> mysqli_free_result(result) mysql_get_client_info -> mysqli_get_client_info( $link) mysql_get_host_info -> mysqli_get_host_info( $link) mysql_get_proto_info -> mysqli_get_proto_info( $link) mysql_get_server_info -> mysqli_get_server_info( $link) mysql_info -> mysqli_info( $link) mysql_ping -> mysqli_ping( $link) mysql_real_escape_string -> mysqli_real_escape_string( $link) mysql_set_charset -> mysqli_set_charset( $link, $charset) mysql_stat -> mysqli_stat( $link) mysql_thread_id -> mysqli_thread_id( $link)