Hello,
I have created a POP3 web page to check my mail. What I am having problems with is formatting the message. This is where I get the message by sending the command to POP3:
$msg = @fputs($fp, "TOP 2 10". "\r\n");
$new = explode(" ", $msg);
print "Size Of Array: " . sizeOf($new);
for($m = 0; $m < sizeOf($new); $m++)
{
print $new[$m] . "<br><br>";
}
The problem is that $msg does not get formatted or split using the explode command. Is there any other way of formatting this string.
Bill