Jump to content
MakeWebGames

Dominion

Members
  • Posts

    2,447
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Dominion

  1. What version of mccodes are you using? In english that is saying "File not found".
  2. Dominion

    No idea

    I always make good, interesting points... :p
  3. Feb 09. Kind of says the join data under the profile pic when you post ;)
  4. Ok. Just a thought anyway, only files I have seen of the engine are off people asking for bug to be fixed.
  5. die($h->endpage()); would not run to the end of the index file (due to die) i would assume that's where $h->endpage() is called?
  6. Dominion

    No idea

    Ah I see... and when people do this and complain about it, drag a conversation on, and make pointless posts about how it's pointless, you don't find that just as annoying? "omg go and learn" is another (non related) post that irritates me. See this is fun huh? ;)
  7. Dominion

    No idea

    Yes I do Mean that... Btw what’s annoying about it?
  8. Read the thread back over.
  9. Dominion

    No idea

    Thanks for wasting my time viewing this tread. -.-
  10. Ah I see the main problem here. You see i gave an example of what should go were with comments... It's for you to make it work. The links I posted would help you.
  11. Post what you have?
  12. Home -> Forum -> Game engines ->Generic RPG -> Free Plugins -> Points Dealer [Mod] (First Mod) How is this the wrong place?
  13. Grpg... look at the section you're posting in ;)
  14. action="" means the same page. I am not sure why you are trying to put this into a function, but i guess you could be talking about game mail rather than Emails?
  15. you would get it from $_POST['']'s? why would you store it in the database then reselect it?
  16. Well first off “action” does not take the email. http://www.w3schools.com/html5/html5_form_input_types.asp As that link shows (or should i never really checked it) HTML5 does not like all browsers. PHP or something like it is still the better way to go.   <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title></title> </head> <body> <?php $errors = array(); if (isset($_POST['submit'])) { // check name with preg match // email with filter_validate_email // age with is_numeric } if (empty($errors) && isset($_POST['submit'])) { // send email } else { // post errors } ?> <div class="common-padding clearfix"> <h4 class="secondary-dark">Welcome</h4> <form method="post" action=""> NAME: <input type="text" size="15" maxlength="50" name="name"> <br /><br /> EMAIL: <input type="text" size="15" maxlength="20" name="EMAIL"><br /><br /> AGE: <input type="number" size="15" maxlength="20" name="AGE"> <br /><br /><input type="submit" value="Send" name="submit"> </form> </body> </html> Using an array to store error see here - http://makewebgames.io/showthread.php/37890-Error-Checking-Storing-and-Showing Is_numeric - http://php.net/manual/en/function.is-numeric.php Filter the email - http://www.w3schools.com/php/filter_validate_email.asp Make sure there is some kind of check for bots (captcha), and something to ensure no one can send an email twice.
  17. after they click submit, check the name,email,age... then use php's mail function?
  18. Made the topic sticky so people can find it. This should help people. :)
  19. Don't worry about it. ;)
  20. Please use code tages [ php] [/ php] when posting. Also well done for the contribution.
  21. Well... i hate old threads being bumped as well, but it’s better than new ones with people assuming you have any idea what the problems talked about on the original thread were. I do think the archive should be locked though.
  22. Hey at least there is someone giving support...   well... if the demo had any crimes in it we may have been able to test it? I did point out a large number of things that are still not fixed... big bugs? No, but still bugs.
  23. Remove the check for $_GET['code'] and run it again. If there are errors mysql_error() will show them to you...
  24. That was me... sorry about that.
  25. No your not being petty, I 100% agree with you. All mccodes engines have little to no documentation, and it just leads to people being confused. It's what i meant by shorting it out.
×
×
  • Create New...