39 lines
370 B
Plaintext
39 lines
370 B
Plaintext
|
|
// index.php
|
|
<html>
|
|
<head>
|
|
<script>
|
|
$(function(){
|
|
$.get('ad.php', function(html){
|
|
$('#ad').html(html);
|
|
})
|
|
})
|
|
</script>
|
|
</head>
|
|
<header>
|
|
</header>
|
|
<body>
|
|
<div id="content">
|
|
UUUUUU
|
|
<div>
|
|
<div id="ad"><div>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ad.php
|
|
<html>
|
|
<head>
|
|
|
|
</head>
|
|
<body>
|
|
1677777777777777
|
|
</body>
|
|
</html> |