I got script what read from database and manipulate it so on the end I got $result array... on one server
Bu nesneyi serialize ve bu yüzden bu $ sonuç dizi ikinci bir sunucu üzerinde diğer komut için kullanılabilir olabilir diğer komut onu geçmek mümkün değildir ...
Ben ilk sunucusu var:
return serialize ( $results );
ve ikinci hakkında:
$data = unserialize ( file_get_contents ( 'http://www.......com/reader.php' ) );
...but there is no communication between .... What I am doing wrong ?
Bensiu