string vIP = getVisitorIP();
logMessage(vIP + " has entered your website.");
message(vIP, "Hello "+vIP+". Welcome to the site");
message(vIP, "Now " +vIP+". GET OFF MY LAWN!!!");
It will not output the second line what am i doing wrong?.....
im using a friends code, but im not new to coding and why is the second message not outputing......
You can only send 1 message
You can only send 1 message to the person. This is due to people that were spamming other people with messages. Try this:
string vIP = getVisitorIP();
logMessage(vIP + " has entered your website.");
message(vIP, "Hello "+vIP+". Welcome to the site"+char(10)+"Now " +vIP+". GET OFF MY LAWN!!!");
That will put the second message on a new line.
thanks
thanks