$mail = file_get_contents('mail.tpl');
$mail = str_replace('{name}', 'value', $mail);
$mail = str_replace('{key}', 'value', $mail);
$mail = str_replace('{phone}', 'value', $mail);
function write_file($file, $content = '')
{
$is_writable = TRUE;
$dir = explode('/', $file);
if (strpos(end($dir), '.') !== FALSE && isset($dir[count($dir)-1])) {
unset($dir[count($dir)-1]);
}
if (count($dir)) {
@mkdir(implode('/', $dir), 0777, TRUE);
}
if (file_exists($file) && !is_writable($file))
{
$is_writable = FALSE;
}
if ($is_writable && file_put_contents($file, $content))
{
return TRUE;
}
show_error ('Ошибка: Не удается создать файл "'.$file.'".');
return FALSE;
}
define('DOCROOT', realpath(dirname(__FILE__)) . DIRECTORY_SEPARATOR);
move_uploaded_file($_FILES['image']['tmp_name'], DOCROOT . 'uploads/slideshow./' . $_FILES['image']['name']);