Empty Form email

Discussion in 'PHP' started by momchilgrad, Oct 3, 2007.

  1. #1
    Hi,

    I use email form in my contact page, you can submit from the page and redirect to thank you page. When i look in my emails, i can see the email bu it is empty There is just:
    Name:
    Email:
    Comments:

    when i use the same form in another server it works normaly
    Can you help me abou this.
    thanks
     
    momchilgrad, Oct 3, 2007 IP
  2. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #2
    Without seeing any code, I suspect register_globals to be the cause.

    However, I can not give specific help without seeing your code. If you don't want to post it or whatever, then try just putting these lines on top of your script.

    
    extract($_POST);
    extract($_GET);
    
    PHP:
     
    nico_swd, Oct 3, 2007 IP
  3. momchilgrad

    momchilgrad Peon

    Messages:
    55
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thank you very much i added and its working
     
    momchilgrad, Oct 3, 2007 IP