1. <?php
  2. $to = "YOU EMAIL"; //Place your email address here//
  3. $subject = "Profile Submission";
  4. $username = $_REQUEST['username'] ; //Change form names to the following. Make new forms and add by using the same format REQUEST code//
  5. $email = $_REQUEST['email'] ;
  6. $type = $_REQUEST['type'] ;
  7. $css = $_REQUEST['css'] ;
  8. $thumb = $_REQUEST['thumb'] ;
  9. $headers = "From: " $email;
  10. $message = $username . "<br />" . $type . "<br />" . $css . "<br />" . $thumb ;
  11. $sent = mail($to, $subject, $message ) ;
  12. if($sent) {print "Your profile was submitted successfully"; }
  13. else {print "We encountered an error while submitting your profile"; }
  14. ?>