View Single Post
Old February 25th, 2013, 01:01 AM   #23
Yakaru
The Violet Vixen
 
Yakaru's Avatar
 
Name: Yakaru
Location: Issaquah, WA & Las Vegas, NV
Join Date: Jun 2012

Motorcycle(s): Perigee (250), Hotaru (250), Saturn (300), Pearl (300), Zero (S1000RR), Chibi (Z125), Xellos ('18 HP4R)

Posts: A lot.
MOTM - Jun '16
yay syntax error -- add a semi after echo "$out"

e.g.

<?php
$fp = fsockopen("127.0.0.1", 25, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "Connected to SMTP\r\n";
echo "$out";
fclose($fp);
}
?>
Yakaru is offline   Reply With Quote