Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

PHP stored procedure help

  • 03-12-2017 07: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