Просмотр файла service/smi/index.php

Размер файла: 1.39Kb
<?php

//mod BlackStar
require_once ('../../includes/start.php');
require_once ('../../includes/functions.php');
require_once ('../../includes/header.php');
include_once ("../../themes/header.php");
show_title('Смайлогенератор');

error_reporting(0);
require 'functions.php';
if(file_exists('faces/'.$_GET['f'].'.gif') && file_exists('lips/'.$_GET['l'].'.gif') && file_exists('eyes/'.$_GET['e'].'.gif')){
print '<div class="b">
Ваш смайл: <a href="sm_gen.php?f='.$_GET['f'].'&amp;l='.$_GET['l'].'&amp;e='.$_GET['e'].'"><img src="sm_gen.php?f='.$_GET['f'].'&amp;l='.$_GET['l'].'&amp;e='.$_GET['e'].'" alt="smilie"/></a>
</div>';
}

print '<form method="get" action="'.$_SERVER['PHP_SELF'].'">
<div>
Создание Смайла:<br/>
<i><b>Лицо: </i></b><select name="f">';

option('faces',$_GET['f']);

print '</select><br/>
<i><b>Глаза:</i></b> <select name="e">';

option('eyes',$_GET['e']);

print '</select><br/>
<i><b>Рот:</i></b> <select name="l">';

option('lips',$_GET['l']);

print '</select><br/>

<input type="submit" value="Создать" /><br />
';

echo'<br><img src="../../images/img/act.gif" alt="image" /> <a href="../index.php?'.SID.'">Сервисы</a><br>
<img src="../../images/img/homepage.gif" alt="image" /> <a href="../../index.php?'.SID.'">На главную</a>';
include_once ("../../themes/footer.php");
?>