hit a page from PHP

A

Anonymous

Guest
The only way I could think of this working would be to use a function (probibly readfile() or fopen()) you open the site but not actually put on th page... I'll try it right now :)
 
Ok, I got it, heres all you need:

Code:
<?php
ob_start();
readfile('http://www.domain.com/counter.php');
ob_clean();
?>
First and last command will make sure nothing from the url gets printed on the page.
Middle command opens the page.

Any more questions, just ask :D
 
Back
Top