Jump to content

Zaithe

Members
  • Posts

    34
  • Joined

  • Last visited

Zaithe's Achievements

Newbie

Newbie (1/7)

0

Reputation

  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. Okay, ive pressed sent tell me if you get anything.
  3. 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?
  4. Well, now it doesn't come up with the error it redirects back to index.htm...but it doesn't send the email...any help?
  5. Well, ive got to go now so ill see if it all works tommorow, hoping it does. =DThanks for all the help!
  6. 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
  7. It didn't work, probaly atspace.com...Do you know a FREE website like atspace.com what will let me upload my index.htm and process.php?
  8. 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.
  9. Umm, do I add the // then the writing.I don't think I do. =$
  10. So I downloaded the free-trial of Dreamweaver for nothing. =D
  11. So I change the process.php to that? And I don't change anything to the form in the index.html?
  12. 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...
  13. How do I save .php files? Like with NotePad or what?
  14. How do I use window.open() Im still a n00b to Javascript.
×
×
  • Create New...