Hey leute.
Ich hab ein problem bei einem PHP code
In diesem Code ist kein fehler doch ich hab ein problem.
Diese stelle zeigt eine Navi an. (Der obere code)
und $link_html ist halt sozusagen die variable weil ich $link_html in einem anderen bereich zum ausgeben also im Html bereich nutze.
Jedesmal beim öffnen der seite hab ich 2 Navis.
Die eine will ich entfernen also
Wenn ich diesen teil entferne ist es nur noch eine Navi da doch dann funktioniert die andere navi in dem Html bereich nicht mehr.
Wie krieg ich es hin das ich eine navi entferne aber die andere im Html bereich noch geht?
Html bereich:
Vielen dank schonmal
Ich hab ein problem bei einem PHP code
PHP-Code:
if($obj_url = @parse_url($val['href']))
{
if($obj_url['host'])
{
$link_list[] = '<LI><A HREF="' . $val['href'] . '" TARGET="_blank">' . htmlentities($val['title'], ENT_QUOTES, PAGE_CHARSET) . '</A></LI>';
}
else
{
$link_list[] = '<TR><TD style="border-top: 1px solid rgb(0, 0, 0);"><A HREF="' . $val['href'] . '">' . htmlentities($val['title'], ENT_QUOTES, PAGE_CHARSET) . '</A></TR></TD>';
};
};
};
};
$link_html = @implode($link_list);
PHP-Code:
$link_list[] = '<TR><TD style="border-top: 1px solid rgb(0, 0, 0);"><A HREF="' . $val['href'] . '">' . htmlentities($val['title'], ENT_QUOTES, PAGE_CHARSET) . '</A></TR></TD>';
PHP-Code:
$link_html = @implode($link_list);
Jedesmal beim öffnen der seite hab ich 2 Navis.
Die eine will ich entfernen also
PHP-Code:
$link_list[] = '<TR><TD style="border-top: 1px solid rgb(0, 0, 0);"><A HREF="' . $val['href'] . '">' . htmlentities($val['title'], ENT_QUOTES, PAGE_CHARSET) . '</A></TR></TD>';
Wie krieg ich es hin das ich eine navi entferne aber die andere im Html bereich noch geht?
Html bereich:
Code:
echo <<<EOT <table width="1012" cellpadding="0" cellspacing="0" id="dreiteilung"> <tr><td width="190"></td> <td width="820"></td> <tbody> <tr> <td align="center" valign="top" id="links"><!-- Anfang linke Navigation !--> <!-- Navigation !--> <!-- main !--> <table class="navigation_box" cellpadding="0" cellspacing="1"> <tbody> <tr> <td style="padding: 0px;"><div class="navi_heading">ACP Main Navi</div></td> </tr> <tr> <td style="border-top: 1px solid rgb(0, 0, 0);">$link_html</td> </tr> </tbody> </table> <p align="center"></td> <td align="center" valign="top" id="links"><table border="0" cellpadding="0" cellspacing="1" class="content_box"> <tbody> <tr> <td style="padding: 0px;"><div class="content_heading"> ACP Content</div></td> </tr> <tr align="left"> <td height="61" style="border-top: 1px solid rgb(0, 0, 0);"><table width="810px" height="56" border="0" align="right" cellpadding="2" cellspacing="1" bgcolor="#ffffff"> <tbody> <tr> <td height="54" valign="top"><p align="center" class="Stil1"> </p> <p align="center"></td> </tr> </tbody> </table></td> </tr> </tbody> </table> <br /></td> </tr> </tbody> </table> EOT;
Kommentar