I'm trying to create 'Contact Us' ViewController, which can send an e-mail , but I don't want to use the MFMailComposeViewController because I want to set the e-mail address which receive the message.
So..
I tried to create a viewController which take the all the message data from the user and send it to a PHP page which will do the rest of progress, so I tried to send the parameters using GET Method to the PHP page, which is good for short parameters such as 'name' or 'phone number', but I couldn't use this method for long text such as 'message content'. So I decided to use POST Method, but I couldn't find a way that could send the data from my app to PHP using POST Method
I'm trying to send three NSString with the names (MsgTitle, MsgCity, MsgContent)
My PHP code
<?php
$MsgTitle = $_POST['title'];
$MsgCity = $_POST['city'];
$MsgContent = $_POST['description'];
?>
I hope there is an easy way to do that, and thank you in advance ...