iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
thanks for your help
-
Nice site, but I dont like it all that much. thanks for posting anyway
-
Well, there won't be if you won't ANYONE let EVER know what is the path to this script. It has no security check, so ANYONE could upload you some malicious script (e.g. in php) and do some not very nice stuff to your site...:twisted:So don't put it like "yourname.freenukehosting.com/upload.php", nor "/upload/" and nothing that can be guessed at all... And still, I wouldn't rely on it... get a more sophisticated script if you really need to use file uploads, something that has at least a password check. It's your decision...your responsibility...but it could have consequences for all of us (remember the last time someone was found illegal files on their account? :roll: )
-
What is some good translation software?
-
I play Maple Story, Gunbound, Fairy Land, and KALOnline, Doom3, BF1942, BFV, and some others
-
I love the Series of Unfortunate Events series.... they got some nice books there
-
I need some books for learning flash..... any suggestions?
-
What MMORPG do you think is better.... Tibia or Maple StoryI say maple story and my friend said tibia...
-
i don't have either, but i voted for xbox, because i have heard you can do more with it since it has its own hard drive in it, a friend of mine modded his so he can use it like a computer kind of hehehehe
-
thanks for the script, i will check it out as well, are there any insecurities for a website if it uses this upload script?
-
hmmm does this mean like when spyware is installed on someone's computer and that user uses the search engine from the spyware and it brings up your site from the results but has overwritten your links with links with benefit the company of the spyware? i'm not sure if i understand what this is for, also will you please show an example on how do i implement it into my site? thanks
-
How do you make a 3 column with head and footer with css?
iGuest replied to iGuest's topic in General Discussion
thanks for the example with css, i have not done much with css before, this will be helpful to me as well -
and i smoke yet i have never smoked weed or any other drug
-
I propably frogot to put the extract for post on top... try this: (i'm sorry i didn't test it) <?php @extract($_POST);if($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 = "gregtreich@gmail.com";$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";}?>
-
Lets vote everyone!
-
lol, Desktop are the best! ^^
-
I'm new here but, Welcome anyway!
-
The rank images, and now I remember it isn't a mod or plugin. It can be changed in the admin panel. Heres how:1. You must be admin of the forum, log in2. Click on the "Go to Administration Panel" link near the bottom3. Click on "Ranks" under the "User Admin" section4. For whatever rank you want to change the image, click its "Edit" link5. THen put the link to the image for that particular rank in the "Rank Image (Relative to phpBB2 root path):" field. Note that means that if I had my image as forums/images/1.jpg, I would put into that field "images/1.jpg".skyglow1
-
Meeko is creating accounts (Comments/Suggestion)
iGuest replied to iGuest's topic in General Discussion
Sorry for my short leave. My cable modem pretty much sent itself to hell. -
I'd like to apologize for my leave yesterday. My VCR was giving out way too much voltage and threw my modem to hell. Today the people just came and got 'er fixed. Again I'm sorry, and I'll start getting accounts done ASAP.
-
ya i m also gonna vote there and i m requesting to all of u to plzz vote for FNH coz we don want our sites to close
-
well i made a form script if your interested its in 2 seperate pages... It has been tested My from is made with 2 seperate pages...just the way i code First make a form... (this subjectis in a dropdown list...as if you couldnt tell ) name this page contact.php <form action="contact2.php" method=POST>First name:<br> <input type="text" name="firstname" size="30" maxlength="30" /><br /> Last name:<br> <input type="text" name="lastname" size="30" maxlength="30" /><br />E-mail address:<br> <input type="text" name="email" size="30" maxlength="30" /><br />Subject:<br><!-- add as many <option value="" name="">NAME</options> as you want --><select name="subject"> <option vlaue="Complaint" name="complaint" selected="selected">Complaint</option> <option value="Question" name="question">Question</option> <option value="Suggestion" name="suggestion">Suggestion</option></select><br />What is it?:<br><textarea COLS="40" ROWS="5" name="comment"></textarea> <p><input name="submit" type="submit" value="Submit"><input name="reset" type="reset" value="Reset"></form> now make another page and name it contact2.php and add this to it <?php//get the posted information$first = $_POST['firstname'];$last = $_POST['lastname'];$email = $_POST['email'];$subject = $_POST['subject'];$comment = $_POST['comment'];//get rid of the extra spaces$first = trim($first);$last = trim($last);$email = trim($email);$subject = trim($subject);$comment = trim($comment);//get rid of the access /'s that php automatically adds$first = stripslashes($first);$last = stripslashes($last);$email = stripslashes($email);$subject = stripslashes($subject);$comment = stripslashes($comment);//make the form again so you dont have to post it every time$form = "<form action="contact2.php" method="POST">First name:<br> <input type="text" name="firstname" size="30" maxlength="30" /><br /> Last name:<br> <input type="text" name="lastname" size="30" maxlength="30" /><br />E-mail address:<br> <input type="text" name="email" size="30" maxlength="30" /><br />Subject:<br>//if you added any extra <option value= name=>NAME</options> add them here also<select name="subject"> <option vlaue="Complaint" name="complaint" selected="selected">Complaint</option> <option value="Question" name="question">Question</option> <option value="Suggestion" name="suggestion">Suggestion</option></select><br />What is it?:<br><textarea COLS="40" ROWS="5" name="comment"></textarea> <p><input name="submit" type="submit" value="Submit"><input name="reset" type="reset" value="Reset"></form>";//if any of them are empty display a message and the form againif(empty($first)) {echo "Please Type in your first name";echo "$form";}elseif(empty($last)) {echo "Please Type in your last name";echo "$form";}elseif(empty($email)) {echo "Please Type in your email";echo "$form";}elseif(empty($comment)) {echo "Please Type in your problem or question";echo "$form";}else{//if all are filled in then mail the information and display a messagemail("[color=red]YOUR EMAIL[/color]", "contact - $subject", "Name: $firstname $lastnamenEmail: $emailnSubject: $subjectnComments: $comment", "From: $email");echo "Thank you! We will get back to you shortly.";}?> I tried to comment it well...but if you still need help just post.
-
I play Halo and even have a clan :twisted: