X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=photo-tags.git;a=blobdiff_plain;f=index.php;h=a2de85ae3ff7cdd432afa29051d14bbf98baa0a1;hp=3014924484f2de1ddbc4fa3cf40959da0ea277e0;hb=22bd56c3686530b61c930e728eaade45ee17d9cc;hpb=d057c592ea7adea11dd8584570fb70540758343a diff --git a/index.php b/index.php index 3014924..a2de85a 100644 --- a/index.php +++ b/index.php @@ -5,88 +5,97 @@ $webbase=$iniarray["webbase"]; $dbprefix=$iniarray["dbprefix"]; $admin=$iniarray["admin"]; $title=$iniarray["title"]; +$N=$iniarray["pics_per_page"]; /* end parse ini-file */ + +/* parse flags */ +if(isset($_REQUEST["page"])) + $page = intval($_REQUEST["page"]); +else + $page = 1; + +if(isset($_REQUEST["tag"])) + $tags = htmlentities($_REQUEST["tag"]); +else + $tags = ""; + +if(isset($_REQUEST["pic"])) + $pic = intval(htmlentities($_REQUEST["pic"])); +else + $pic = -1; +/* end parse flags */ + +/* autoversioning of js and css files */ +function autoversion($file) +{ + /* changes the file name of e.g. css/style.css to css/style..css/js + * this way the browser can cache the file and will reload it if the file changed + * needs to have .htaccess set up correctly to link back to css/style.css */ + + /* only use it for file that have an absolut path */ + if(!file_exists(dirname($_SERVER['SCRIPT_FILENAME']). '/' . $file)) + return $file; + + $md5 = md5_file(dirname($_SERVER['SCRIPT_FILENAME']). '/' . $file); + return preg_replace('{\\.([^./]+)$}', ".$md5.\$1", $file); +} + +/* The basic layout */ ?> + <?php echo htmlspecialchars($title) ?> - - - + +" /> +" /> -
test
+

- - + + + -
+
+
+ Search for tag: + + +
+ Current tags: + +
+ +
+ +
+