Hi Atli,
I you help me change the mysqli to mysql?


Code:
<?php
// Check if a file has been uploaded
if(isset($_FILES['uploaded_file'])) {
    // Make sure the file was sent without errors
    if($_FILES['uploaded_file']['error'] == 0) {
        // Connect to the database
        $dbLink = new mysqli('localhost', 'root', '###', '###');
        if(mysqli_connect_errno())
...