Jump to content

feedback form help


thenewguy

Recommended Posts

hi, i'm not a complete noob to php but i've rarely used it...i don't quite know how to explain but this is my php script for my feedback submission form:

 

<?php

  $email = $_REQUEST['email'] ;

  $message = $_REQUEST['message'] ;

  $name = $_REQUEST['name'];

  $number = $_REQUEST['number'];

  $company = $_REQUST['company'];

 

  mail( "[email protected]", "Feedback Form Results",

    $message, "From: $email" );

   

 

 

at the moment when i check the email it only submits the information in the "message" field, what i want it to do is retrieve all the information (name, number, company etc) entered in the form, i've tried a few methods but nothing :s  would appreciated any help, thanks!

Link to comment
https://forums.phpfreaks.com/topic/110453-feedback-form-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.