Hi!
ich habe ein kleines Problem mit einer IF Abfrage.
Ich habe folgendes versucht:
if(isset($_GET["thread_id"] && $_GET["forum_id"]))
echo '<td class="title"><center><b>Antworten</b></center></td>';
else if(isset($_GET["forum_id"]))
echo '<td class="title"><center><b>Neues Thema</b></center></td>';
> Parse error: parse error, unexpected T\_BOOLEAN\_AND, expecting ',' or ')' in /home/webpages/lima-city/newwarrior/html/forum/new.php on line 54
Mache das so:
~~~php
if(isset($_GET["thread_id"]) && isset($_GET["forum_id"])) {
// weitere Teile
}
Grüße,
Fabian St.