ďťż

[PHP]funkcja include/jak zrobić układ stron pomocy

       

Podstrony


telcocafe

a więc strona wygląda takhttp://www.pi4sek.gaa.pl/index.php

-jak widać nie jest ustawione tło i arkusze stylów nie działają
-3 kolumny w środku menul.html, glowna.html, menup.html powinny dopasowywać długość do najdłuższej z nich
-a po kliknięciu na link strona się nie otwiera w miejscu glowna.html tylko w nowym oknie

a oto kod: <html> <head>  <meta http-equiv="content-type" content="text/html; charset=iso-8859-2" /> <meta http-equiv="reply-to" content="pi4sek@o2.pl" /> <meta name="generator" content="WebSite PRO 4.3" /> <meta name="content-language" content="pl" /> <meta name="author" content="Grzegorz Piasecki" /> <meta name="description" content="Strona jest poświęcona telefonowi lg U8120, ale zamieszczone tu materiały pasują do telefonów U8xxx, a niektóre rzeczy jak tapety, czy filmiki pasują także do innych telefonów o podobnych parametrach." /> <meta name="keywords" content="u8120 u8130 u8138 u8330 u8xxx lg tapety" />  <title>LG U8xxx</title>  <link rel="stylesheet" type="text/css" href="style.css"> </head> <body bgcolor="white" link="FF6600" alink="#000099" vlink="#BF4D00"> <table width="750" height="180" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("logo.html"); ?></td> </tr> </table> <table width="750" border="0" cellspacing="0" cellpadding="0"align="center"> <tr> <td width="134" align="right"><?php include("menul.html"); ?></td>     <td width="482" align="center"><?php include("glowna.html"); ?></td>     <td width="134" align="left"><?php include("menup.html"); ?></td> </tr> </table> <table width="750" height="91" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("koniec.html"); ?></td> </tr> </table> </body> </html>



Co do ostatniego to tam gdzie masz :
td width="482" align="center"><?php include("glowna.html"); ?></td>
daj:
td width="482" align="center"><?php if (isset($_GET[show]) { include($_GET[show].".php"); } else  include("glowna.html"); ?></td>
I w menu musi być link "index.php?show=forum" gdzie forum to nazwa pliku(bez rozszerzenia) który ma się pojawić w środku.
Użytkownik dh_maniak edytował ten post 01 lipiec 2005, 16:24
coś nie działa zgłasza błąd:

Parse error: parse error, unexpected '{' in /srv/free/act4499/index.php on line 26

<html> <head>  <meta http-equiv="content-type" content="text/html; charset=iso-8859-2" /> <meta http-equiv="reply-to" content="pi4sek@o2.pl" /> <meta name="generator" content="WebSite PRO 4.3" /> <meta name="content-language" content="pl" /> <meta name="author" content="Grzegorz Piasecki" /> <meta name="description" content="Strona jest po&para;więcona telefonowi lg U8120, ale zamieszczone tu materiały pasuj&plusmn; do telefonów U8xxx, a niektóre rzeczy jak tapety, czy filmiki pasuj&plusmn; także do innych telefonów o podobnych parametrach." /> <meta name="keywords" content="u8120 u8130 u8138 u8330 u8xxx lg tapety" />  <title>LG U8xxx</title>  <link rel="stylesheet" type="text/css" href="style.css"> </head> <body bgcolor="white" link="FF6600" alink="#000099" vlink="#BF4D00"> <table width="750" height="180" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("logo.html"); ?></td> </tr> </table> <table width="750" border="0" cellspacing="0" cellpadding="0"align="center"> <tr> <td width="134" align="right"><?php include("menul.html"); ?></td>     <td width="482" align="center"><?php if (isset($_GET[show]) { include($_GET[show].".php"); } else  include("glowna.html"); ?></td>     <td width="134" align="left"><?php include("menup.html"); ?></td> </tr> </table> <table width="750" height="91" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("koniec.html"); ?></td> </tr> </table> </body> </html>

tak powinno być:
<? if (isset($_GET[show])) { include($_GET[show].".php"); } else { include("glowna.html"); } ?>
Użytkownik matimik edytował ten post 01 lipiec 2005, 17:31


testuje to na linku artkóły

i cos nie działa

kod index.php
<html> <head>  <meta http-equiv="content-type" content="text/html; charset=iso-8859-2" /> <meta http-equiv="reply-to" content="pi4sek@o2.pl" /> <meta name="generator" content="WebSite PRO 4.3" /> <meta name="content-language" content="pl" /> <meta name="author" content="Grzegorz Piasecki" /> <meta name="description" content="Strona jest po&para;więcona telefonowi lg U8120, ale zamieszczone tu materiały pasuj&plusmn; do telefonów U8xxx, a niektóre rzeczy jak tapety, czy filmiki pasuj&plusmn; także do innych telefonów o podobnych parametrach." /> <meta name="keywords" content="u8120 u8130 u8138 u8330 u8xxx lg tapety" />  <title>LG U8xxx</title>  <link rel="stylesheet" type="text/css" href="style.css"> </head> <body bgcolor="white" link="FF6600" alink="#000099" vlink="#BF4D00"> <table width="750" height="180" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("logo.html"); ?></td> </tr> </table> <table width="750" border="0" cellspacing="0" cellpadding="0"align="center"> <tr> <td width="134" align="right"><?php include("menul.html"); ?></td>     <td width="482" align="center"> <? if (isset($_GET[show])) { include($_GET[show].".php"); } else { include("glowna.html"); } ?> </td>     <td width="134" align="left"><?php include("menup.html"); ?></td> </tr> </table> <table width="750" height="91" border="0" cellspacing="0" cellpadding="0"align="center"> <tr>     <td><?php include("koniec.html"); ?></td> </tr> </table> </body> </html>

kod menul.html
<body bgcolor="#F5F8FD" link="FF6600" alink="#000099" vlink="#BF4D00"> <BASE TARGET="index"> <table width="134"border="0" cellspacing="4" cellpadding="0" align="right" background="grafika/menul.bmp"> <tr>     <td  width="130"align="right">     <hr align="right" size="1" width="94%" color="#5C8EA9" noshade />     <p class="menu"><a href="glowna.html">Strona główna</a><br>     <p class="menu"><a href="http://www.lg.forumer.pl/" target="_blank">Forum</a><br>     <p class="menu"><a href="index.php?id=wzor">Artykuły</a><br>     <p class="menu"><a href="test.html">Test U8120</a><br>     <p class="menu"><a href="linki.html">Linki</a><br>     <p class="menu"><a href="kontakt.html">Kontakt</a><br>     <hr align="right" size="1" width="94%" color="#5C8EA9" noshade />     <p class="menu"><b>Dodatki:</b><br>     <p class="menu"><a href="tapety.html">Tapety</a><br>     <p class="menu"><a href="animacje.html">Animacje</a><br>     <p class="menu"><a href="filmiki.html">Filmiki</a><br>     <hr align="right" size="1" width="94%" color="#5C8EA9" noshade />     <p class="menu"><b>Księga Go&para;ci:</b>     <p class="menu"><A HREF="http://republika.onet.pl/webadmin_ksiega.html?d=dopisz&id=600151" target="_blank" >dopisz się</A> <br>     <p class="menu"><A HREF="http://republika.onet.pl/webadmin_ksiega.html?id=600151" target="_blank" >pokaż wpisy</A><br>     </td> </tr> </table> </body>

Coś nie działa, to znaczy co? Ew. spróbuj dać ./index.php?show=wzor .

EDIT.
Lol. Daj index.php?show=wzor zamiast index.php?id=wzor
Użytkownik dh_maniak edytował ten post 01 lipiec 2005, 20:10
problem 1 i 3 rozwiązany teraz został 2 jak te tabelki ustawić?

problemy rozwięzane dzięki za pomoc

  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • nvm.keep.pl

  • Sitedesign by AltusUmbrae.