Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4038330
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T12:27:34+00:00 2026-05-20T12:27:34+00:00

I have an error inserting some content in a Postgresql Database when I don’t

  • 0

I have an error inserting some content in a Postgresql Database when I don’t attach any file. I have a form with some inputs that I insert in one table and one input to upload multiple files and some info to other table.

The error with empty upload input:

Fatal error: Call to a member function prepare() on a non-object in C:\wamp\www\arn\upload.php on line 60

LINE 60: $sth = $dbh->prepare(“INSERT INTO arn_info (arn , modelos , familias , problema , solucao) VALUES ( ? , ? , ? , ? , ? )”);

MY FORM:

<?php
$sth = $dbh->query("SELECT * FROM arn_info");

    $sth->setFetchMode(PDO::FETCH_ASSOC);

    if($sth){
        $row = $sth->fetch();

        echo '<form method="post" action="upload.php" enctype="multipart/form-data" >';
        echo '<input type="hidden" name="id" />';
        echo 'ARN: <input type="text" name="arn" /><br />';
        echo 'Familias: <input type="text" name="familias" /> <br />';
        echo 'Problema: <textarea class="tinymce" name="problema" cols="30" rows="10">';
        echo '</textarea>';
        echo 'Solução: <textarea class="tinymce" name="solucao" cols="30" rows="10">';
        echo '</textarea>';

        echo '<input type="hidden" name="MAX_FILE_SIZE" value="2000000">';
        echo 'Anexos: <input name="userfile[]" type="file" class="multi" id="userfile">';

        echo '<input name="upload" type="submit" class="box" id="upload" value="ADD ARN">';
        echo '</form>';

     }
?>

MY UPLOAD AND INSERT PHP:

<?php

if(isset($_POST['upload']))
{
    $uploadDir = 'uploads/';

    $fileArn = $_POST['arn'];
    $id = $_POST['id'];
    $arn = $_POST['arn'];
    $modelos = $_POST['modelos'];
    $familias = $_POST['familias'];
    $problema = $_POST['problema'];
    $solucao = $_POST['solucao'];

    foreach ($_FILES["userfile"]["error"] as $key => $error)
    {      
        if ($error == UPLOAD_ERR_OK)
        {           
            $fileName = $_FILES['userfile']['name'][$key];
            $tmpName = $_FILES['userfile']['tmp_name'][$key];
            $fileSize = $_FILES['userfile']['size'][$key];
            $fileType = $_FILES['userfile']['type'][$key];

            $folderName = $_POST['arn'] . "/";

            if (!file_exists ( $uploadDir . $folderName )) {
            $arnFolder = mkdir($uploadDir . $folderName, 0777);
            }

            $filePath = $uploadDir . $folderName  . basename($fileName);

            $result = move_uploaded_file($tmpName, $filePath);

            if (!$result) {
            echo "Error adding Files";
            exit;
            }

            include 'includes/connection.php';

            $fileName = addslashes($fileName);
            $filePath = addslashes($filePath);

            if (!file_exists ($fileName)) {

            $info = array ($fileName , $fileSize , $fileType , $filePath , $fileArn );

            $sth = $dbh->prepare("INSERT INTO upload2 (name, size, type, path , id_arn ) VALUES ( ? , ? , ? , ? , ? )");
            $sth->execute($info);
            }
        }

        } //END OF LOOP

        $parametros = array($arn,$modelos,$familias,$problema,$solucao);

        $sth = $dbh->prepare("INSERT INTO arn_info (arn , modelos , familias , problema , solucao) VALUES ( ? , ? , ? , ? , ? )");

        $sth->execute($parametros); 

        if($sth){
            header("location: admin.php?inserted=1");
        }
}
?>

IF I Attach One or More Files All Works Fine !

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T12:27:35+00:00Added an answer on May 20, 2026 at 12:27 pm

    My bad, the above is good general advice, but not the cause of your issue. The issue is caused by the fact that you include the connection inside the loop which will never be executed if there are no file uploads. Here’s the fix:

    <?php
    
    include 'includes/connection.php';
    
    if(isset($_POST['upload']))
    {
        $uploadDir = 'uploads/';
    
        $fileArn = $_POST['arn'];
        $id = $_POST['id'];
        $arn = $_POST['arn'];
        $modelos = $_POST['modelos'];
        $familias = $_POST['familias'];
        $problema = $_POST['problema'];
        $solucao = $_POST['solucao'];
    
        foreach ($_FILES["userfile"]["error"] as $key => $error)
        {      
            if ($error == UPLOAD_ERR_OK)
            {           
                $fileName = $_FILES['userfile']['name'][$key];
                $tmpName = $_FILES['userfile']['tmp_name'][$key];
                $fileSize = $_FILES['userfile']['size'][$key];
                $fileType = $_FILES['userfile']['type'][$key];
    
                $folderName = $_POST['arn'] . "/";
    
                if (!file_exists ( $uploadDir . $folderName )) {
                $arnFolder = mkdir($uploadDir . $folderName, 0777);
                }
    
                $filePath = $uploadDir . $folderName  . basename($fileName);
    
                $result = move_uploaded_file($tmpName, $filePath);
    
                if (!$result) {
                echo "Error adding Files";
                exit;
                }
    
                $fileName = addslashes($fileName);
                $filePath = addslashes($filePath);
    
                if (!file_exists ($fileName)) {
    
                $info = array ($fileName , $fileSize , $fileType , $filePath , $fileArn );
    
                $sth = $dbh->prepare("INSERT INTO upload2 (name, size, type, path , id_arn ) VALUES ( ? , ? , ? , ? , ? )");
                $sth->execute($info);
                }
            }
    
            } //END OF LOOP
    
            $parametros = array($arn,$modelos,$familias,$problema,$solucao);
    
            $sth = $dbh->prepare("INSERT INTO arn_info (arn , modelos , familias , problema , solucao) VALUES ( ? , ? , ? , ? , ? )");
    
            $sth->execute($parametros); 
    
            if($sth){
                header("location: admin.php?inserted=1");
            }
    }
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have an error that we can't seem to find and don't have the
Advance New Year Wishes to All. I have an error log file with the
I have a script that appends some rows to a table. One of the
I have an error handling method in my ApplicationController: rescue_from ActiveRecord::RecordNotFound, :with => :not_found
I have an error occuring frequently from our community server installation whenever the googlesitemap.ashx
I get this error:- You have an error in your SQL syntax; check the
I've tried this both with and without the 'ExceptionType' parameter. I have an Error.aspx
I have a logical error. I provided the following as input: the salary is
I have got this error when using Enterprise Library 3.1 May 2007 version. We
I have a custom error page set up for my application: <customErrors mode=On defaultRedirect=~/errors/GeneralError.aspx

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.