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
382 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 15:37:11 +02:00
function esp( $s )
{
$s = " $s ";
return $s;
}
2019-08-31 12:41:48 +02:00
$doldb = new db("dolibarr");
//$doldb->database = ;
$ncdb = new db("nextcloud");
//$ncdb->database = "nextcloud";
2019-08-31 16:05:06 +02:00
$doldb->query("SELECT login FROM llx_adherent");
2019-08-31 15:50:54 +02:00
print_r($doldb);
2019-08-31 16:05:06 +02:00
print_r($doldb->query);
?>