Main Menu
Languages
EnglishÓêðà¿íñüêàÐóññêèé
Friends
Sponsors
Google Site Search
I recommend
Partners
Buttons & Counters
Site Statistics Valid HTML 4.01 Transitional! Valid CSS! Hosted by firstVDS.ru Powered by PHP eA logo Search Engine Optimization and Free Submission Óêðàèíñêèé ìåäèà-ïîðòàë
Source of /misc/showsource.php
 
<?php
/*
 * Show Source Script v0.3
 *
 * (c) 2006 L¸ppa <lacontacts[at]gmail[dot]com>
 *
 * Site: http://www.leppsville.kiev.ua
 *
 */

    
require("../config.php");

    
$mtpl = new COBTemplate($root.$templates."index.tpl");

    
prepare($mtpl,$text_source." /".$_GET["file"]);

    
// Page contents
    
$mtpl->data("Contents");

    echo 
$text_source." <b>/".$_GET["file"]."</b>\n<div class=\"hr\">&nbsp;</div>\n";
    if (
preg_match("/^misc\\//",$_GET["file"]) != 0)
        
highlight_file($root.$_GET["file"]);
    else
        echo 
"Forbidden!!!";
    echo 
"<div class=\"hr\">&nbsp;</div>\n";

    
// Sending to output
    
echo $mtpl->finish();

?>