xfr33 Posted July 15, 2008 Report Share Posted July 15, 2008 (edited) HTML <html> <head><title>Aizpildi formu</title></head> <body> <form method="post" action="sendmail.php"> Firmas nosaukums: <input name="email" type="text" /><br /> Vārds, uzvārds: <input name="name" type="text" /><br /> Kontaktinformācija: <input name="info" type="text" /><br /> Prece:<br /> <textarea name="prece" rows="6" cols="30"> </textarea><br /> <input type="submit" value="Apstiprinat" /> </form> </body> </html> PHP <?php $email = $_REQUEST['email']; $name = $_REQUEST['name']; $info = $_REQUEST['info']; $prece = $_REQUEST['prece']; mail( "daniels.pitkevics@lattelecom.lv", "Feedback Form Results", $prece, "From: $email" ); header( "Location: http://www.delfi.lv" ); ?> Nu uzreiz ieliku kodus, lai vēlāk kaut kur pa vidu nebūtu jābāž. :D Tātad lieta tāda. Viss itkā ir ok, bet uz manu epastu sūtās tikai $prece pie pašas ziņas, tjipa ne From, ne subject, bet message. Kā var dabūt lai $name un $info arī sūtas kopā ar $prece? Lai viss būtu vienā logā. Piemēram: From: nezinu@nezinu.lv Subject: Feedback Form Results Message: Vārds, uzvārds ( $name ): Aigars Kalvis Kontaktinformācija ( $info ): 29091001 Prece ( $prece ): Vajag kompi! Tā var izdarīt? Palīdzēsiet? itkā mēģināju kko darīt bet nesanāk :( :D Edited July 15, 2008 by xfr33 Link to comment Share on other sites More sharing options...
andrisp Posted July 15, 2008 Report Share Posted July 15, 2008 Klau, nevajag par vienu un to pašu n-tos topikus taisīt. Link to comment Share on other sites More sharing options...
dmitriy Posted July 15, 2008 Report Share Posted July 15, 2008 http://lv.php.net/language.operators.string Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 ok es pārējos sadzēsīšu! būs labāk? Link to comment Share on other sites More sharing options...
andrisp Posted July 15, 2008 Report Share Posted July 15, 2008 xfr33, nē, tas būtu vēl stulbāk. Labāk būs ja nākamreiz, kad atkal tieši par šo pašu formu gribēsi kaut ko jautāt, tad jautā tepat. Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 http://lv.php.net/language.operators.string Šai adresē tas par string ir pareizais? mēģinu tgd kko izmocīt... tad skatīsies kas sanāks... bet varētu arī kko izskaidrot... :D Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 andrisp ok :D sorry ja apgrūtinu, bet man nepieciešama info... Link to comment Share on other sites More sharing options...
andrisp Posted July 15, 2008 Report Share Posted July 15, 2008 $message = "Desa: ".$desa."\n"; $message .= "Desa: ".$desa."\n"; $message .= "Desa: ".$desa."\n"; Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 nu pēc andrap ieteikuma prasīšu.. :D tātad tgd visa informācija ir salikta kopā, bet kā atdalīt ar komatu un garumzīmes tur nav iespējamas? ja tiešām nav iespējamas tad zinu ka katra garumzīme ir apzīmēta ar savu kodu. kur tos kodus var atrast? Link to comment Share on other sites More sharing options...
andrisp Posted July 15, 2008 Report Share Posted July 15, 2008 Liec komatus stringā. Kur problēma ? "Bla bla:".$bla.",\n" Un garumzīmēm it kā vajadzētu strādāt tāpat (vismaz ziņas bodijā, ar subject reizēm ir problēmas). Kas tev notiek, ja mēģini sūtīt ar garumzīmēm ? Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 Ā Ē Ī O Ū tie visi ir garie burti ā ē ī o ū nu rādas tādi burti + vēl ir mīkstinājuma zīmes, kas arī tā pat iet. mans strings ir $name.= $info.= $prece, kurā vietā tur ir jāsaliek komati? Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 bāc te aizgāja mormāli tie garie burti! :D Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 & # 2 5 6 & # 2 7 4 nu tjip tā ir Link to comment Share on other sites More sharing options...
black Posted July 15, 2008 Report Share Posted July 15, 2008 Draudzīgi iesaku pagaidām izņemt ārā PHP no sava darba sludinājuma! Link to comment Share on other sites More sharing options...
xfr33 Posted July 15, 2008 Author Report Share Posted July 15, 2008 black :D skaidrs :D Link to comment Share on other sites More sharing options...
Recommended Posts