moin ich brauche mal etwas hilfe also ich hab hier dieses log script
mit der tabelle
CREATE TABLE log_tabelle (
LogId int(11) NOT NULL auto_increment,
RemoteIP varchar(15) default NULL,
DatumZeit datetime default NULL,
PRIMARY KEY (LogId)
) TYPE=MyISAM;
und nun will ich ein sscript was mir das in so einer tabelle anzeigt
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" text="#FFFFFF" bgcolor="#000000">
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#000000" width="45%" id="" bgcolor="#333399">
<tr>
<td width="11%" bgcolor="#333399"> </td>
<td width="13%"><b>ID</b></td>
<td width="27%"><b>IP</b></td>
<td width="49%"><b>DATUM / ZEIT</b></td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="45%" id="" bgcolor="#666699">
<tr>
<td width="11%"> <input type="checkbox" name="" value="ON"></td>
<td width="13%">1</td>
<td width="27%">***.***.***</td>
<td width="49%">01.10.2001</td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="45%" id="" bgcolor="#333399" height="16">
<tr>
<td width="100%" height="16">
<b><a href="makieren">Alle Einträge markieren </a>
<a href="löschen">Löschen</a> </b></td>
</tr>
</table>
</center>
</div>
</body>
kann mir bitte einer helfen ich habs schon versucht aber schaff das net vieleicht bin ich zu dumm oder zu schlecht
PHP-Code:
<?php
include('data.php');
$connect = @mysql_connect($dbHost, $dbUser, $dbPass) or die('Keine Verbindung zum Datenbankserver!');
$sql = "INSERT INTO log_tabelle (RemoteIP, DatumZeit) VALUES (''.getenv('REMOTE_ADDR').'', NOW())";
mysql_select_db($dbName);
$result = mysql_query ($sql);
$sql = "SELECT * FROM log_tabelle ORDER BY DatumZeit DESC";
$sql = mysql_query($sql);
while ($row=mysql_fetch_array($sql,MYSQL_ASSOC))
{
$template = join('',file('test.html'));
$ausgabe = str_replace("[ID]", 'Besucher-Nr: '.$row['LogId'], $template);
$ausgabe = str_replace("[IP]", 'IP-Adresse: '.$row['RemoteIP'], $ausgabe);
$ausgabe = str_replace("[DATUMZEIT]", 'Datum: '.$row['DatumZeit'], $ausgabe);
echo $ausgabe;
}
?>
CREATE TABLE log_tabelle (
LogId int(11) NOT NULL auto_increment,
RemoteIP varchar(15) default NULL,
DatumZeit datetime default NULL,
PRIMARY KEY (LogId)
) TYPE=MyISAM;
und nun will ich ein sscript was mir das in so einer tabelle anzeigt
<body link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" text="#FFFFFF" bgcolor="#000000">
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#000000" width="45%" id="" bgcolor="#333399">
<tr>
<td width="11%" bgcolor="#333399"> </td>
<td width="13%"><b>ID</b></td>
<td width="27%"><b>IP</b></td>
<td width="49%"><b>DATUM / ZEIT</b></td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="45%" id="" bgcolor="#666699">
<tr>
<td width="11%"> <input type="checkbox" name="" value="ON"></td>
<td width="13%">1</td>
<td width="27%">***.***.***</td>
<td width="49%">01.10.2001</td>
</tr>
</table>
</center>
</div>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="45%" id="" bgcolor="#333399" height="16">
<tr>
<td width="100%" height="16">
<b><a href="makieren">Alle Einträge markieren </a>
<a href="löschen">Löschen</a> </b></td>
</tr>
</table>
</center>
</div>
</body>
kann mir bitte einer helfen ich habs schon versucht aber schaff das net vieleicht bin ich zu dumm oder zu schlecht
Kommentar