powergrafik
09.12.2007, 14:20
Hallo,
ich hab leider über die Suche nichts gefunden.
Ich bin gerade dabei ein kleines Addon zu porgrammieren.
Mein Code sieht so aus :
<?php head("Übersicht deiner Sub-ID´s"); ?>
<?php
$subidliste = db_query("SELECT * FROM ".$db_prefix."_bettel_sub WHERE uid = '".$_SESSION['uid']."';");
$ausgabe1 = mysql_fetch_array($subidliste);
if(!isset($ausgabe1['ID']) or empty($ausgabe1['ID'])) {
echo 'Sie haben noch keine Sub-ID´s angelegt.';
}
else
{
echo '<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="15%"><div align="left"><strong>Name</strong></div></td>
<td width="30%"><div align="center"><strong>Link</strong></div></td>
<td width="21%"><div align="center"><strong>Aufrufe</strong></div></td>
<td width="20%"><div align="center"><strong>Verdienst</strong></div></td>
<td width="14%"><div align="center"><strong>Löschen ? </strong></div></td>
</tr>';
while ($ausgabe = mysql_fetch_array($subidliste)) {
echo ' <tr>
<td><div align="left">'.$ausgabe['name'].'</div></td>
<td><div align="center">
<input name="link" type="text" id="link" value="'.$ausgabe['ID'].'">
</div></td>
<td><div align="center">'.$ausgabe['angebettelt'].'</div></td>
<td><div align="center">'.$ausgabe['bv'].' Lose </div></td>
<td><div align="center"><a href="index.php?content=/subids/delete&id='.$ausgabe['ID'].'">[x]</a></div></td>
</tr>';
}
echo '</table>';
}
?>
<?php foot(); ?>
In der Mysqldatenbank ist ein Eintrag.
Aber aus irgendeinem Grund funktioniert die While Schleife nicht.
Ich hoffe ihr könnt mir helfen.
Mfg
Marvin
ich hab leider über die Suche nichts gefunden.
Ich bin gerade dabei ein kleines Addon zu porgrammieren.
Mein Code sieht so aus :
<?php head("Übersicht deiner Sub-ID´s"); ?>
<?php
$subidliste = db_query("SELECT * FROM ".$db_prefix."_bettel_sub WHERE uid = '".$_SESSION['uid']."';");
$ausgabe1 = mysql_fetch_array($subidliste);
if(!isset($ausgabe1['ID']) or empty($ausgabe1['ID'])) {
echo 'Sie haben noch keine Sub-ID´s angelegt.';
}
else
{
echo '<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="15%"><div align="left"><strong>Name</strong></div></td>
<td width="30%"><div align="center"><strong>Link</strong></div></td>
<td width="21%"><div align="center"><strong>Aufrufe</strong></div></td>
<td width="20%"><div align="center"><strong>Verdienst</strong></div></td>
<td width="14%"><div align="center"><strong>Löschen ? </strong></div></td>
</tr>';
while ($ausgabe = mysql_fetch_array($subidliste)) {
echo ' <tr>
<td><div align="left">'.$ausgabe['name'].'</div></td>
<td><div align="center">
<input name="link" type="text" id="link" value="'.$ausgabe['ID'].'">
</div></td>
<td><div align="center">'.$ausgabe['angebettelt'].'</div></td>
<td><div align="center">'.$ausgabe['bv'].' Lose </div></td>
<td><div align="center"><a href="index.php?content=/subids/delete&id='.$ausgabe['ID'].'">[x]</a></div></td>
</tr>';
}
echo '</table>';
}
?>
<?php foot(); ?>
In der Mysqldatenbank ist ein Eintrag.
Aber aus irgendeinem Grund funktioniert die While Schleife nicht.
Ich hoffe ihr könnt mir helfen.
Mfg
Marvin