+ Reply to Thread
Results 1 to 6 of 6

Thread: Easy Question I think

  1. #1
    musicformedia's Avatar
    musicformedia is offline Wannabe Geek musicformedia will become famous soon enough
    Join Date
    Mar 2008
    Posts
    141

    Default Easy Question I think

    Hi guys,
    I have a contact form on my website:

    www.soundtrack.ie/contact

    I want to be able to put a redirect into my code so that when someone uses the send email form, it redirects back to the same contact page - currently it just stays on a blank page once its sent.

    Here is the code - I just want to know what to put in here to make it redirect back to the same page again?
    Code:
    <?php
    if(isset($_POST['submit'])) {
    
    $to = "emmett.cooke@gmail.com";
    $subject = "Music";
    $name_field = $_POST['name'];
    $email_field = $_POST['email'];
    $message = $_POST['message'];
     
    $body = "From: $name_field\n E-Mail: $email_field\n Message:\n $message";
     
    echo "Data has been submitted to $to!";
    mail($to, $subject, $body);
    
    } else {
    
    echo "blarg!";
    
    }
    ?>
    

  2. #2
    louie's Avatar
    louie is offline Senior Member louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough
    Join Date
    Jan 2006
    Location
    Dublin, Ireland
    Posts
    2,328

    Default

    This can be done few ways.
    if you want to show a message for few seconds then
    PHP Code:
    echo "Message sent...<br />
      <meta http-equiv='refresh' content='3;url=http://www.website_url_here'>"

    otherwise
    PHP Code:
    ob_clean();
    header("Location: http://www.url_here",true,301);
    exit(); 
    :. Web Design & Development Web Design Ireland
    :. Search Engines Optimization Search Engines Optimization
    :. Car Parts & Accessories Car Parts
    :. Cars Ireland Cars Ireland
    :. I Have 2 Find It Directory SEF Directory

  3. #3
    musicformedia's Avatar
    musicformedia is offline Wannabe Geek musicformedia will become famous soon enough
    Join Date
    Mar 2008
    Posts
    141

    Default

    cool, and do I just stick that at the bottom of the code thats already there? or in the middle or top of it?

    Sorry I'm really not any good at coding lol

  4. #4
    louie's Avatar
    louie is offline Senior Member louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough louie will become famous soon enough
    Join Date
    Jan 2006
    Location
    Dublin, Ireland
    Posts
    2,328

    Default

    right after the mailing code
    PHP Code:
    mail(, , );
    //here 
    :. Web Design & Development Web Design Ireland
    :. Search Engines Optimization Search Engines Optimization
    :. Car Parts & Accessories Car Parts
    :. Cars Ireland Cars Ireland
    :. I Have 2 Find It Directory SEF Directory

  5. #5
    byronyasgur's Avatar
    byronyasgur is offline Wannabe Geek byronyasgur will become famous soon enough
    Join Date
    Mar 2008
    Posts
    134

    Default

    here's an easy to follow tutorial covering everything you need to know about forms in php/html

    Form Processing with PHP - Lesson 1


    it takes a while but it's worth it

  6. #6
    musicformedia's Avatar
    musicformedia is offline Wannabe Geek musicformedia will become famous soon enough
    Join Date
    Mar 2008
    Posts
    141

    Default

    Sweet thats all working now thanks

+ Reply to Thread

Similar Threads

  1. Grand National easy earners...
    By 3rigena in forum Affiliate Programs
    Replies: 3
    Last Post: 31-12-2007, 01:46 PM
  2. Easy tutorial for client?
    By glengara in forum Google Adwords
    Replies: 3
    Last Post: 25-07-2007, 10:01 AM
  3. Easy to update website for charity
    By Bennyr in forum CMS and Content Management
    Replies: 5
    Last Post: 27-03-2007, 10:43 AM
  4. What SPAM means in easy word?
    By montyauto in forum Online Marketing Discussion
    Replies: 1
    Last Post: 20-02-2007, 06:06 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Optimization by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64