PHP Homepage

Wolf of Doom

Erfahrenes Mitglied
hi

ich moechte gerne einen homepage, bei der alles mit PHP gecodet ist kann mir jemand die stukur erklaeren, und wie ich das am besten mache wenns geht mit opensource



thx and cya


Wolf
 
So alsp komplett php na ja alles per echo und print in ne config schreiben (als funktion)
und dann ausgeben
hier n ausschnitt aus ner config
PHP:
function leftnavi()
{
  echo "<img src=\"gfx/navi_news.gif\" border=\"0\" width=\"125\" height=\"55\">\n";
  echo "<a href=\"index.php?link=news\">- News</a><br><a href=\"index.php?link=news\">- News Eintragen</a><br><a href=\"index.php?link=news\">- News Archiv</a>\n"; // block_news

  echo "<img src=\"gfx/navi_helden.gif\" border=\"0\" width=\"125\" height=\"40\">\n";
  echo "<a href=\"index.php?link=member/cs.php\">- Counterstrike</a><br><a href=\"index.php?link=\">- Galaxy Wars</a><br><a href=\"index.php?link=news\">- Rocket Arena</a><br>\n"; // block_helden

  echo "<img src=\"gfx/navi_community.gif\" border=\"0\" width=\"125\" height=\"40\">\n";
  echo "<a href=\"index.php?link=member/join.php\">- Join us<br><a href=\"index.php?link=fight\">- Fight us<br><a href=\"index.php?link=clanwars\">- Clanwars<br><a href=\"index.php?link=forum\">- Forum<br><a href=\"index.php?link=intern\">- Intern</a><br>\n"; // block_community

  echo "<img src=\"gfx/navi_files.gif\" border=\"0\" width=\"125\" height=\"40\">\n";
  echo "<br><br>\n";  // block_files
}

function content()
{
  echo "</td>\n";
  echo "<td width=\"542\" valign=\"top\">\n";
}

und hier dann ganz einfach die index
das is n bsp das ich aber net selbst gemacht hab wie man so schön am anfang sieht
thx @ slimie

PHP:
<?php

# |                              \\|///
# |                             | ~ ~ |
# |                            (- 0 0 -)
# |--------------------------oOOo-(_)-oOOo--------------------------
# | vergessene helden
# |
# | all content and graphix if not stated otherwise © 2002 by slimie
# | // all rights reserved - rippers will be flamed
# |                          oooO
# |--------------------------(  )-----Oooo--------------------------
# |                           \ (     (  )
# |                            \_)    ) /
# |                                  (_/

include ("config.php");
if (!isset($link))
{
  $link = "news.php";
}

echo "\n\n";
echo "<!--\n";
echo "|                              \\|///\n";
echo "|                             | ~ ~ |\n";
echo "|                            (- 0 0 -)\n";
echo "|--------------------------oOOo-(_)-oOOo--------------------------\n";
echo "| vergessene helden\n";
echo "|\n";
echo "| all content and graphix if not stated otherwise © 2002 by DarkSuMmer and Phoenix\n";
echo "| Special thx @ Slimie 4 The Help at the start \n";
echo "| // all rights reserved - rippers will be flamed\n";
echo "|                          oooO\n";
echo "|--------------------------(  )-----Oooo--------------------------\n";
echo "|                           \ (     (  )\n";
echo "|                            \_)    ) /\n";
echo "|                                  (_/\n";
echo "-->\n";
echo "\n\n";

openpage();
leftnavi();
content();

if (!isset($link))
{
  include ("news.php");
}

else
{
  include ($link);
}

endcontent();
rightnavi();
closepage();

?>
 
hmmm irgendwie peil ich des ned so, koenntest du es vielleicht ein wenig erklaetern ?


und wie funtz des mit der IDs wie z.b. download.php?id=3


thx and ciao Wolf
 

Neue Beiträge

Zurück