<?php
session_start();
?>
<?php
$seite = $_GET["seite"];
include_once ("../mysql.inc.php");
if(($sid = $_POST['sid']) == "") $sid = $_GET['sid'];
if(($id = $_POST['id']) == "") $id = $_GET['id'];
if(!isset($seite))
{
$seite = 1;
}
$link = mysql_connect($db_host,$db_username,$db_password) or die ("Keine Verbindung moeglich");
mysql_select_db($database_name) or die ("Die Datenbank existiert nicht");
echo "<link rel='stylesheet' href='style.css' type='text/css'>";
$eintraege_pro_seite = 10;
$start = $seite * $eintraege_pro_seite - $eintraege_pro_seite;
$abfrage = "SELECT * FROM radio_sg WHERE radio_name = ".$_SESSION['username']."";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
echo ' <font color="#ff0000" size="4">Neue Streambox von: <div class="link"> <div class="table1"><a href='.$row->radio_homepage.' target=_blank>'.$row->radio_name.'</div></div></a>
<iframe src="'.$row->radio_stream.'" width="140" height="250" frameborder="0" scrolling="no"></iframe>
<center><table width="100%" cellspacing="0" cellpadding="0" border="1" bordercolorlight="#000000" style="border-collapse: collapse">
<tr>
<td div class="table" width=400>'.$row->radio_name.' : '.$row->radio_url.'</td>
<td class="table width=400>Copyright: # '.$row->copyfree.'</td>
<td div class="table" width=400>ID: #'.$row->id.'</td>
<td div class="table" width=400>Ändern</td>
</tr>
<tr>
<td>
<div class="table1"><a href=admin.php?admin&delete='.$row->id.'&sid='.$sid.'&page=users title="Hier könnt ihr die Streambox Löschen">Löschen</a>';