Guten Morgen,
warum funktioniert das nicht (Internal Server Error 500):
[PLAIN]
<?php
function_exists('exec_sem_list') ? exec_sem_list() : echo '<h3>ERROR: Function not found!</h3>';
?>
[/PLAIN]
als normale if/else Anweisung aber schon?
[PLAIN]
<?php
if (function_exists('exec_sem_list')) {
exec_sem_list();
} else {
echo '<h3>ERROR: Function not found!</h3>';
}
?>
[/PLAIN]
Vermute mal, ich hab da was übersehen, aber ich komm alleine nicht drauf. Was soll ich sagen... ;)