Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

PHP stored procedure help

Options
  • 03-12-2017 8:15pm
    #1
    Registered Users Posts: 5


    Hi im new to php and trying to execute a stored procedure to insert into a database can someone please explain where i am going wrong. I will post my code below thanks!

    [PHP]
    <?php

    include_once "constants.php";

    class database {

    var $connection;

    //Function to connect
    function connect(){
    $this->connection = mysqli_connect(SERVER, USER, PASSWORD, DATABASE);
    if(mysqli_connect_errno()){
    die("Connection failed");
    }

    return $this->connection;
    }


    //Function to allow stored procedures to be called from different classes

    }

    ?>



    <?php

    require_once 'constants.php';
    require_once 'connection.php';

    $connection = new database();

    $first_name = $_POST;
    $last_name = $_POST;
    $password = $_POST;
    $email = $_POST;
    $dob = $_POST;
    $profile_pic = $_POST;

    // Calls stored procedure

    $result = mysqli_query($connection->connect(),"CALL InsertNewMember('$first_name',''$last_name','$password','$email','$dob','$profile_pic')");[/PHP]
    Tagged:


Advertisement