Results 1 to 4 of 4

Thread: Code help

  1. #1

    Default Code help


    bai istoryans ,,,, unsay code sa HTML/PHP na mka send tag mga comments/Contact form? direct sa email address for example:

    Name:______________
    Email:______________
    Message:______________

    tabang

  2. #2

    Default Re: Code help

    HTML Code:
    HTML FORM
    
    <form action="submit.php" method="post">
    Name : <input type="text" name="name" /><br>
    Email :<input type="text" name="email" /><br>
    Message:<textarea name="msg"></textarea><br>
    <input type="submit" value="Submit">
    </form>
    
    PHP - submit.php
    
    <?php
    $to = 'youremail@domain.com';
    $subject = 'Your Subject here';
    $name = $_POST['name'];
    $email = $_POST['email'];
    $msg = $_POST['msg'];
    
    $body = "Name : " . $name . "/n";
    $body .= "Email :" . $email . "/n";
    $body .= "Message : /n ===================================== /n";
    $body .= $msg;
    
    mail($to,$subject,$body);
    
    ?>
    Hope that helps

  3. #3

    Default Re: Code help

    HTML FORM

    <form action="" method="post">
    Name : <input type="text" name="name" /><br>
    Email :<input type="text" name="email" /><br>
    Message:<textarea name="msg"></textarea><br>
    <input type="submit" name="submit" value="Submit">
    </form>

    PHP - submit.php

    <?php
    $to = 'youremail@domain.com';
    $subject = 'Your Subject here';
    $name = $_POST['name'];
    $email = $_POST['email'];
    $msg = $_POST['msg'];
    $action = $_POST['submit'];

    $body = "Name : " . $name . "/n";
    $body .= "Email :" . $email . "/n";
    $body .= "Message : /n ===================================== /n";
    $body .= $msg;

    mail($to,$subject,$body);

    ?>

    this code will help you

  4. #4

    Default Re: Code help

    @TS: Based on their replies, you can use it either that way.

  5.    Advertisement

Similar Threads

 
  1. security code: help
    By froi in forum Gizmos & Gadgets (Old)
    Replies: 8
    Last Post: 01-09-2012, 07:15 PM
  2. Multiply html and css codes HELP PLEASE! :(
    By ds_var in forum Websites & Multimedia
    Replies: 8
    Last Post: 10-09-2009, 10:03 AM
  3. Help: ASP Code Creating a Thumbnail Image
    By Neural_AI1 in forum Software & Games (Old)
    Replies: 1
    Last Post: 06-22-2006, 01:35 PM
  4. NEED HELP WITH THIS CODE
    By saminoske in forum Websites & Multimedia
    Replies: 1
    Last Post: 12-05-2005, 11:27 AM
  5. help with security code!!!! PLEASE!
    By blue_orange in forum Gizmos & Gadgets (Old)
    Replies: 7
    Last Post: 11-29-2005, 08:25 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
about us
We are the first Cebu Online Media.

iSTORYA.NET is Cebu's Biggest, Southern Philippines' Most Active, and the Philippines' Strongest Online Community!
follow us
#top