I've started working on some PHP CLI script utilities recently, and I've run into an issue.
Script:
Error:
Is it possible to do this in CLI? I've looked through documentation, and found nothing on this.
Script:
Code:
<?php
$connection = mssql_connect('server', 'user', 'pw');
?>
Error:
Code:
Call to undefined function: mssql_connect()
Is it possible to do this in CLI? I've looked through documentation, and found nothing on this.