Auflistung von Dateien aus Tabelle

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Auflistung von Dateien aus Tabelle

    Hallo

    Bin blutiger Anfänger und kenne mich überhaupt nicht aus
    Ich will eine Tabelle in ein PHP ausgeben mit Formatierung
    Vorname LEERZEICHEN Nachname
    in der Tabelle siehts so aus Nachname,Vorname
    Das Script ist noch kein PHP weil ich nicht weiß wie
    Hier das Skript:

    <html>

    <head>
    <meta http-equiv="Content-Language" content="de-at">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>Artists</title>
    </head>

    <body>

    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>Artists:</p>
    <p>&nbsp;</p>

    <?
    include("Common_Functions.php");
    include("connect.php");



    // $Aktion = $HTTP_GET_VARS[Aktion];



    $sSql="SELECT a.t_Artist ";
    $sSql.= "FROM musikvideos, t_Artist as a ";

    $arErgebnis_Recordset=get_SQL($sSql);

    ?>

    <h1 align="center"><font face="Arial, Helvetica, sans-serif"><font color="#FFFF00"><b><i><font face="Verdana, Arial, Helvetica, sans-serif">Musikvideos</font></i></b></font></font>
    </h1>
    <form name="form1" method="get" action="artists.htm">
    Video:
    <?


    <?
    //$iZeile=0;
    foreach($arErgebnis_Recordset as $dPerson){
    if (mat_bgerade($iZeile)){
    $sStil = "zeile_a";
    }
    else{
    $sStil = "zeile_b";
    }
    print("<tr class = '$sStil' > \n");

    print("<td>$dPerson[Artist]</td>\n");
    print("</tr>\n");
    $iZeile++;
    }
    ?>
    </body>

    </html>

    Danke für die Hilfe

    lolipop 999

  • #2
    Re: Auflistung von Dateien aus Tabelle

    Noch einmal, und du wirst gebannt!

    Bleib in deinem verdammten Thread: http://www.php-resource.de/forum/sho...threadid=66479
    I don't believe in rebirth. Actually, I never did in my whole lives.

    Kommentar

    Lädt...
    X