$.ajax({
url: "some.php", // адрес куда отправляем запрос
success: function(data){
alert( "Прибыли данные: " + data ); // data можем вставлять в любое место $('#element_id').html(data);
}
});
$mail = file_get_contents('mail.tpl');
$mail = str_replace('{name}', 'value', $mail);
$mail = str_replace('{key}', 'value', $mail);
$mail = str_replace('{phone}', 'value', $mail);
https://192.168.1.1:1500/ispmgr?authinfo=login:pass&out=json&func=auth&lang=ru
https://192.168.1.1:1500/ispmgr?auth=Номер_сессии&out=json
Content-type: application/x-www-form-urlencoded
Cookie: ispmgrses5=Номер_сессии;
ISP-Client: Web-interface
Referer: https://192.168.1.1:1500/ispmgr
[sok] => ok
[func] => file.edit
[elid] => file.php
[plid] => www
[full_filepath] => www/file.php
[encoding] => UTF-8
[fdata] => FILE CONTENT
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']);
function($params){ return trim( $params ); }