Balss Posted April 12, 2008 Report Posted April 12, 2008 Esmu nesen sācis mācīties PHP un vēlos izveidot iespēju sūtīt man e-pastu no manas mājas lapas. Problēma tā, ka e-pasta sūtīšanas iespēja strādā, bet teksts nāk ar kropļojumu mīkstinājumu un garumzīmju vietā. Lūdzu palīdzību, ko es neesmu pareizi sarakstījis programmā ! Mana rakstītā programma: <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> </head> <body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_REQUEST['email'] ; $subject = $_REQUEST['subject'] ; $message = $_REQUEST['message'] ; mail( "info@futuremystery.com", "Subject: $subject", $message, "From: $email" ); echo "Thank you for using our mail form"; } else //if "email" is not filled out, display the form { echo "<form method='post' action='php.php'> Email: <input name='email' type='text' /><br /> Subject: <input name='subject' type='text' /><br /> Message:<br /> <textarea name='message' rows='15' cols='40'> </textarea><br /> <input type='submit' /> </form>"; } ?> </body> </html>
Recommended Posts