From OrganicDesign Wiki
<?
- Notify peer of changes onSave
- - see duscussion for why file_get_contents doesn't work
if ( $handle = fsockopen( 'organicdesign.co.nz', 1729 ) ) {
fwrite( $handle, "GET /change/peer/notify-peer.php HTTP/1.1\r\n\r\n" );
fclose( $handle );
}
?>