Everything works expect the mysqli_query, the page dies error.
Does anyone have any idea why this could be?
$fileNameNew = uniqid('', true).".".$fileActualExt;
                $fileDestination = 'uploads/'.$fileNameNew;
                move_uploaded_file($fileTmpName, $fileDestination);
            
            $cid = $_GET['cid'];
            $scid = $_GET['scid'];
            
            $insert = mysqli_query($con, "INSERT INTO topics (`category_id`, `subcategory_id`, `author`, `title`, `content`, `date_posted`, `image`)
                                      VALUES ('".$cid."', '".$scid."', '".$_SESSION['username']."', '".$topic."', '".$content."', NOW()), '".$fileNameNew."';");
                                      
            if ($insert) {
                header("Location: /origo/topics.php?cid=".$cid."&scid=".$scid."");
            } else {
            die("error");
            }
Thank you
