My code is
$newname="Mary";
$mbox = imap_open ("{".gethostbyname("domainname.com").":110/pop3}", "username", "password");
if(@imap_createmailbox($mbox,"{".gethostbyname("domainname.com").":110/pop3}INBOX.$newname")) {
} else {
print "could not create new mailbox: "."<br>\n".imap_errors()."<br>\n";
}
the print out is could not create new mailbox:
what should be the INBOX value????
Pls help me!!!!