JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser .
Hi Pixie,
You need to Log into your CPanel account and add a FTP account using the tool on there. Once you have created one, all the FTP details are displayed.
Ziyad
Try these
<?PHP
$theName = $_POST['theName'];
$theEmail = $_POST['theEmail'];
$theMessage = $_POST['theMessage'];
$to = "smartwebsolutions@mail.com";
$subject = "Flash contact Form";
$message = "Name: " . $theName;
$message .= "\nEmail: " . $theEmail;
$message .= "\n\nMessage: " ...