Goto Page: 1, 2, 3, 4, 5, 6, 7
Actual Results
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Form Handler/Config Issue?
- Subject: PHP Form Handler/Config Issue?
- Replies: 2
- Views: 130
- Subject: PHP Form Handler/Config Issue?
Posted: September 16th, 2009, 3:16 pm
Thanks. I have added the MIME types to httpd.conf. The page loads perfectly if I enter the URL in the browser...it only returns the blank file when the form is submitted. The form code you posted is correct except I have method="post" enctype="multipart/form-data" in there becaus...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Form Handler/Config Issue?
- Subject: PHP Form Handler/Config Issue?
- Replies: 2
- Views: 130
- Subject: PHP Form Handler/Config Issue?
Posted: September 16th, 2009, 8:14 am
Hi all, I'm having a problem with a PHP form handler that I've never seen before. When I submit the form, the browser tries to download the handler page (blank BTW) instead of rendering it in the browser. If I hit the handler directly, it renders as expected. In the process of testing, I have ended ...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Multiple Page Forms
- Subject: PHP Multiple Page Forms
- Replies: 11
- Views: 891
- Subject: PHP Multiple Page Forms
Posted: March 11th, 2005, 7:43 pm
that depends. if you want detail 2 to be passed from one form or another, you need to add the hidden input to the form AFTER the information is entered...likewise for detail 1. You can also keep passing it along. so for example, if the user enters detail 1 on the first of 3 forms, you'd want to put ...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP Multiple Page Forms
- Subject: PHP Multiple Page Forms
- Replies: 11
- Views: 891
- Subject: PHP Multiple Page Forms
Posted: March 9th, 2005, 9:50 pm
this will work beautifully:
<input type="hidden" name="detail1" value="<?=$_REQUEST['detail1'] ?>" />
<input type="hidden" name="detail2" value="<?=$_REQUEST['detail2'] ?>" />
<input type="hidden" name="detail2" value="<?=$_REQUEST['detail2'] ?>" />
- <input type="hidden" name="detail1" value="<?=$_REQUEST['detail1'] ?>" />
- <input type="hidden" name="detail2" value="<?=$_REQUEST['detail2'] ?>" />
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Obscure error. Need help.
- Subject: Obscure error. Need help.
- Replies: 6
- Views: 351
- Subject: Obscure error. Need help.
Posted: March 9th, 2005, 9:45 pm
just saw your last post. you don't have a $_GET[] anywhere in it. and that should work anyway...to elminate any issues, i always use $_REQUEST[] because it encompasses get, post etc all in one, so that would be worth trying...if you have too much trouble with it, it might be worth contacting your se...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Obscure error. Need help.
- Subject: Obscure error. Need help.
- Replies: 6
- Views: 351
- Subject: Obscure error. Need help.
Posted: March 9th, 2005, 9:41 pm
- guitrspaz
- Forum: Flash and ActionScript Forum
- Topic: Basic Button Problem
- Subject: Basic Button Problem
- Replies: 4
- Views: 439
- Subject: Basic Button Problem
Posted: March 9th, 2005, 9:22 pm
- guitrspaz
- Forum: Flash and ActionScript Forum
- Topic: Raising a "press" event to a button from AS2
- Subject: Raising a "press" event to a button from AS2
- Replies: 8
- Views: 682
Posted: March 9th, 2005, 9:11 pm
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: HELP with time() calculation and conversion
- Subject: HELP with time() calculation and conversion
- Replies: 2
- Views: 569
Posted: January 28th, 2005, 8:18 pm
i can tell you that i always had problems with time()...so i use date() for everything...maybe, if you use date()...maybe it'll work? you can format it anyway you want...and format it so its the same as mysqls TIME() (which is 00:00:00)...you may have an easier time than messing with time(). the pro...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: simple php post help
- Subject: simple php post help
- Replies: 3
- Views: 378
- Subject: simple php post help
Posted: January 28th, 2005, 7:56 pm
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: MySQL
- Subject: MySQL
- Replies: 1
- Views: 348
- Subject: MySQL
Posted: December 22nd, 2004, 8:27 pm
http://dev.mysql.com/downloads/mysql/4.0.html
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Trouble with mail form
- Subject: Trouble with mail form
- Replies: 6
- Views: 409
- Subject: Trouble with mail form
Posted: December 22nd, 2004, 8:14 pm
oops, change $_POST['action'] to $_GET['action'] and it should work...sorry, missed that on first glance.
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Trouble with mail form
- Subject: Trouble with mail form
- Replies: 6
- Views: 409
- Subject: Trouble with mail form
Posted: December 22nd, 2004, 8:12 pm
I did a quick re-write...see if this works: [code] <?php if(!$action) { print (" <form action='contactform.php?action=send' method='post'> <table width='400' border='0' cellspacing='0' cellpadding='0' align='center'> <tr> <td align='center' va...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Posting HTML Pages from Form?
- Subject: Posting HTML Pages from Form?
- Replies: 4
- Views: 429
- Subject: Posting HTML Pages from Form?
Posted: November 17th, 2004, 9:19 pm
with HTML only, its not possible to generate pages. you'd need something like PHP to generate the pages for you. in which case, you'd need to build a template page like Maedhros mentioned. it would be formatted like a regular HTML page, but the sections in which you want to show form data would have...
- guitrspaz
- Forum: Programming / Scripting / Coding Forum
- Topic: Problem with php UPDATE command urgent
- Subject: Problem with php UPDATE command urgent
- Replies: 5
- Views: 742
Posted: November 16th, 2004, 10:47 pm
also, most times the mysql UPDATE (or SELECT, DELETE etc) command will not work if you don't close the connection at some point (mysql_close();) I've had that problem in the past.

