I am currently attempting to create a registration script to enter registration information into my UserAccount table. Below is my connection:
You have a typo
mysql_query($insert); should be mysqli_query($insert);
mysql_query($insert);
mysqli_query($insert);
You can't make mysql queries onto a mysqli connection.