MySQL support must be loaded manually.
Where to configure it right (so that I have not to load it manually).
Manually loading works like this.
########################################
#!/usr/bin/php
<?php
if (!extension_loaded("mysql")) {
        if (!dl("mysql.so")) return;
}

echo "start\n";
$con_handle =  mysql_connect("localhost","contenido","contenido")
               or die("could not connect\n");
echo $con_handle;
echo "end\n";
?>
#####################################
Rainer Lehrig

Reply via email to