1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__nextcloudconnector4do.../nconnector.php

24 lines
361 B
PHP
Raw Normal View History

#!/usr/bin/php
<?php
require("session_init.php");
require("config.inc.php");
require("log.php");
require("db.class.php");
2019-08-31 12:41:48 +02:00
$doldb = new db("dolibarr");
//$doldb->database = ;
$ncdb = new db("nextcloud");
//$ncdb->database = "nextcloud";
2019-08-31 15:34:42 +02:00
$doldb->query("SELECT login FROM llx_adherent");
function esp( $s )
{
$s = " $s ";
return $s;
}
var_print($doldb);
?>