$insert = \"INSERT INTO event_tracker_table (event_name, event_location, location_number, event_creator_username, event_creator_email) VALUES (
You can get the auto_increment value with
$id = mysqli_insert_id($mysqli);
See mysqli_insert_id for more info.