Jump to content

voip03

Members
  • Posts

    693
  • Joined

  • Last visited

Everything posted by voip03

  1. Turn off error reporting and try
  2. Staff management- All about managing staffs (it was a challenging project for me) Online action - All about internet security, human behaviours and responsibility
  3. staff management- All about managing staffs( it was a challenging project for me)
  4. Try this code. echo "<input type='text' name='$r_out' value='$adder.' style='width:169px' readonly='readonly' class='text_non_color'/>";
  5. http://www.computerhope.com/issues/ch000049.htm
  6. Missing codes <form action="#" method="post"> <input type="submit" name="submit" /> </form>
  7. My 1st project was Building Weblog, Discussions Forums, Creating a shopping cart, online action, Staff management...
  8. What type of error, your getting?
  9. you can use href='#' PS : Validating form input -You should always remember when working with data from the outside world: Never trust it!
  10. You also cannot specify DISTINCT if the SELECT list contains LOB( ORDER ) columns
  11. Because it is with in the same mail server
  12. In most cases of delayed email, it's simply due to one of the mail servers along the way being overloaded and running slow.
  13. <?php $myDateTime = new DateTime('2011-09-04 23:05', new DateTimeZone('GMT')); $myDateTime->setTimezone(new DateTimeZone('America/New_York')); echo $myDateTime->format('Y-m-d H:i'); ?> Combination of the ‘select’ and ‘function’ will enable you to select ‘time zone’. Then you can manipulate the above code.
  14. Handling timezone conversion with PHP DateTime http://blog.boxedice.com/2009/03/21/handling-timezone-conversion-with-php-datetime/
  15. your code <input type='submit' value='Send Message'/> change to <input type='submit' name='submit' value='Send Message'/> your code <?php include_once("recaptchalib.php"); define("PUB_KEY", "6LfUuMcSAAAAAAY3ykPm2KZ2cHnSyoSRDaG1zTZi"); change to <?php include_once("recaptchalib.php"); define("PUB_KEY", "6LfUuMcSAAAAAAY3ykPm2KZ2cHnSyoSRDaG1zTZi"); if($_POST['submit']) { $name = $_POST['name']; $email= $_POST['email']; $message= $_POST['message']; $headers = "MIME-Version: 1.0\r\n"; $headers.= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers.= "From: XXXXX\r\nReply-To: XXXX@XXXXX.com"; $subject = "Your SUBJECT";// $final_message = "MESSAGE ---- <br/> name -- $name <br/> email -- $email<br/> message -- $message<br/> "; mail($to, $subject, $final_message, $headers); } ?>
  16. Come on, I am sure you can do it. Follow these steps 1. on submit 2. send this message <?PHP if($_POST['submit']) { $headers = "MIME-Version: 1.0\r\n"; $headers.= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers.= "From: XXXXX\r\nReply-To: XXXX@XXXXX.com"; $subject = "Your SUBJECT";// $message = "MESSAGE"; mail($to, $subject, $message, $headers); } ?>
  17. strtotime http://php.net/manual/en/function.strtotime.php
  18. check this link http://php.net/manual/en/function.date-default-timezone-set.php
  19. Sart writing the code, I will help you. follow this link. http://www.kirupa.com/forum/showthread.php?17313-HTML-PHP-mail-Form-Tutorial
  20. It will help ypu. http://htmlhelp.com/reference/css/style-html.html
  21. You need mail() function if you goohle it php mail() tutorials. http://php.net/manual/en/function.mail.php
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.