Bis zur ersten TRUE abfrage geht es, in der function nicht mehr.
ich weis nicht wo es VERLOREN geht (weine)
include("inc/config.inc.php");
$sql = "SELECT * FROM table WHERE id = 1";
$result = mysqli_query($Verbindung,$sql);
$oje= mysqli_fetch_object($result);
if ($oje==TRUE) {
echo'JA';};
function test() {
$sql = "SELECT * FROM table WHERE id = 1";
$result = mysqli_query($Verbindung,$sql);
$oje= mysqli_fetch_object($result);
if ($oje==TRUE) {
echo'JA';};
}
test();