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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

PHP stored procedure help

  • 03-12-2017 7:15pm
    #1
    Registered Users, Registered Users 2 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