Results 1 to 3 of 3
  1. #1
    Web-Designer's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Arizona, USA
    Posts
    270
    Reputation
    11
    Thanks
    53
    My Mood
    Fine

    Question [Help] Get Time and Date

    I'm working on making some contact forms for a non-profit. Well I tested it and it works but it doesn't send the Time and date. This is what I have:

    Code:
    <form method="post" action="Contact-Send.php">
    
    <?php
    $time = getenv("F d, Y  :  g:i:s A");
    ?>
    
    <input type="hidden" name="time" value="<?php echo $time ?>" />
    Then the rest of the form, the action page is fine I checked it. I just need to know what I did wrong to make it not post the time and date.


    +Rep +1 Thanks


    Thanks for the help.
    Code:
    Looking for some project(s) to dedicate my time to! I know HTML, PHP, MySQL and JavaScript.
    
    
    - Message me if I can help you with something, all I want is some credit!

  2. #2
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    PHP (like w3) has a great way to answer all of your questions.

    PHP: Hypertext Preprocessor

    $today = getdate();

    Why are you using getenv? It's used to return the value of a environment variable. I know enough PHP to get by, but it isn't one of my languages. Let me know.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  3. #3
    Web-Designer's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Arizona, USA
    Posts
    270
    Reputation
    11
    Thanks
    53
    My Mood
    Fine
    Okay thanks, and because the tutorial I found for it told me to do it that way....lol


    I'll test this one out later, Thanks.
    Code:
    Looking for some project(s) to dedicate my time to! I know HTML, PHP, MySQL and JavaScript.
    
    
    - Message me if I can help you with something, all I want is some credit!