Jump to content

Zaithe

Members
  • Posts

    34
  • Joined

  • Last visited

Posts posted by Zaithe

  1. *sigh*...not working...It MUST be awardspace.com...First FreeWebs didn't accept mailto, then Ripway didn't except mailto so I moved onto PHP forms, then atspace didn't accept forms now awardspace says the send was succesfull but doesn't work...Ill have to find a peciffic website what allows PHP forms. Unless its something to do with the code.Ill go see if it works with a different thingy now.

  2. Might be hotmail then, ill try that, =D--EDIT--OMG! FFS! It said "Sucessfull" when I tried it but I still haven't received the E-Mail! =(Maybe its something to do with my form?:

    <form action="process.php" method="post">Username: <input type="text" name="username" size="30" maxlength="30" /><br />Password: <input type="text" name="password" size="30" maxlength="30" /><br />Real Name: <input type="text" name="realname" size="30" maxlength="30" /><br />E-Mail Address: <input type="text" name="email" size="30" maxlength="30" /><br /><input type="submit" name="submit" value="Send" /></form>

    =(Maybe you could post a htm file of your own and ill view its source?

  3. Okay, ive got one of them. Before this thread dies can you tell me what this means:Parse error: parse error, unexpected T_STRING, expecting T_VARIABLE or '$' in /home/www/website.awardspace.com/process.php on line 18

  4. OMG DIDN'T WORK! When I press "Send" it takes me to "process.php" and just shows me whats on process.php...Maybe its something to do with the form on my index.htm?:

    <form action="process.php" method="post">Username: <input type="text" name="username" size="30" maxlength="30" /><br />Password: <input type="text" name="password" size="30" maxlength="30" /><br />Real Name: <input type="text" name="realname" size="30" maxlength="30" /><br />E-Mail Address: <input type="text" name="email" size="30" maxlength="30" /><br /><input type="submit" name="submit" value="Send" /></form>

    Anything wrong there? Or it might be my website is use to upload my files, I use atspace.com. Maybe I should use ripway.com? I need to get this working by the end of the day lol. =DThanks for the all help Calvin.

  5. Okay, well ive used a tutorial to do a form mail send thing. But it isnt working, when you press send it takes you to process.php, Heres what ive got the on the index (The form bit):

    <form action="process.php" method="post">Username: <input type="text" name="username" size="30" maxlength="30" /><br />Password: <input type="text" name="password" size="30" maxlength="30" /><br />Real Name: <input type="text" name="realname" size="30" maxlength="30" /><br />E-Mail Address: <input type="text" name="email" size="30" maxlength="30" /><br /><input type="submit" name="submit" value="Send" /></form>

    Okay that works, but when you press "Send" it takes you to process.php:

    <?php@extract($_POST);$username = stripslashes($username);$password = stripslashes($password);$realname = stripslashes($realname);$email = stripslashes($email);mail('name@domain.com',$username,$password,"From: $realname <$email>");header("location:index.html");?>

    It isnt meant to take me to that page, its mean to use process.php to send me the stuff that put in and then redirect them to index.html...but its not working...So, is it because ive saved the form as index.htm, do I have to save that as form.php or something? But if I do that, there won't be a index page. Oh my god im confused...please help...

  6. Ok so you have a form that you want to submit the info to your email. In the action attribute of your form add this:
    <form name="form1" method="post" action="mailto:myemail@domain.com">...

    That's it!

    It doesn't work...when people click submit it comes up with the Outlook or whatever E-mail thing they use but when they press send, it doesn't send me a E-Mail...
  7. They are ads on the page arent they? Basically, I want loads of pop-ups to come up.

    I wouldn't advise floading the visitor with pop-ups, as you've said they are annoying and more than one is surely enough to drive the visitor away, for good!
    Thats why the website is called "Attack Of The Killer Pop-Ups!", the point of the website is that you have to get through all the pop-ups to complete the game...
  8. So, after completely learning HTML, now I want to learn Javascript. Ive nearly learnt all of it, all I need to learn now is to make more then 1 alert box appear at once. This is what ive got to make one alert box appear then after clicking ok another one comes up :<html><head><script type="text/javascript">{alert("ORLY?")}{alert ("YARLY!")}</script></head></html>But that only makes one come up then they click "Ok" THEN the other one comes up. I want to make them all to come up at once so it gets really annoying. The reason I want to make this is because I want to make a the website called "The Attack Of The Killer Pop-Ups". So, all I need is a script to make loads come up at once then they click "Close" but then loads more come up. So please tell me how to do this.Many Thanks.

×
×
  • Create New...