iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
Ok i got it all inplace but when i try it out i get this "; } elseif($email == "") { echo "Please fill out your email address."; } elseif($email == $conf_email) { echo "Your emails do not match."; } elseif($sub == "") { echo "Please fill out a subject."; } elseif($msg == "") { echo "Please fill out a message."; } else { $to = "gregtreich@gmail.com"; $subject = "$sub<$name, $email>"; @extract($_POST); mail($to,$subject,$msg,"From: $name <$email>"); { echo "Email SentYour name is: $nameYour email is: $emailAn e-mail was sent to: $toWith the subject: $subjectAnd the mesage was: $msg"; } else { echo "Error!There was a problem sending the mail. Check your code and make sure that the e-mail address $to is valid"; } ?> i changed the line with the ////'s to $to = "gregtreich@gmail.com";please help. Thanks
-
lol funny
-
Thanx dude, sorted it now. Im also looking for 2 moderators, (just to make sure the forums are running ok) hopefully with some experience in using phpbb http://forums.xisto.com/
-
haha ive seen this proof before, but its funny however, some girls are really cool and i like chilling with some girls
-
Hi Guys, Check out my new FNH site Its not completed yet. But ive got my forum running.. I`d be really greatful if you would join my forums, Even if you dont post :wink: http://forums.xisto.com/
-
It can take from 1 minute to 24 hours. i think someone are gonna respond very fast! They usally do!You will get an email to that email you did registrer with!So noo need to worry
-
Thanks for the info, just a little bit ago I got an email back from cops@freenukehosting.com telling me to go to that site. It took me a while to get in there though. I thought it was broken. But after many attempts I finally was able to get in. I set up an account a couple of days ago and was just able to get in there a couple of hours ago. But, thanks for the help.Oh, by the way, does anyone have any idea how long this will take? And will I be notified or do I just have to keep checking to see if my site will work?
-
-Link removed- this is my private site!Let me know what you think of it
-
not this problem ,i set a passward which more than complex sorry,i made a mistake,its OK now~~thanks for your help~ :DPLZ lock this topic~
-
Go here and register u! They have moved! it says that also! http://forums.xisto.com/ This is working good! Register an account then make an new topic there! And u will get support fast!
-
Must I be active in the forum to maintain my hosting?
iGuest replied to iGuest's topic in General Discussion
What would a "rare" word be? I would not have considered "fortnight" to be rare. I would suggest if you don't know what a word is, look it up. http://www.merriam-webster.com/ -
i am gonna buy this Paid Web Hosting soon!Its very good this free hosting, but i will use this free like an test.I really dont like it to be free too long :-)So soon its Christmas, and the Santa Claus will be here :DSo what did u wish to Christmas gift ?Are someobdy gonna celebrate it outside the country or?I am gonna do it, i live in sweden so i am going to norway on tuesday :DHave an nice day
-
Must I be active in the forum to maintain my hosting?
iGuest replied to iGuest's topic in General Discussion
It would be nice for non-english speaking members that when someone uses a rare word, it is followed by its meaning in parentheses. This would avoid more messages to explain its purpose. -
Gravitational Time-dilation Time and Black Holes
iGuest replied to iGuest's topic in Science and Technology
I agree with most of what your saying but, we already know that an object can travel at the speed of light the trick to it is creating that much power, right now if they would make a space shuttle that ran off nuclear power it would be able to travel at the half the speed of light, but I do not know why they havent tried it yet but nasa allways studies things forever before they actualy try anything new,lolwe have computers that operate at the speed of light and oh yeah light travels at that speed also and some microparticals can travel faster than the speed of light even though it hasnt been proven in a lab -
My favourite music video is "Melendi - Out News"
-
I can help you out like an moderator/admin.I know much about cPanel and more server stuff!But if i was you admin, i would begin to take the moderators!Because u know them better! :DTake care
-
I am testing a phpBB setup at the moment and have noticed both on my phpBB testsite AND the FNH phpBB site, that indexing of posts takes time: if I post somthing, the post will get indexed and be searchable after some time... sometimes an hour or so. Is there a way to adjust this somehow, so the indexing is done more frequently?Regards,davidw
-
yeah its paid but its nicepaxions cool too
-
Haha nice one.
-
[i made i copletely new script for you and i didn't test it , so if you have problems tell me so i can fix it] Ok, this is my script so you can do whatever with it. What it does: It first checks that you filled in all the fields and that your emails match so you can answer. Once you fill in all the fields and hit send, it tells you it was sent, your name, your email, to who it was sent, what was the subject, and what the mesage was. Or if there was a problem it gives you an error. !!You have to leave the file names the same!! Your gonna have to change the folowing in the file(s): In sendform.php you have to set the variable $to to your email (it's replaced by a load of slashes) --------------------form.php-------------------- <html><body><form name="contact" method="post" action="sendform.php"><table align="center" cellpadding="4" cellspacing="0"> <tr> <td>Your Name:</td> <td><input type="text" name="name"></td> </tr><tr> <td>Email:</td> <td><input type="text" name="email"></td> </tr> <tr> <td>Confirm Email:</td> <td><input type="text" name="conf_email"></td> </tr> <tr> <td>Subject:</td> <td><input type="text" name="sub"></td> </tr><tr> <td>Message:</td> <td><textarea name="msg" cols="20" rows="6"></textarea></td> </tr> <tr> <td colspan="2" align="right"><input type="submit" name="submit" value="Submit"></td> </tr></table></form></body></html> --------------------sendform.php-------------------- <?phpif($name == "") { echo "Please fill out your name.<br>";}elseif($email == "") { echo "Please fill out your email address.<br>";}elseif($email == $conf_email) { echo "Your emails do not match.<br>";}elseif($sub == "") { echo "Please fill out a subject.<br>";}elseif($msg == "") { echo "Please fill out a message.<br>";}else {$to = "///////////////////////////////////////////////////////////////////////////////";$subject = "$sub<$name, $email>"; @extract($_POST); mail($to,$subject,$msg,"From: $name <$email>");{echo "<center><h1>Email Sent</h1></center><br>Your name is: <b>$name</b><br>Your email is: <b>$email</b><br>An e-mail was sent to: <b>$to</b><br>With the subject: <b>$subject</b><br>And the mesage was: <b>$msg</b>";} else {echo "<center><h1>Error!</h1></center><br>There was a problem sending the mail. Check your code and make sure that the e-mail address $to is valid";}?> Ok, to use it in your site just use php include, you know what that is right? 8) ENJOY!
-
Oh, it looks nice... hold on...Edit:Ok,#1 i think it would be beter if you changed the Url to the way it was#2 Mabye change the bg and we'll see if it looks beter on another one#3 Umm it seem a little empty...Just ideas
-
ok, here's another version, lightly altered
-
Yeah, i like this one, now how do i put it in my signature? i tried html and didn't work... what should i do?