Jump to content

Simple application form help


loveranger

Recommended Posts

You're page is coming up blank.

 

I assume its PHP content inside of an HTML document?

 

If so the blank page means you have a PHP error and display PHP errors is disabled.

 

Try adding this to the top of your page

 

ini_set ("display_errors", "1");

error_reporting(E_ALL);

 

That should allow you to display the error you are experiencing.

If you wanted to input the data into a mySQL database follow this guide

 

http://www.apluskb.com/scripts/How_can_I_send_form_answer3591.html

 

If you wanted to send the data via email follow this guide

 

http://www.thesitewizard.com/archive/feedbackphp.shtml

 

There are plenty of articles on Google that will walk you though doing this, the ones I've referenced are just the results of a quick search

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.