• 0

Help making a Q&A Form


Question

I'm looking for someone that knows how to setup a basic HTML layout that will use a php file or not in which there will be 10 Questions. The boxes for text will be of enough to put in a few sentences as needed to place answers in and once these answers are all filled in click Submit and it sends the questions along side the results to an email of my choice.

I've set up a few feedback forms from templates I've found online but editing them so far has drove me nuts as the form doesn't seem to be sending. If you know how to do this please PM me...you can just put in temp questions and a temp email I'll edit them later.

I only need a total of 10 Question slots

This is basically going to be used on a site that has full up to date php versions etc etc..so don't worry about that.

Thanks

Here is the code if someone can see what is wrong.

This is the html file named - Tier2Application.html



<form name="htmlform" method="post" action="html_form_send.php">
<table width="450px">

<tbody><tr>
<td valign="top">
<label for="age">What is your age? </label>
</td>
<td valign="top">
<input type="text" name="age" maxlength="50" size="30">
</td>
</tr>

<tr>
<td valign="top" "="">
<label for="Time_Zone">What Time Zone/Country do you live in? </label>
</td>
<td valign="top">
<input type="text" name="Time_Zone" maxlength="50" size="30">
</td>
</tr>
<tr>
<td valign="top">
<label for="Extra_abilities">What other servers do you currently have extra abilities with ie: VIP, Donator, Admin etc etc? </label>
</td>
<td valign="top">
<textarea type="text" name="Extra_abilities" maxlength="1000" cols="25" rows="6"><textarea>
</td>

</tr>
<tr>
<td valign="top">
<label for="position">Tell us why you think you should hold this position.</label>
</td>
<td valign="top">
<textarea type="text" name="position" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>
<tr>
<td valign="top">
<label for="dedicate">How much time do you dedicate to our Servers in a week?</label>
</td>
<td valign="top">
<input name="dedicate" maxlength="70" size="30">
</td>
<tr>
<td valign="top">
<label for="improve">Tell us how you could help us to improve our community and servers.</label>
</td>
<td valign="top">
<textarea type="text" name="improve" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>
<tr>
<td valign="top">
<label for="Opinion">What do you think of the servers at this time?</label>
</td>
<td valign="top">
<textarea type="text" name="Opinion" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>
<tr>
<td valign="top">
<label for="Duration">How long have you been a part of this function?</label>
</td>
<td valign="top">
<textarea type="text" name="Duration" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>
<tr>
<td valign="top">
<label for="Rep_Thread">Do you have a site? If so please provide URL.</label>
</td>
<td valign="top">
<textarea type="text" name="Rep_Thread" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>
<tr>
<td valign="top">
<label for="populate">What suggestions would you give to enhance the servers to help populate them more?</label>
</td>
<td valign="top">
<textarea type="text" name="populate" maxlength="1000" cols="30" rows="6"><textarea>
</td>
</tr>

</tr>
<tr>
<td colspan="2" style="text-align:center">
<input type="submit" value="Submit"> ( <a href="http://www.none.com">none</a> )
</td>
</tr>
</table>
</form>
[/CODE]

here is the php file named html_form_send.php

[CODE]
<?php
if(isset($_POST['email'])) {

// CHANGE THE TWO LINES BELOW
$webmaster_email = "[email protected]";

$email_subject = "Tier2 Application";


function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.

";
echo $error."

";
echo "Please go back and fix these errors.

";
die();
}

// validation expected data exists
if(!isset($_POST['age']) ||
!isset($_POST['Time_Zone']) ||
!isset($_POST['Extra_abilities']) ||
!isset($_POST['position']) ||
!isset($_POST['dedicate']) ||
!isset($_POST['improve']) ||
!isset($_POST['Opinion']) ||
!isset($_POST['Duration']) ||
!isset($_POST['Rep_Thread']) ||
!isset($_POST['populate'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}

$age = $_POST['age']; // required
$Time_Zone = $_POST['Time_Zone']; // required
$Extra_abilities = $_POST['Extra_abilities']; // required
$position = $_POST['position']; // required
$dedicate = $_POST['dedicate']; // required
$improve = $_POST['improve']; // required
$Opinion = $_POST['Opinion']; // required
$Duration = $_POST['Duration']; // required
$Rep_Thread = $_POST['Rep_Thread']; // required
$populate = $_POST['populate']; // required

$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';[/size][/font]
[font="Verdana"][size="2"] }
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";

function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}

$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($Time_Zone)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "position: ".clean_string($position)."\n";
$email_message .= "dedicate: ".clean_string($dedicate)."\n";
$email_message .= "improve: ".clean_string($improve)."\n";
$email_message .= "Opinion: ".clean_string($Opinion)."\n";
$email_message .= "Duration: ".clean_string($Duration)."\n";
$email_message .= "Rep_Thread: ".clean_string($Rep_Thread)."\n";
$email_message .= "populate: ".clean_string($populate)."\n";

// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>

<!-- place your own success html below -->

Thank you for the application. We will be in touch with you very soon.

<?php
die();
?>
[/CODE]

Be sure to remove this from the code above at the bottom cause for some stupid reason it keeps adding it to the code

/size /font font=verdana size=2 ALL THIS WITHOUT THE BRACKETS...damn stuff!!</textarea></td></tr></tbody></table></form>

Link to comment
https://www.neowin.net/forum/topic/1079759-help-making-a-qa-form/
Share on other sites

12 answers to this question

Recommended Posts

  • 0

I'm looking through it, but could you say exactly what problems you're having with it? is the email just not sending, or are you getting an error or what?

EDIT: try changing "@mail(blahblahblah);" to just "mail(blahblahblah);" (remove the @ sign). that way you'll see any errors that happen :)

Edited by Matthew_Thepc
  • 0

  • look through all the $_POST['something'] and make sure that everything there is spelt exactly the same as the "name" property in your HTML form
  • take away the "@" from before mail so you'll know if there are any errors
  • move the } after the $email_exp line to right before the first ?> (the one after the mail line, not the one after the die())
  • I'd suggest changing all the $variable = something; to lowercase so you don't get mixed up (ex. change like 26 from $Rep_Thread = $_POST['Rep_Thread']; to $rep_thread = $_POST['Rep_Thread']; and then changing all instances of $Rep_Thread to $rep_thread (easily done through find & replace). This isn't necessary, but it's nice to have all of your code either capitalized or non-capitalized.

If none of this works, make SURE you've taken away the @ from before mail( and then check again to see if there are any errors

  • 0
  • look through all the $_POST['something'] and make sure that everything there is spelt exactly the same as the "name" property in your HTML form
  • take away the "@" from before mail so you'll know if there are any errors
  • move the } after the $email_exp line to right before the first ?> (the one after the mail line, not the one after the die())
  • I'd suggest changing all the $variable = something; to lowercase so you don't get mixed up (ex. change like 26 from $Rep_Thread = $_POST['Rep_Thread']; to $rep_thread = $_POST['Rep_Thread']; and then changing all instances of $Rep_Thread to $rep_thread (easily done through find & replace). This isn't necessary, but it's nice to have all of your code either capitalized or non-capitalized.

If none of this works, make SURE you've taken away the @ from before mail( and then check again to see if there are any errors

Ok I've gone thru and did each of these... did find some errors in wording for what I used on the names of each instance but also went and changed the caps or removed them and double checked all the spelling I don't see any issues. I removed the @ but nothing showed of an error and just processed it with the "Thanks" message at the top of the next screen like nothing happened but no email sent.

Suggestions?

  • 0

Where are $email_from and $email_to coming from? I don't see them being filled up anywhere.

Also the if($_POST['email']) on the top: There's no input named email in your form, so it'll never evaluate to true.

The @mail call is outside that if though, so it'll try sending regardless. (Well you fixed this one if you moved the } as said above)

Also the mail function returns false if there are errors with the message to send. You can check for that :)

  • 0

Where are $email_from and $email_to coming from? I don't see them being filled up anywhere.

Also the if($_POST['email']) on the top: There's no input named email in your form, so it'll never evaluate to true.

The @mail call is outside that if though, so it'll try sending regardless. (Well you fixed this one if you moved the } as said above)

Also the mail function returns false if there are errors with the message to send. You can check for that :)

Yeah I did the change of moving the } and the mail function isnt' returning any errors when sent...it just processes saying "Thanks for sending blah blah" but no email received.

  • 0

Ok.... I would like to think of myself as being really good with this kind of stuff.

My suggestion would be make it simple...

strip everything you don't need.

That way you will find the problem/error faster and then just fix in the longer version.

I believe the issue is that the function is never call... i.e. it will ever evaluate to true if(isset($_POST['email'])) {

like someone else pointed out.

Reason: There is no form element called email being sent, unless i missed it but i did a find on this page.

Also email is a reserved word!!! this has bitten me so many times its not funny.... now when it comes to email/e-mail I always prefix or suffix it.

so change email to something like QandA_email... your probably find it start working.

Remember this

form elements are identified by their name not there ID.... well i could stand corrected... but it is the name in some of my stuff...

I usually include both.

so

<input id="QandA_email" type="text" name="QandA_email" class="default_email" value="" placeholder="Email Address" />

remember to change if(isset($_POST['email'])) { to if(isset($_POST['QandA_email'])) {

also i always do this for debugging.

$QandA_email = $_POST['QandA_email']

echo $QandA_email;

if(QandA_email) {

}

PS!!! my PHP is super rusty... so i might be off.... I'm into C# now

hope this helps

after re-reading it

// create email headers

$headers = 'From: '.$email_from."\r\n".

'Reply-To: '.$email_from."\r\n" .

'X-Mailer: PHP/' . phpversion();

@mail($email_to, $email_subject, $email_message, $headers);

?>

i think your problem is most likely here.

as someone already pointed out .$email_from is never set

$email_from = $_POST['QandA_email']

or

$email_from = $_POST['email_from '] as long as you don't use plain email or e-mail

remember the form must correspond to this

as someone said ... sozs been re-reading the code..

$email_to

this is not set either so

$email_to = "[email protected]";

so final conclusion:

  • Add form element name it "email_to"
  • add this before the if, $email_to = $_POST['email_to']
  • then evaluate if($email_to).....

the above gets tricky but for the stakes of keeping it simple.

you may have to check this as i would write this in c# as if ($email_to != "").

tricky?... is it an e-mail... validation needed here.. also in PHP does no empty string evaluate to false...?

  • 0

I fixed it.. I went with this more simple layout for php


<?PHP
$to = "[email protected]";
$subject = "Form App";
$headers = "From: Form App";
$forward = 0;
$location = "";

$date = date ("l, F jS, Y");
$time = date ("h:i A");

$msg = "Below is the result of a form. It was submitted on $date at $time.\n\n";

if ($_SERVER['REQUEST_METHOD'] == "POST") {
foreach ($_POST as $key => $value) {
$msg .= ucfirst ($key) ." : ". $value . "\n";
}
}
else {
foreach ($_GET as $key => $value) {
$msg .= ucfirst ($key) ." : ". $value . "\n";
}
}

mail($to, $subject, $msg, $headers);
if ($forward == 1) {
header ("Location:$location");
}
else {
echo "Thank you for submitting the form. We will get back to you as soon as possible.";
}

?>
[/CODE]

Thanks to all that helped!

  • 0

Great stuff... that you got it stored...

Again don't know too much about PHP..

But to me...this is retarded being used here...

if ($_SERVER['REQUEST_METHOD'] == "POST") {

foreach ($_POST as $key => $value) {

$msg .= ucfirst ($key) ." : ". $value . "\n";

}

}

else {

foreach ($_GET as $key => $value) {

$msg .= ucfirst ($key) ." : ". $value . "\n";

}

}

1.You are using code that should be placed in a area where it can be reused.

2.You are added extra complexity which isn't needed.

3.You are adding addition overhead.

4.You only go to this code on a Form post. (there's no point to the - " foreach ($_GET as $key => $value) { " here)

5.You know the values and they could be type smart - how would you validate anything?!!!

I would of done this.

<?PHP

//comment (lol don't know what a comment syntax is in PHP anymore)

//we are comming from POST, check we have an e-mail to send to.

$to = $_POST['email_to']

//if no to email

if($to == "")

{

$msg = "e-mail not supplied"

echo $msg

return //Fail

} //assign all the form values //ect... add as needed

$age = $_POST['age']

$timezone = $_POST['timezone']

$comment= $_POST['comment']

//setup Mail stuff

$subject = "Form App";

$headers = "From: Form App";

$forward = 0;

$location = "";

// this PHP I don't know.... but i guess date and time...

// this should be commented out as its never used.

$date = date ("l, F jS, Y");

$time = date ("h:i A");

//this is never used... i presume this is meant to be in the last else

// i would swop out the messages tho

$msg = "Below is the result of a form. It was submitted on $date at $time.\n\n";

//like

$msg = "Thank you for submitting the form. We will get back to you as soon as possible.";

//i would also comment out the if and remove code you are not using.

//ie do you use the forward stuff...

// if not remove the if and just have it run

//mail($to, $subject, $msg, $headers);

//echo msg;

mail($to, $subject, $msg, $headers);

if ($forward == 1) { header ("Location:$location"); }

else {

echo "Thank you for submitting the form. We will get back to you as soon as possible.";

echo msg;

}

?>

hope this helps...

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Frankly, I blame whoever is writing such articles. "A big improvement/update and/or new feature is now available to everyone! Also, use this unofficial tweak tool to enable it because it actually isn't available to you yet officially and might not in fact even be entirely ready or whatever, hence why it is perhaps not enabled for you*. But it's great and you should enable it!" I mean there's nothing wrong with sharing info about some feature you might need to enable via unofficial means, of course. It's just that these articles tend to essentially end up being two news pieces in one, and one of them tends to be a bit misleading. (*Yes, yes, the "it's a controlled rollout!" thing. Not a fan of that one either. The argument, not the actual rollout.)
    • Thank you. Will do. I read in the release notes that editor config might be at play here.
    • Actually, I think even Microsoft doesn't know how to control it
    • OpenAI is making Codex more useful in Chrome and the cloud by Pradeep Viswanathan OpenAI's Codex now has more than 5 million users, up nearly 4x from earlier this year. To further accelerate Codex's growth among developers, OpenAI today announced that it has agreed to acquire Ona, a company that builds secure cloud execution and orchestration technology for developers. Ona will enable developers to run Codex with persistent and controlled cloud infrastructure for long-running agentic workflows. Right now, most Codex execution happens locally on developers' laptops and PCs, and the agents work continuously for hours. Through Ona, OpenAI aims to make Codex agents keep working for days without being tied to a user’s local machine or an active session. This will be an important capability for enterprises that want to deploy AI agents in production while maintaining control over infrastructure, data, security boundaries, credential scope, logging, and review workflows. Like any acquisition, the deal is still subject to customary closing conditions, including regulatory approvals. Until the deal closes, OpenAI and Ona will continue to operate as separate companies. After closing, Ona’s team will join the Codex team to improve developer workflows. Alongside the Ona acquisition announcement, OpenAI today introduced a few Codex updates. Developers can now save Codex rate limit resets and use them later instead of losing them when they are not needed immediately. OpenAI is also adding a referral option where users can invite a friend to Codex and get a saved rate limit reset. OpenAI today also announced a developer mode for browser use in Chrome and the Codex in-app browser. With this mode, Codex can use the Chrome DevTools Protocol to debug web apps, inspect pages, and work more directly with browser-based development workflows. Developers can use this when they want Codex to profile JavaScript, inspect console output and network traffic, examine web page states including the DOM and applied styles, and more.
    • Camtasia 2026.1.3 by Razvan Serea TechSmith Camtasia is the complete professional solution for high-quality screen recording, video editing and sharing. Camtasia 2026 makes editing your videos easier, and faster than ever. The new editor is packed with enhanced video processing, all-new production technology, an innovative library, and stock videos and other creative assets to help you create more polished, professional videos. No video experience needed. Anyone can create informative, engaging videos. Create professional, eye-catching videos: Add special video effects - Apply Behaviors that are perfectly designed to animate your text, images, or icons. Get a crisp, polished look without being a professional video editor. Drag-and-drop your edits - What you see is what you get. Every effect and element in your video can be dropped and edited directly in the preview window. And you can edit at resolutions up to beautiful 4K, for clear video at any size. Get exceptional performance - Camtasia takes full advantage of your computer’s processor with 64-bit performance. You’ll get fast rendering times and enhanced stability—even on your most complex projects. Camtasia 2026.1.3 changelog: Feature Updates Improved keyboard navigability in tool panels. Improved screen reader accessibility of headings in Preferences. Tool panels can now be resized using a keyboard-navigable control. Updated color of folder icon in User Library tab for better visibility. Grouped media now render a composite waveform considering all audio media within that group. Added Long Path Aware to the manifest of Editor and Recorder. Performance Improvements Improved performance for editing groups on the timeline. Improved the project loading performance when timeline has lots of trec media with cursor data. Updates for IT Administrators Updated cpp-httplib from 0.38.0 to 0.43.3. Updated expat from 2.7.4 to 2.8.0. Updated freetype from 2.13.3 to 2.14.3. Updated harfbuzz from 13.0.1 to 14.2.0. Updated libpng16 from 1.6.55 to 1.6.58. Updated pango from 1.57.0 to 1.57.1. Updated girepository from 2.86.3 to 2.88.0. Updated pcre2-posix from 10.47.0 to 12.0.2. Added new harfbuzz-gpu.dll. Updated FFmpeg from 7.1.1 to 7.1.2. Updated aom from 3.11.0 to 3.13.1. Updated dav1d from 1.5.0 to 1.5.1. Updated ogg from 1.3.5 to 1.3.6. Updated SDL2 from 2.32.4 to 2.32.10. Updated zlib from 1.3.1 to 1.3.2. Updated Nalpeiron binaries to version 4.4.69.3. Bug Fixes Fixed an issue which prevented some user submitted crash reports from being sent. Fixed a potential memory leak when decoding HEVC or VP9 video. Fixed a potential crash when trying to delete a range selection on a magnetic track. Fixed a bug with the Properties Panel showing stale properties when only a caption is selected on the timeline. Fixed an issue that could prevent the Opacity and Blur properties from being changed in the Background Removal effect. Fixed an issue where larger Camtasia online projects may fail to open in Camtasia Editor. Table of contents thumbnails are no longer created for Smart Player exports with no table of contents. Fix resetting skew revert to revert just skew and not scale as well. Fixed editing in Snagit with snagX file with Unicode characters. Fixed a bug where grouped visual media could be cropped in some cases. Fixed importing SnagX files with Unicode characters. Localization fixes. Download: Camtasia 2026.1.3 | 309.0 MB (Shareware) View: Camtasia Homepage | Tutorials | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • One Month Later
      Jamswaz earned a badge
      One Month Later
    • Week One Done
      Jamswaz earned a badge
      Week One Done
    • Rookie
      Marzoid went up a rank
      Rookie
    • Community Regular
      coch went up a rank
      Community Regular
    • One Year In
      slackerzz earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      511
    2. 2
      PsYcHoKiLLa
      188
    3. 3
      +Edouard
      157
    4. 4
      Steven P.
      83
    5. 5
      ATLien_0
      75
  • Tell a friend

    Love Neowin? Tell a friend!