(2 май 2016, 07:58) (
0/
0)
[
0]
Через ajax отправь данные на сервер, а там через php проверяй
Добавлено 02.05.16 в 08:29:29:
index.html
<div class="test">
<img scr="test.png">
</div>
<script>
wid = $('.test').width();
widImg = $('img').width();
$(document).ready(function(){
setInterval(Inf, 1000);
});
function Inf(){
$.ajax({
url: 'твой url до inf.php',
'method': 'POST',
data: { 'width': wid, 'widthImg': widImg },
success: function(res){
$('#test').html(res);
}
});
}
</script>
<div id="test"></div>
obr.php
<?php
$wid = $_POST['width'];
$widImg = $_POST['widthImg'];
echo $wid / $widImg;
?>
Добавлено 02.05.16 в 08:30:48:
* 'твой url до obr.php',