I have a Text View which will be used to input data on multiple lines. The string will then be posted to an URL to a php file and then to a MYSQL Database.
The problem i am having is that the string will not be send if i use multiple lines. I used the following to get around the fact that (Spaces) could not be sent via a URL:
hostStr = [hostStr stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
Is there anything similar to this I can do to get the string to return with multiple lines?