Просмотр файла func.inc.php

Размер файла: 1.18Kb
<?
############################################
# + xDLs [x-devDownloads] v 1.0			   #
# + by Robert Klikics			   		   #
# + visit: http://x-dev.de for more stuff  #
# + License: GPL  			   			   #
# + You may not remove the Copyrights	   #
############################################
# + Filename: func.inc.php [functions]	   #
############################################

//settings:

$dbfile = "data.txt"; 			  // datei zum speichern der daten [absoluter Pfad]

//^^ settings

//ab hier nichts mehr дndern!!!

//die funktionen:

//alle DLs:
function allDL()
{
	global $dbfile;
	$datei = fopen($dbfile, "r");
	$text = "<table width=\"30%\"><tr>";
	while($zeile = fgetcsv($datei, 1000, "|")):
	$text = $text . "<tr><td>$zeile[0]</td><td>$zeile[2]</td></tr>";
	endwhile;
	$text = $text . "</table>";
	echo $text;
}

// einzelner DL:
function oneDL($id)
{
	global $dbfile;
	global $erg;
	if($erg[$id] == ""):
	$datei = fopen($dbfile, "r");
	while($zeile = fgetcsv($datei, 1000, "|")):
	$erg[$zeile[0]] = $zeile[2];
	endwhile;
	endif;
	echo $erg[$id];
}

//last DL:
function lastDL()
{
	global $dbfile;
	$datei = fopen($dbfile, "r");
	$erg = fgetcsv($datei, 1000, "|");
	echo $erg[0];
}

// end functions^^

?>