kostenloser Webspace werbefrei: lima-city


PHP&MySQL --> Habe Probs beim Ausgeben // Was ist falsch?

lima-cityForumProgrammiersprachenPHP, MySQL & .htaccess

  1. Autor dieses Themas

    webmaster2k

    webmaster2k hat kostenlosen Webspace.

    Hi,
    also zu allererst sollt ihr wissen dass ich kein Profi in diesem Gebiet bin, kommt mir also bitte nicht mit Fachausdr?cken...

    Zu meinem Problem:

    es geht um http://www.webmaster2k.de.vu

    1) der titel wird nicht angezeigt

    2) der inhalt wird nicht ge?ndert.

    HINWEIS: Bis jetzt sind nur die Rubriken Home und News mit Content versehen...

    Und da man das Prob bekanntlich nicht ohne infos l?sen kann: hier nochmal die Daten. Ich rate, den ZIP zu downloaden, da er viel ?bersichtlicher sein wird...

    1) ZIP: http://rapidshare.de/files/3132039/webmaster2k.zip.html

    2) Dateien einzel:

    Im Hauptverzeichnis:
    index.php
    <?php include("mysql/connect.w2k"); ?>
    <?php include("mysql/select.w2k"); ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Webmaster2k</title>
    
    <script language="JavaScript">
    
    if (top.frames.length!=0)
    
    top.location=self.document.location;
    
    </script>
    
    <link href="css/style.css" rel="stylesheet" type="text/css">
    </head>
    
    <body>
    <center>
    <table width="800" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000" class="haupttabelle">
      <tr bgcolor="#FFFFFF">
        <td height="150" colspan="2"><img src="images/header/logo.gif" width="800" height="150"></td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td width="175" height="35" valign="top"><img src="images/navigation/navigation_kategorie.gif" width="175" height="35"></td>
        <td width="623" rowspan="10" align="left" valign="top" class="haupttabelle_inhalt">
    
    <p class="ueberschrift"><?php include("mysql/title.w2k"); ?></p>
    
    <p>
    <?php include("mysql/content.w2k"); ?>	  
    </p>
    
    	  </td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td valign="top" class="haupttabelle_navigation">
    	<a href="?show=home">Home</a>
    	<a href="?show=news">News</a>
    	<a href="?show=impressum">Impressum</a>
    	</td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td height="35" valign="top"><img src="images/navigation/tutorials_kategorie.gif" width="175" height="35"></td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td valign="top" class="haupttabelle_navigation">
    	<a href="?show=tutorials_html">HTML</a>
    	<a href="?show=tutorials_css">CSS</a>
    	<a href="?show=tutorials_php_mysql">PHP/MySQL</a>
    	<a href="?show=tutorials_gfx">GFX</a>
    	<a href="?show=tutorials_tipps_tricks">Tipps &amp; Tricks</a>
    	</td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td height="35" valign="top"><img src="images/navigation/downloads_kategorie.gif" width="175" height="35"></td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td valign="top" class="haupttabelle_navigation">
    	<a href="?show=downloads_php_scripts">PHP-Scripts</a>
    	<a href="?show=downloads_javascripts">JavaScripts</a>
    	<a href="?show=downloads_programme_i-net">Programme (I-Net)</a>
    	<a href="?show=downloads_programme_offline">Programme (Offline)</a>
    	<a href="?show=downloads_editoren">Editoren</a>
    	<a href="?show=downloads_antiviren">Antiviren</a>
    	<a href="?show=downloads_sonstige">Sonstige</a>
    	</td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td height="35" valign="top"><img src="images/navigation/services_kategorie.gif" width="175" height="35"></td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td valign="top" class="haupttabelle_navigation">
    	<a href="?show=services_grafikerstellung">Grafikerstellung</a>
    	<a href="?show=services_hp_erstellung">HP-Erstellung</a>
    	<a href="?show=services_g-book_service">G-Book Service</a>
    	<a href="?show=services_linkliste">Linkliste</a>
    	<a href="?show=services_andere">Andere</a>	
    	</td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td height="35" valign="top"><img src="images/navigation/other_kategorie.gif" width="175" height="35"></td>
      </tr>
      <tr bgcolor="#FFFFFF">
        <td valign="top" class="haupttabelle_navigation">
    	<a href="?show=other_gallerie">Gallerie</a>
    	<a href="?show=other_guestbook">Guestbook</a>
    	</td>
      </tr>
      <tr align="center" valign="middle" bgcolor="#FFFFFF">
        <td height="10" colspan="2" class="copyright">&copy; by Webmaster2k.de.vu | Best view with 1024x768, MsIE or Mozilla Firefox</td>
      </tr>
    </table>
    </center>
    </body>
    </html>


    Im unterordner /mysql/
    connect.w2k
    <?php
    	mysql_connect("mysql.lima-city.de","USER25711","passwort");
    	mysql_select_db("DB1116857096");
    ?>


    select.w2k
    <?php
    if ($show=="news") {$table="home";$id="2";}
    if ($show=="impressum") {$table="home";$id="3";}
    if ($show=="tutorials_html") {$table="home";$id="1";}
    if ($show=="tutorials_css") {$table="tutorials";$id="2";}
    if ($show=="tutorials_php_mysql") {$table="tutorials";$id="3";}
    if ($show=="tutorials_gfx") {$table="tutorials";$id="4";}
    if ($show=="tutorials_tipps_tricks") {$table="tutorials";$id="5";}
    if ($show=="downloads_php_scripts") {$table="downloads";$id="1";}
    if ($show=="downloads_javascripts") {$table="downloads";$id="2";}
    if ($show=="downloads_programme_i-net") {$table="downloads";$id="3";}
    if ($show=="downloads_programme_offline") {$table="downloads";$id="4";}
    if ($show=="downloads_editoren") {$table="downloads";$id="5";}
    if ($show=="downloads_antiviren") {$table="downloads";$id="6";}
    if ($show=="downloads_sonstige") {$table="downloads";$id="7";}
    if ($show=="services_grafikerstellung") {$table="services";$id="1";}
    if ($show=="services_hp_erstellung") {$table="services";$id="2";}
    if ($show=="services_g-book_service") {$table="services";$id="3";}
    if ($show=="services_linkliste") {$table="services";$id="4";}
    if ($show=="services_andere") {$table="services";$id="5";}
    if ($show=="other_gallerie") {$table="other";$id="1";}
    if ($show=="other_guestbook") {$table="other";$id="2";}
    if ($show=="other_seite_durchsuchen") {$table="other";$id="3";}
    else {$table="home";$id="1";}
    ?>


    title.w2k
    <?
    	$zeile = "SELECT title FROM $table WHERE id = $id";
    	$ok = mysql_query($zeile);
    	while($row = mysql_fetch_object($ok))
    		{
    			echo $row->$title;
    		}
    	mysql_free_result($ok);
    ?>


    content.w2k
    <?
    	$zeile = "SELECT content FROM $table WHERE id = $id";
    	$ok = mysql_query($zeile);
    	while($row = mysql_fetch_object($ok))
    		{
    			echo $row->content;
    		}
    	mysql_free_result($ok);
    ?>





    Die dateinamen sind zwar ein wenig komisch...aber das macht ja keinen unterschied beim includen und ich find mich besser zurecht.

    Zur index: lasst euch nicht abschrecken iss bloss ne tabelle... ^^

    Danke f?r jdede hilfe...

    MfG //M2k
  2. Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!

    lima-city: Gratis werbefreier Webspace für deine eigene Homepage

Dir gefällt dieses Thema?

Über lima-city

Login zum Webhosting ohne Werbung!