Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: How to Execute SQL Stored Procedures using PHP

    Hello Ramesh

    Here is my code of stored procedure with no parameters

    <?php

    // create connection

    $connection = odbc_connect("test","sa","");

    // test connection

    if (!$connection) {

    echo "Couldn't make a connection!";

    exit;

    }

    // create SQL statement

    $sql = "TesttempSP";

    // $sql="SELECT...

Viewing post 1 (of 1 total)