minetest-extensions/search.php

20 lines
506 B
PHP
Raw Normal View History

2012-09-07 10:20:39 -07:00
<?php
include "scripts/setup.php";
$query=$_GET['id'];
$mode=$_GET['mode'];
if ($mode=="")
$mode="tags";
2012-09-07 10:20:39 -07:00
$page_title="Search for $query";
$page_description="Search for the tag '$query'. Find mods, texture and sound packs.";
if ($mode=="sb"){
$page_description="Search for '$query'. Find mods, texture and sound packs.";
}
2012-09-07 10:20:39 -07:00
include "scripts/pageheader.php";
include "scripts/loadmods.php";
include "scripts/pagefooter.php";
?>