1
0
This commit is contained in:
Daniel Tartavel 2019-09-02 21:02:55 +02:00
parent 66fa622979
commit 9e6a4f8131

View File

@ -26,6 +26,8 @@ while( $table = $db1->result->fetch_assoc())
foreach($columns AS $key=>$s) foreach($columns AS $key=>$s)
{ {
print_r($s); print_r($s);
if ($s[0] != 'index' )
{
echo EOL; echo EOL;
if ( $s[0] == 'email') echo "################################################"; if ( $s[0] == 'email') echo "################################################";
$query="SELECT * FROM " . $table['Tables_in_nextcloud'] . " WHERE " . $s[0] . " LIKE '" . $string . "'"; $query="SELECT * FROM " . $table['Tables_in_nextcloud'] . " WHERE " . $s[0] . " LIKE '" . $string . "'";
@ -38,7 +40,7 @@ while( $table = $db1->result->fetch_assoc())
print_r($tableau); print_r($tableau);
echo EOL; echo EOL;
} }
}
} }
} }