is this possible? if possible, any hints or advice?
here' my code:
<?php
// create connection
$connection = sybase_connect("ccbol","dba","sql");
// test connection
if (!$connection) {
echo "Couldn't make a connection!";
exit;
}
// select database
$db = sybase_select_db("ccboldb", $connection);
// test selection
if (!$db) {
echo "Couldn't select database!";
exit;
}
?>
is there a need to configure my php.ini?
Tags: