I have a database running on my server with phpmyadmin but I can't connect with it. Here is an example:
$user_name = "xxxxx";
$password = "xxxxx";
$database = "xxxxx";
$host = "db.xxxx.nl";
$db_handle = mysql_connect($host, $user_name, $password);
$db_found = mysql_select_db($database);
But this doesn't seem to work. If I try to insert some values into a table it still stays empty.
$sql = "INSERT INTO tbl_forum 
        ( 
                    title, 
                    name, 
                    content, 
                    lastname, 
                    post_image 
        ) 
        VALUES 
        ( 
                    '{$_POST['contactsubject']}', 
                    '{$_POST['contactname']}', 
                    '{$_POST['contactmessage']}', 
                    '{$_POST['contactlastname']}', 
                    '{$_FILES["contactBrowse"]["name"]}' 
        )";
Am I doing something wrong?
 
     
     
    