verhouding 1 op ?? open link
CrawlBackwards
02/02/2007 11:40:00Jos schreef op 02.02.2007 11:28:
Even uit de losse hand
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
// De teller op de server (als idee, dit werkt zo niet geloof ik)
function count() {
$tf = 'telfile.txt';
echo $adTeller = file_put_contents($tf, ((file_get_contents($tf))++) || 1);
}
?>
<html><head>
<script type="text/javascript">
// Losse functie voor javascript, open een random site, 1 op de 5
window.setTimeout(function(sites){
if(<?php count() ?> == 5)
with(Math)
window.open(sites[(round(random()*sites.length))-1 || 0]);
}(
[
'http://www.google.nl/',
'http://www.tweakers.net/',
'http://www.phphulp.nl/'
]
), 1000);
</script>
</head><body>
</body></html>
// De teller op de server (als idee, dit werkt zo niet geloof ik)
function count() {
$tf = 'telfile.txt';
echo $adTeller = file_put_contents($tf, ((file_get_contents($tf))++) || 1);
}
?>
<html><head>
<script type="text/javascript">
// Losse functie voor javascript, open een random site, 1 op de 5
window.setTimeout(function(sites){
if(<?php count() ?> == 5)
with(Math)
window.open(sites[(round(random()*sites.length))-1 || 0]);
}(
[
'http://www.google.nl/',
'http://www.tweakers.net/',
'http://www.phphulp.nl/'
]
), 1000);
</script>
</head><body>
</body></html>
count is gereserveerd, en de functie heeft geen return value.