Example:
This will authenticate you, rest is up to you.
agree.
PHP Code:
<?php
$host = "http://gateway.mig33.com";
$port = 9119;
$user = "username";
$pw = "password";
$socket = fsockopen($host,$pw);
fputs($socket,"USER ".$user); // sends username assuming USER is command
fputs($socket,"PASS ".$pass);//sends password
?>
Originally posted by CreativityKills
View Post
Comment