 |  |  |  | FINETABLE |  |  |  |  |  |  | finetable.php erzeugt Panels mit einer Überschrift, einer Trennlinie und dem Text mit abgerundeten Ecken. Es ist nicht mehr notwendig, abgerundete Ecken zu zeichnen, um sie anschließend in den Tabellenquelltext einzufügen. Mit finetable.php wird dieser Effekt automatisch erzielt. finetable.php ist ein PHP3/4 - Skript, das bereits alle benötigten Elemente für eine Tabelle mit abgerundeten Ecken enthält. Die CSS-Klassen ".ft_caption" und ".ft_body" werden, falls definiert, auf die Überschrift und den Inhalt der Table angewandt. Die Style-Links im Abschnit "CSS style suits" zeigen ein paar mögliche Variationen. |  |  |  |  |
   |  |  |  |  |  | FINETABLE |  |  |  |  |  |  | finetable.php gererates panels with a caption, a separating line, and text with rounded corners. You no longer need to make rounded corner graphics and put them into the table source code. With finetable.php, you achieve this effect automatically. finetable.php is a PHP3/4 script, which includes all elements needed to create a table with rounded corners. finetable.php applies the user-defined css classes ".ft_caption" and ".ft_body" if specified to the caption and the body of the table. The style links in the "CSS style suits" will show you some possible styles. |  |  |  |  |
  |  |  |  | Download and Version-Info |  |  |  |  |  |  | finetable.php can be downloaded and the latest version info can be seen [here]. Feel free to link to this page, if you like it. finetable.php © 2002 by knito |  |  |  |  |
  |  |  |  | Links to pages which use finetable.php |  |  |  |  |  |  |
Em@il
your link to me, I will add it right here, if it points to a finetable-page.
|

|
|
#######################################################
# Besucherzähler von Andrepolo
# bzaehler_v 1.03
#######################################################
# Info: andrepolo@gmx.de
# I-Net: http://www.andrepolo.de
# Dieses Script ist Freeware !!!
#######################################################
//Deine Einstellungen
$numip = "10"; //Anzahl der IP-Nummern, die gespeichert werden sollen
$font = "verdana"; //gewuenschte Schriftart eingeben
$fontsize = "2"; //gewuenschte Schriftgroesse eingeben / Standard ist 2
$fontcolor = "#000000"; //gewuenschte Schriftfarbe eingeben
$datum = "March 31, 2002"; // Datum, ab wann gezählt wird ( z.B. 05.07.2001 od. 5. Juli 2001)
#######################################################
// Setzen der 'file dir'
$anzdir="counter.txt" ;
$ipdir= "counter_ip.txt" ;
#######################################################
// Nur editieren, wenn du weißt was du tust !!!
if (file_exists($anzdir) AND ($ipdir))
{
#global $REMOTE_ADDR, $ipdata, $userip1;
$userip = $_SERVER['REMOTE_ADDR'] ;
$ipfile = fopen($ipdir,"r+");
$ipfile1 = fgets($ipfile,200);
$ipdata = explode(":",$ipfile1);
# inserted by knito for php3
$gefunden = false;
while (list($key, $val) = each($ipdata))
{
if( $userip == $val )
{
$gefunden = true;
break;
}
}
if( $gefunden ) // by knito for php3 (in_array($userip, $ipdata))
{
#global $nummer;
$anzahl = fopen("$anzdir", "r+") ;
$nummer = fgets($anzahl,9);
fclose($anzahl);
}
else
{
#global $num, $userip;
$num = count($ipdata);
if ($num <= $numip)
{
fputs($ipfile,$userip.":");
fclose($ipfile);
$anzahl = fopen("$anzdir", "r+");
$nummer = fgets( $anzahl, 9 );
$nummer++;
fseek($anzahl, 0);
fputs( $anzahl, $nummer );
fclose($anzahl);
}
else
{
global $ipdata9, $push;
$pop = array_pop($ipdata);
$ipdata = array_reverse($ipdata);
array_push($ipdata,$userip);
$ipdata = array_reverse($ipdata);
$userip2 = implode(":",$ipdata);
$ipfile = fopen($ipdir,"w+");
fputs($ipfile,$userip2);
fclose($ipfile);
$anzahl = fopen("$anzdir", "r+");
$nummer = fgets( $anzahl, 9 );
$nummer++;
fseek($anzahl, 0);
fputs( $anzahl, $nummer );
fclose($anzahl);
}
}
}
else
{
if (file_exists($ipdir))
{
#global $nummer;
$fo = fopen($anzdir,"w+");
fputs($fo, 1);
$nummer = 1;
}
else
{
#global $nummer;
$foip = fopen($ipdir, "w+");
fputs($foip, $REMOTE_ADDR.":");
fclose($foip);
$foan = fopen($anzdir,"w+");
fputs($foan, 1);
$nummer = 1;
}
}
$date = addslashes($datum);
echo "".
"$nummer visitors since $date counted with bzaehler_v 1.03 from ".
'www.andrephp.de';
?> |
|  |  |  |  |  |  |  |  |  | Finnish International DX group Foxtrot Lima
|  |  |  |  |  |  |  |  |  | Knito's Farbmischer
|  |  |  |  |  |  |  |  |  | Julian Pedley's Personal Pages
|  |  |  |  |  |  |  |  |  | DEVK-Beratungsstelle Nieder-Olm
|  |  |  |  |  |  |  |  |  | Knito's Delphi Page
|  |  |  |  |  |  |  |  |  |
|  |  |  |  |
|