Можно ли этот факт передать на сервер?
Например, чтобы в некoем РНР файле control.php сформировалась переменная
$control = "yes";
$control = "yes";
$.fn.openWindow = function() {
// как открылось окно, пропиши тут запрос на сервер
var el = $(this);
$.post('control.php', {'open' : 1});
<script type="text/javascript">
$(document).ready( function() {
$(".subscribe-me").subscribeBetter();
});
</script>
<div class="subscribe-me">
<h2>Подписка на обновления</h2>
<a href="#close" class="sb-close-btn">x</a>
<p>Получайте самые последние новости на свой e-mail</p>
<form>
<input type="email" placeholder="Email адрес">
<input type="submit" value="Получать">
</form>
</div>
$.fn.openWindow = function() {
var el = $(this);
if(el.is(":hidden") && shown == false && animating == false) {
animating = true;
$.fn.openWindow = function() {
$.post('control.php', {'open' : 1});
var el = $(this);
if(el.is(":hidden") && shown == false && animating == false) {
animating = true;
<script type="text/javascript" src="/my-js/jquery.subscribe-better.js"></script>
$.post('/my-files/control.php', {'open' : 101});
<?php
header("Content-type: text/html; charset=utf-8");
$open = $_POST['open'];
$date = date("H-i-s" );
file_put_contents($date . ".txt", $open);
<script type="text/javascript" src="/my-js/jquery.subscribe-better.js"></script>
$.post('my-files/control.php', {'open' : 101});
'/my-files/control.php'
Цитата |
укажи полный путь к файлу, от корня.'/my-files/control.php' |
header("Content-type: text/html; charset=utf-8");
$open = $_POST['open'];
file_put_contents("1.txt", date("H-i-s" ));
$.post('my-files/control.php', {'open' : 101});
$.post('/my-files/control.php', {'open' : 101});
Цитата (Владимир55 @ 18.02.2016 - 07:15) |
Имеет ли эта проблема решение? |
Request URL:http://fh7929mi.bget.ru/my-files/control.php
Request Method:POST
Status Code:301 Moved Permanently
Remote Address:91.106.207.14:80
Location: /my-files/control.php/
$.post('http://fh7929mi.bget.ru/my-files/control.php', {'open' : 101});
$.post('/test/my-files/control.php', {'open' : 101});