106 résultats trouvés

Actual Results

Post Posted: Janvier 14th, 2010, 6:05 pm

Or you could ALTER [tablename] MODIFY [datefield] TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP...I think.

Post Posted: Septembre 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...

Post Posted: Septembre 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 ...

Post Posted: Mars 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 ...

Post Posted: Mars 9th, 2005, 9:50 pm

this will work beautifully:
Code: [ Select ]
<input type="hidden" name="detail1" value="<?=$_REQUEST['detail1'] ?>" />
<input type="hidden" name="detail2" value="<?=$_REQUEST['detail2'] ?>" />
  1. <input type="hidden" name="detail1" value="<?=$_REQUEST['detail1'] ?>" />
  2. <input type="hidden" name="detail2" value="<?=$_REQUEST['detail2'] ?>" />

Post Posted: Mars 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...

Post Posted: Mars 9th, 2005, 9:41 pm

try changing:
Code: [ Select ]
    while ($tagn < $tag_len) {
to:
Code: [ Select ]
    while ($tagn <= $tag_len) {
usually, php gives a line error at the line BELOW where the error actually IS...this line is the first thing i saw above it that might be a problem, but in any...

Post Posted: Mars 9th, 2005, 9:22 pm

for one thing, in this quote: _root.myButton.onPress = function() { gotoandplay(20) } you left out a semi-colon:
Code: [ Select ]
_root.myButton.onPress = function() { gotoandplay(20); }
but you also may have better luck with: [code]this.myButton.onPress = funct...

Post Posted: Mars 9th, 2005, 9:11 pm

is this helpful?
Code: [ Select ]
this.btnGo.onPress = function () {
  theGoCode();
};
  1. this.btnGo.onPress = function () {
  2.   theGoCode();
  3. };

Post Posted: Janvier 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...

Post Posted: Janvier 28th, 2005, 7:56 pm

or:
Code: [ Select ]
<input type="hidden" name="chargetotal" value="<?=$chargetotal ?>" />

Post Posted: Décembre 22nd, 2004, 8:27 pm

http://dev.mysql.com/downloads/mysql/4.0.html

Post Posted: Décembre 22nd, 2004, 8:14 pm

oops, change $_POST['action'] to $_GET['action'] and it should work...sorry, missed that on first glance.

Post Posted: Décembre 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...

Post Posted: Novembre 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...
  • Trier par
 
 

© 2011 Unmelted, LLC. Ozzu® est une marque déposée de Unmelted, LLC