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> </p>
<p> </p>
<p>Artists:</p>
<p> </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
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> </p>
<p> </p>
<p>Artists:</p>
<p> </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
Kommentar