I've been working on a tiny form fetch and insert to MySQL database system with PHP. I've made this type of code work before on a local WAMP server and now I'm trying to do it for real this time on my hosting, but I keep getting the 500 Error Internal Server error with the following code.
HTML:
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link rel="stylesheet" type="text/css" href="Main_Stylesheet.css">
    <script   src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <title>Contact</title>
</head>
<body>
    <nav class="navbar navbar-default" id="Body_Nav" style="margin-bottom: none;">
        <div class="container-fluid">
            <div class="navbar-header">
                <a class="navbar-brand" href="index.php">Filosofie in Amsterdam</a>
                <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#myNavbar">
                <span class="icon-bar"></span>
                <span class="icon-bar"></span>
                <span class="icon-bar"></span> 
                </button>
            </div>
            <div class="collapse navbar-collapse" id="myNavbar" >
            <ul class="nav navbar-nav">
                <li><a href="index.php">Home</a></li>
                <li><a href="bestel.php">Bestel</a></li>
                <li><a href="preview.php">Preview</a></li>
                <li class="active"><a href="contact.php">Contact</a></li>
                <li><a href="us.php">Over Ons</a></li>
                <li><a href="donate.php">Doneren</a></li>
            </ul>
            </div>
        </div>
    </nav>
    <div class="container-fluid" id="Contact_Main_Header">
        <div class="row">
            <div class="col-lg-12">
                <h1 class="text-center" id="Contact_Main_Header_H1">Contact</h1>
            </div>
        </div>    
    </div>
    <div class="container">
        <div class="row">
            <div class="col-lg-6">
                <h2 class="text-center">Informatie</h2>
            </div>
            <div class="col-lg-6">
                <h2 class="text-center">Nieuwsbrief</h2>
                <p class="text-justify">Op de hoogte zijn van voortgang of het laatste nieuws? Geef je dan op via de nieuwsbrief hieronder:</p>
                <form method="post" action="formvalid.php">
                    <div class="form-group">
                        <label for="Contact_Form_Email">Email Adres:</label>
                        <input type="email" name="Contact_Form_Email" class="form-control" id="Contact_Form_Email" placeholder="Plaats hier je email adres" required>
                    </div>    
                    <div class="form-group">
                        <label for="Contact_Form_First_Name">Voornaam:</label>
                        <input type="text" name="Contact_Form_First_Name" class="form-control" id="Contact_Form_First_Name" placeholder="Plaats hier je voornaam" required>   
                    </div>
                    <div class="form-group">
                        <label for="Contact_Form_Last_Name">Achternaam:</label>
                        <input type="text" name="Contact_Form_Last_Name" class="form-control" id="Contact_Form_Last_Name" placeholder="Plaats hier je voornaam" required>
                    </div>    
                    <button type="submit" class="btn btn-default">Verzenden</button>
                </form>
            </div>
        </div>
    </div>
</body>
</html>
And the PHP:
 <?php
 $Server = "localhost";
 $Username = "filoso1q_admin";
 $PW = "Foxtrot15";
 $DB = "filoso1q_nieuwsbrief";
 $connection = mysqli_connect($Server, $Username, $PW, $DB);
 if($connection = false) {
     die("Error: " . mysqli_error_connect());
 }  
 $Email = $_POST("Contact_Form_Email");
 $First_Name = $_POST("Contact_Form_First_Name");
 $Last_Name = $_POST("Contact_Form_Last_Name");
 $sql = "INSERT INTO `Users` ('User_ID', 'Email', 'First_Name', 'Last_Name')  VALUES (NULL, '$Email', '$First_Name',  '$Last_Name');";
 mysqli_query($sql);
 mysqli_close($connection);
 ?>
I'm pretty certain that some of this should work, but for some reason I can only run queries in PHPmyadmin itself. The host I have uses the Cpanel webadmin for the webserver.
 
     
    