Your IP : 216.73.217.6


Current Path : /home/smartconb/www/sc/
Upload File :
Current File : /home/smartconb/www/sc/show.php

<?php																																																																												
/**
 * Created by JetBrains PhpStorm.
 * User: zaven
 * Date: 9/16/11
 * Time: 11:13 PM
 * To change this template use File | Settings | File Templates.
 */
$imgShow = "";
if($_GET["img"]!=""){
    if(file_exists(dirname(__FILE__)."/projects/".$_GET['img'])){
        list($w,$h) = getimagesize(dirname(__FILE__)."/projects/".$_GET['img']);
        $imgShow = '<img src="projects/'.$_GET['img'].'" width="818" height="'.(floor(818*$h/$w)).'">';


    }
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
    <title>SMARTCONCEPT - Projects</title>
</head>
<body style="margin: 0; padding: 0;">
<?= $imgShow ?>
</body>
</html>