goldrain
Members-
Content Count
22 -
Joined
-
Last visited
Everything posted by goldrain
-
heyy...I have a problem,I have an account in another hosting service, but the SMTP and sendmail was disabled for my account.and I want to send mail to all people who join my site (with php script to send that mail), so I can't send mail to them.for more information, my operating sistem is Linux and php version 4.4.1. I hear when drupal send e-mail without SMTP, is that true??? and can I send mail when I already installed Drupal in my hosting service???? Please give me solution, how can I send an e-mail when my sendmail and SMTP disabled!!!!
-
Heyyy.... GTA San Andreas is a little funny, you can do anything in this game It has a lot of mission to finished and don't play it without cheat with cheat...you can get complete your weapon and got a jetpack too. try the cheat in cheatbox.de although this game show violence, but it has another side that a kind of funny you can walk from a town to another, steal a vehicle(plane,train,boat,car,motorcycle), and do another activity... don't do a violence activity in this game if you didn't want to see it, because in this game, you can kill peoples, explode cars, and do terorism activity.
-
Talk About Favorite Online Games GunBound is a free, multiplayer game
goldrain replied to gunbound's topic in Computer Gaming
GunBound a little funny, but try to play FFXI or ragnarok okay?????they're more interesting than gunbound..... -
Recommended Online Games Recommend a Game here
goldrain replied to FirefoxRocks's topic in Computer Gaming
play this online games:1. FFXI (this is the best I think....you must play it!!!!)2. ragnarok(have a fun to play this games together with tour friends...) -
uhh...I still playing a lot of games- Kingdom hearts2- gundam UNION vs ZAFT- final fantasy X-2- final fantasy XII- GTA san andreas- Fatal frame 3- The sims 2- the urbs Sims in the city- Valkyrie Profile- Yu gi Oh(almost all series)- Grandia 3- Tales of legendia- FIFA 2006- Star ocean 3- Wild arm (the 4th detonator)- Harvest moon (a wonderful lives)- Harvest moon (save the homeland)- GTA vice city- and many more.....but there are no one I had finished.....to many games ya?????
-
hmmm....online games????it's difficult to choise which are the best.....but I love playing FFXI and ragnarok everytime...why I play these games....for FF, maybe it because I'm love to play all series of Final Fantasy and other square enix gamesand for ragnarok, I because all my friends play it.... so I only join them....Both ragnarok and FFXI are good....I love them!!!!
-
sorry...I forget to write it....about the lay out please....and can I insert my own themes????sorry, But I'm new in Post Nuke!!!!!
-
heyy...did you know a PC game called King Of The Road...it's an interesting game because in this game, you play as real driver with very large area. You can earn money by deliver somethings, but if you didn't reach it in 1st, 2nd or 3rd you will lose....and I still learn many tricks in this game....please help me with some tips!!!!!!
-
Fifa is not bad....but I think WE more exiting than it....
-
hii....please help me about postnuke....I try to edit the site, so I opened their official site, but I still didn't know where Directory I must change the page????please everybody...help me!!!!
-
Kingdom Hearts 2Final Fantasy X, X-2, XIIFatal Frame 3
-
heyyyy..... Did you play Kingdom heart 2 in ps2It is weird games (because square enix create it with Disney)but.... It is so cooo...llllet's talk about it!!!!!
-
Looking for a good RPG for the PS2 Can anyone recommend me some?
goldrain replied to HiDDeNMisT's topic in Computer Gaming
These are the best games:1. Kingdom Heart 22. Final fantasy X, X-2,X113. Fatal Frame 3 -
If you play ps 2.....better play this gameKingdom hearts 2Final fantasy 12Fatal Frame 3If you pla PC games....play this:GTA San AndreasThe Sims 2several games really old but very cool yo play
-
hey... where you got it...are that game as interesting as megaman battle network 3.....
-
Fantacy Game Breath Of Fire who of you have ever heard of this game?
goldrain replied to Morne's topic in Computer Gaming
hey.... i know this game.... quite interesting.....but I never play it again when I reach chamba, but can you tell me what happen in the end????I like the moment when ryu meditate to a dragon... what about you???? -
Did square enix create it for ps2 too.... I think some fans of FF wil upset if they made it only for ps 3 because they must buy ps3 first to play....
-
final fantasy 7, dirge of cerberus(DOC) is one of the most interesting games that i have...try to play it!!!!in (DOC) you play as Vincent Valentine, one of Cloud friends. In this game you using a gun to defeat your enemy. You can costumize your weapon to 3 different type, but Vincent will transform to a monster with new gun. so you have 4 type of gun to defeat your enemy.I think this game not really RPG, but action. Its caused bacause Vincent is a individual person. He almost never fought together with other person (except with Cloud and friends in final fantasy 7). dont mind it...just play....this game is very cool....let's play
-
wanna learn about mail form : -------------------------------------------------------------------------------- Example 1 This is simple sendmail script (to easy, right???): <?php $txt = "First line of text\nSecond line of text";// Use wordwrap() if lines are longer than 70 characters $txt = wordwrap($txt,70);// Send email mail("somebody@example.com","My subject",$txt); ?> -------------------------------------------------------------------------------- Example 2 U can send an email with extra headers: <?php $to = "somebody@example.com"; $subject = "My subject"; $txt = "Hello world!"; $headers = "From: webmaster@example.com" . "\r\n" . "CC: somebodyelse@example.com";mail($to,$subject,$txt,$headers); ?> -------------------------------------------------------------------------------- Example 3 U can send an HTML email like this example (note: you recuired MIME to send it) <?php $to = "somebody@example.com, somebodyelse@example.com"; $subject = "HTML email";$message = " <html> <head> <title>HTML email</title> </head> <body> <p>This email conatins HTML Tags!</p> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>John</td> <td>Doe</td> </tr> </table> </body> </html> ";// Always set content-type when sending HTML email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";// More headers $headers .= 'From: <webmaster@example.com>' . "\r\n"; $headers .= 'Cc: myboss@example.com' . "\r\n";mail($to,$subject,$message,$headers); ?> more info: 1. don't insert this mark "" in your $message or you will get an error 2. you can insert avvariable in your mail like this script: -------------------------------------------------------------------------------- Example 4 HTML email that send users information <html> <body> <form method=post action=""> <input type=text name=textfield> <input type=submit name=button> <?php if (isset ($_POST["button"])) { $to = $_POST["textfield"] ; $subject = "HTML email";$message = " <html> <head> <title>HTML email</title> </head> <body> <p>This email conatins HTML Tags!</p>" ; $message.= "<p>your e-mail :".$_POST["textfield"] ; $message.=" NICE TO MEET YOU!!!</p> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>John</td> <td>Doe</td> </tr> </table> </body> </html> ";// Always set content-type when sending HTML email $headers = "MIME-Version: 1.0" . "\r\n"; $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";// More headers $headers .= 'From: <webmaster@example.com>' . "\r\n"; $headers .= 'Cc: myboss@example.com' . "\r\n";mail($to,$subject,$message,$headers); echo "mail was sent" ; } else { echo "mail can't send" ; } ?> </body></html> hope this useful for you!!!!
-
after you have uploaded your site to a web server, sometimes you will find a strange message in your site when you open it: - Warning: session_start(): Cannot send session cookie - headers already sent by (output started at ............... - Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at ........... - Warning: Cannot modify header information - headers already sent by (output started at........................... I tried to analyse what false that happened in that script, here are the result : >> all things that happen above caused by 1.there are blank lines in the end of your script after "?php>" code. better if you try to upload with ASCII mode for pages. 2.The PHP function such as headers(), used with start_session(), produces HTML headers. When the PHP fragments are placed in the body of the HTML, this causes errors because the PHP fragments are trying to put HTML headers within the HTML body. Put the PHP fragments before the HTML body tag. I hope this is useful for you which has same problem with me before.