Nasıl UDP üzerinden bir IP adresi PHP ile veri gönderebilir?
Nasıl diğer bilgisayardaki verileri recive olabilir?
<?php
$fp = pfsockopen( "udp://192.168.1.6", 9601, $errno, $errstr );
if (!$fp)
{
echo "ERROR: $errno - $errstr<br />\n";
}
socket_set_timeout ($fp, 10);
$write = fwrite( $fp, "kik" );
//$data .= fread($fp,9600);
//echo "$data<br>";
fclose($fp);
echo "<br>Connection closed ..<br>";
if (!$write) {
echo "error writing to port: 9600.<br/>";
next;
?>
Bu kod ben başka bir bilgisayarda okumak bir program ile "KiK" gönderir, ama nasıl ben bunu tarayıcıda görebilirsiniz?