Re: [PHP-WIN] Form and enter key

2007-05-08 Thread bedul
sry OOT - Original Message - From: "Alf Stockton" <[EMAIL PROTECTED]> To: "php windows" Sent: Tuesday, May 08, 2007 6:24 PM Subject: Re: [PHP-WIN] Form and enter key > Dale Attree wrote: > > In your opening form tag > > > > > > >

Re: [PHP-WIN] Form and enter key

2007-05-08 Thread Alf Stockton
-Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: 08 May 2007 12:57 PM To: php windows Subject: Re: [PHP-WIN] Form and enter key Alf Stockton wrote: I have created an HTML form that contains an input type text field coded as:- onBlur="sendRequest('.$ClientData.

RE: [PHP-WIN] Form and enter key

2007-05-08 Thread Gustav Wiberg
Hi! Maybe onEnter="Javascript." Or maybe onSubmit="Javascript" ? Best regards /Gustav Wiberg -Original Message- From: Alf Stockton [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 08, 2007 12:52 PM To: php windows Subject: [PHP-WIN] Form and enter key I

RE: [PHP-WIN] Form and enter key

2007-05-08 Thread Dale Attree
To: php windows Subject: Re: [PHP-WIN] Form and enter key Alf Stockton wrote: > I have created an HTML form that contains an input type text field coded > as:- > onBlur="sendRequest('.$ClientData.",".$Event.',this.value)"> > > This calls an Ajax

Re: [PHP-WIN] Form and enter key

2007-05-08 Thread Alf Stockton
Alf Stockton wrote: I have created an HTML form that contains an input type text field coded as:- onBlur="sendRequest('.$ClientData.",".$Event.',this.value)"> This calls an Ajax script that populates the rest of the HTML form. This fields event is currently activated, in Firefox, via the TAB b

[PHP-WIN] Form and enter key

2007-05-08 Thread Alf Stockton
I have created an HTML form that contains an input type text field coded as:- onBlur="sendRequest('.$ClientData.",".$Event.',this.value)"> This calls an Ajax script that populates the rest of the HTML form. This fields event is currently activated, in Firefox, via the TAB but the user has requ

Re: [PHP-WIN] Form problem variables are being sent in the query string

2005-08-22 Thread Chris
Your form should be defined like this: method="post"> The post method is what keeps the variables off the URL string, the action is the page to submit the data to. Chris Jim MacDiarmid wrote: I have 2 form fields one is a checkbox and the other is a hidden field. The checkbox is called "D

[PHP-WIN] Form problem variables are being sent in the query string

2005-08-22 Thread Jim MacDiarmid
I have 2 form fields one is a checkbox and the other is a hidden field. The checkbox is called "Display_" and gets incremented as the table rows are built like so. 'Display_'.$rec_count + 1 The hidden field is an array like this: Field[] The form method is $_SERVER['PHP_SELF'] For some rea

Re: [PHP-WIN] form not parsing php code?

2005-02-10 Thread Randy Clamons
the second tag. This should allow your users to upload a file. Randy Clamons Systems Programming Novaspace.com > Original Message > From: Patrick Roane <[EMAIL PROTECTED]> > To: php-windows@lists.php.net > Date: Thu, Feb-10-2005 12:12 PM > Subject: [

[PHP-WIN] form not parsing php code?

2005-02-10 Thread Patrick Roane
I don't think my form is parsing the php code. Though, I'm not getting any errors, I should see a detailed message confirming the file i've uploaded and I should see my sql table updated with this information. If anything, I should see mysql errors if there is a connection problem. Niether of these

RE: [PHP-WIN] Form data not being submitted

2004-11-07 Thread Justin.Baiocchi
ustin (CSIRO IT, Armidale) Sent: Monday, 8 November 2004 3:39 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Form data not being submitted Hi, I have a nasty little problem. Some user which connect to my website are unable to use the forms to submit any data - it works fine for some people, but noth

[PHP-WIN] Form data not being submitted

2004-11-07 Thread Justin.Baiocchi
Hi, I have a nasty little problem. Some user which connect to my website are unable to use the forms to submit any data - it works fine for some people, but nothing happens for others. It just goes back to the form page but no data is submitted. It's using PHP 4.3.4 Register Globals are on (it's

Re: [PHP-WIN] Form Variable Storage

2004-09-28 Thread Tom Joyce
I would have something like this: Your validation page has this: ... Essentially, just put the variable as value, or if it's a pull down list: 13-17 18-25 26-35 36-45 46-55 56-60 61-75 76+ That should work...other than that, it's just a copy of "form.php" inside of "validate.php"...or whatever

[PHP-WIN] Form Variable Storage

2004-09-28 Thread susilo
Dear ALL, I have a INPUT FORM APPLICATION using php, but when I submit my form into validation php form and go to back again default input form application its always showing message like this bellow : Warning: Page has Expired The page you requested was created using information y

RE: [PHP-WIN] FOrm processing question

2004-08-11 Thread Gryffyn, Trevor
27;s hard to make any other guesses as to what could be wrong. Hope that helps. -TG -Original Message- From: anne [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 10:06 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] FOrm processing questio

[PHP-WIN] FOrm processing question

2004-08-11 Thread anne
Trying this again. IT makes no sense that from one page to the next the variable values are not being carried. They are in Unix, just not in the code on windows? How do you process form data normally? ---Original Message--- > From: Anne Shroeder <[EMAIL PROTECTED]> > Subject:

RE: [PHP-WIN] form to php

2004-07-29 Thread PHP MySQL
ctly for that WS Then the following script should yield result… [Save as info.php] [Execute http://localhost/info.php] Mail me the results… -Original Message- From: PHP MySQL [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 1:12 PM To: [EMAIL PROTECTED] Subject: RE: [

Re: [PHP-WIN] form to php

2004-07-29 Thread PHP MySQL
hi, Yes this is the contents of the file. I tried to use ur code but it still displays the entire code and not just the line required. Any idea wht is wrong. thanks, penjo Luis Moreira <[EMAIL PROTECTED]> wrote: Is this the contebnt of the PHP file ? Hi .You are It can not start by the

RE: [PHP-WIN] form to php

2004-07-29 Thread PHP MySQL
hi, 1) The lines in the form are in the correct order. 2)i tried using HTTP_POST['age']; ?> , but it still displays the entire code. Not quite sure wht u meant by "AUTOGLOBAL ON|OFF setting". If u meant register_globals in php.ini file, then it is set to on. 3) Regarding action.php: phpinf

Re: [PHP-WIN] form to php

2004-07-29 Thread Luis Moreira
Is this the contebnt of the PHP file ? Hi .You are It can not start by the "Hi" word ... Action.php should be something like $name = $_POST['name']; $age = $_POST['age']; echo "Hi $name. You are $age"; ?> PHP MySQL wrote: hi list, i have managed to successfully install php and i am now goi

[PHP-WIN] form to php

2004-07-29 Thread PHP MySQL
hi list, i have managed to successfully install php and i am now going through the manual and trying a few of the examples given there. The examples i have tried till now are all working except for one. The example about inputting in the form and then displaying it through php is not working

[PHP-WIN] form textbox with search

2004-04-20 Thread Anthony Ritter
Greets, The following code snippet receives data from a textbox named searchtext if the user types in a word. It then tries to match that word from the mysql database using: $searchtext = $_POST['searchtext']; if ($searchtext != '') { // Some search text was specified $where .= " AND blurb LIKE

[PHP-WIN] Form not posting with to many characters

2003-10-22 Thread Tim . Pesanka
I am having difficulty tracking this error in our script. If we post a form and the description field has more than 111 characters in it, the script will hang and eventually time out. If I remove some text down to 110 characters it post fine. Has anyone come across this issue and found a solution

Re: [PHP-WIN] Form question

2003-10-07 Thread Ignatius Reilly
To: <[EMAIL PROTECTED]> Sent: Tuesday, October 07, 2003 8:57 PM Subject: [PHP-WIN] Form question A bit off-topic. How do we submit a form on an onChange event of a drop-down list box. -- Gerardo S. Rojas mailto: [EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.ne

[PHP-WIN] Form question

2003-10-07 Thread Gerardo Rojas
A bit off-topic. How do we submit a form on an onChange event of a drop-down list box. -- Gerardo S. Rojas mailto: [EMAIL PROTECTED]

AW: [PHP-WIN] form vars missing...

2003-09-29 Thread Sven Schnitzke
on: Jas [SMTP:[EMAIL PROTECTED] > Gesendet am: Montag, 29. September 2003 17:59 > An: [EMAIL PROTECTED] > Betreff: [PHP-WIN] form vars missing... > > Here is my problem: > > Using both the Get and Post methods my variables are missing on the > resulting page. Examp

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Duane Lakoduk
> > That should not effect the functionality. The VALUE tag is > only required for > radio buttons and check boxes . You are correct. I tested this on my IIS 4.0 server with PHP 4.3.3RC2. The reason for no values is most likely due to bad syntax in action.php No errors are reported but s

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Svensson, B.A.T. (HKG)
> 2. As others indicated: you aren't giving any value to your text inputs. That should not effect the functionality. The VALUE tag is only required for radio buttons and check boxes . Point 1) is on target, fix that and it should work. For reference see: http://www.w3.org/TR/1998/REC-html40-1

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
Sorry yeah i noticed the form element was using the wrong syntax on this page but I didn't copy/paste into the newsgroup. The results of the form for the 'url' field would be whatever the user decided to type into the particular field (ex. http://www.somewebsite.com) and the resulting page just ch

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Duane Lakoduk
Jas > > Here is my problem: > > Using both the Get and Post methods my variables are missing on the > resulting page. Example of code is listed below: > > > > > > > if ((!$name) || (!url)) { > do nothing; > } elseif (($name) || ($url)) { > do rest of code; > } else { > broken

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Svensson, B.A.T. (HKG)
ssage- From: Jas To: [EMAIL PROTECTED] Sent: 29/09/2003 18:08 Subject: Re: [PHP-WIN] form vars missing... You know I have tried that as well... ex. And I have tried adding a hidden form element as well... ex. All to no avail, I am thinking IIS is my problem but I am going to try it in a *

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
ginal Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] form vars missing... You know I have tried that as well... ex. And I have tried adding a hidden form element as well... ex. All to no avail, I am thinking

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Gerardo Rojas
you also need reference the values as such $_POST['fname'] in the action script. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 11:08 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] form vars missing... You know I have tri

Re: [PHP-WIN] form vars missing...

2003-09-29 Thread Jas
sage news:[EMAIL PROTECTED] I believe you need to add the value="your value goes here" in the form. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] form vars missing... Here is my problem: U

RE: [PHP-WIN] form vars missing...

2003-09-29 Thread Gerardo Rojas
I believe you need to add the value="your value goes here" in the form. -Original Message- From: Jas [mailto:[EMAIL PROTECTED] Sent: Monday, September 29, 2003 10:59 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] form vars missing... Here is my problem: Using both the Ge

[PHP-WIN] form vars missing...

2003-09-29 Thread Jas
Here is my problem: Using both the Get and Post methods my variables are missing on the resulting page. Example of code is listed below: http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Form data

2003-08-24 Thread la Sorour
ROTECTED]> Subject: [PHP-WIN] Form data Date: Fri, 22 Aug 2003 07:56:59 +0500 MIME-Version: 1.0 Received: from pb1.pair.com ([216.92.131.4]) by mc3-f21.law16.hotmail.com with Microsoft SMTPSVC(5.0.2195.5600); Thu, 21 Aug 2003 07:56:45 -0700 Received: (qmail 67434 invoked by uid 1010); 21 Aug 2

RE: [PHP-WIN] Form data

2003-08-22 Thread Svensson, B.A.T. \(HKG\)
Where do you have your HTML code for the FORM then? May one see it? -Original Message- From: Muhammad Imran To: [EMAIL PROTECTED] Sent: 22-8-03 4:56 Subject: [PHP-WIN] Form data How i can process my form data, my form contain just one text input field and .php code have to show it

RE: [PHP-WIN] Form data

2003-08-21 Thread John Ellingsworth
: Muhammad Imran [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 10:57 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Form data How i can process my form data, my form contain just one text input field and .php code have to show it but when i press ""SUBMIT" button my page url

[PHP-WIN] Form data

2003-08-21 Thread Muhammad Imran
How i can process my form data, my form contain just one text input field and .php code have to show it but when i press ""SUBMIT" button my page url does not change nor the input text seen thier. my php code is : Welcome! html form just send the input text with Applicant text field dat

[PHP-WIN] Form Handling

2003-08-14 Thread Frank Tudor
Hi all! I am looking for a way to handle emply form fields on one page instead of catching it on the response page. I have seen some good handling where the same page comes back with a colored field or a red aterik. Also, if I do the form handling on one page can I still have my database conn

RE: [PHP-WIN] Form Handling

2003-08-08 Thread Cory Daehn
This is normally done with JavaScript. As an alternative, you could have the form self-process with PHP and only redirect to a results page when everything is completed. > I am looking for a way to handle emply form fields on one page > instead of catching it on the response page. > > I have se

Re: [PHP-WIN] form question

2003-01-13 Thread Anthony Ritter
Joseph, Thanks for the reply. My ISP has a MS IIS server. I am testing the following script on Apache Server / MS Win 98 / IE 5.5 and it works fine. When I publish the script to their server and try the formpage, I get: "inetpub...Undefined index 1... "inetpub...Undefinded index 2... "inetpub..

Re: [PHP-WIN] form question

2003-01-13 Thread Joseph W. Goff
the variable before the first time you access them. - Original Message - From: "Anthony Ritter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 13, 2003 2:15 PM Subject: [PHP-WIN] form question > Hi, > I'm testing the following form on: > &g

[PHP-WIN] form question

2003-01-13 Thread Anthony Ritter
Hi, I'm testing the following form on: MS Win98 / IE 5.5 / PHP 4.0 / Apache and it works fine. However...when I publish the .php file and the data.txt file on the ISP's MS IIS server, I get undeclared variables and indexes when the form page loads. The script follows. Any help would be grea

[PHP-WIN] Form submossion with php - not passing variables

2002-11-03 Thread Luke
I am trying to submit a form using php on my apache 1.3 server running win2k and php4, but I get the error: Notice: Undefined variable: submitform in C:\www\emailform.php on line 9 The exact same php script works on another server running linux/apache1.3/php4 Do I need to load any extensions in

RE: [PHP-WIN] Form text with reserved chars

2002-11-01 Thread Dash McElroy
] Subject: Re: [PHP-WIN] Form text with reserved chars Try set_magic_quotes_runtime(0) to get rid off \ . Cheers On Fri, 1 Nov 2002, news.php.net wrote: > Date: Fri, 1 Nov 2002 08:37:50 +0100 > From: news.php.net <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP-W

Re: [PHP-WIN] Form text with reserved chars

2002-11-01 Thread Miha Nedok
Try set_magic_quotes_runtime(0) to get rid off \ . Cheers On Fri, 1 Nov 2002, news.php.net wrote: > Date: Fri, 1 Nov 2002 08:37:50 +0100 > From: news.php.net <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] Form text with reserved chars > > Hi NG. >

[PHP-WIN] Form text with reserved chars

2002-10-31 Thread news.php.net
Hi NG. I'm having trouble with form textareas containing " ' ". Every time I submit a form holding this char php will insert "\" infront of it. I'm well aware of the reason for this but I'd like to know just how to get rid of the "\". I've tried using ereg_replace("'","´",$text) but the "\" is in

RE: [PHP-WIN] form-problems

2002-09-19 Thread Rich Gray
PROTECTED]] Sent: 19 September 2002 15:40 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] form-problems Looks confusing or at least incomplete. If you have to start where is to end it ? Send the complete text(s) and I will take a peek Luis - Original Message - From: "bw" <[EMAIL

Re: [PHP-WIN] form-problems

2002-09-19 Thread Luis Moreira
Looks confusing or at least incomplete. If you have to start where is to end it ? Send the complete text(s) and I will take a peek Luis - Original Message - From: "bw" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 19, 2002 3:10 PM S

[PHP-WIN] form-problems

2002-09-19 Thread bw
Hi, new to PHP and already problems with simple stuff. Created a simple html/php-form with a couple of inputfields like: $lastname"; .. ?> but get back nothing but the raw answer text. Code should be o.k. Perhaps some missing ini -entries? or browser-problem (MSIE5.00) ? Working with A

Re: [PHP-WIN] Form Posting from script

2002-08-13 Thread GeneralX
Great!!! It works!!! Thanks!!! - Original Message - From: Jim Hunter To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Tuesday, August 13, 2002 5:07 PM Subject: Re: [PHP-WIN] Form Posting from script The solution I provided does not require Java. Java and

Re: [PHP-WIN] Form Posting from script

2002-08-13 Thread Jim Hunter
--- From: GeneralX Date: Tuesday, August 13, 2002 14:20:16 To: Jim Hunter; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Form Posting from script Once a user has submitted all info, my action page confirms the inputs then sends out confirmation email and to the CGI requiring the info for processing

Re: [PHP-WIN] Form Posting from script

2002-08-13 Thread GeneralX
class.path = .\java\php_java.jar ;java.home = c:\jdk ;java.library = c:\jdk\jre\bin\hotspot\jvm.dll ;java.library.path = .\ - Original Message - From: Jim Hunter To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Tuesday, August 13, 2002 2:51 PM Subject: Re: [PHP-WIN] Form Po

Re: [PHP-WIN] Form Posting from script

2002-08-13 Thread Jim Hunter
know where it should occur then just call a Javascript function that issues the submit() of the form. Jim function postForm() { document.forms[0].submit(); } ---Original Message--- From: GeneralX Date: Tuesday, August 13, 2002 12:40:45 To: [EMAIL PROTECTED] Subject: [PH

[PHP-WIN] Form Posting from script

2002-08-13 Thread GeneralX
How do you post a form without actually waiting for submit button to be pressed? Got a CGI expecting a form post, all the fields are already available as hidden type in a form, and just need to be send it. I know you can use Java as such: document.forms[0].submit();

[PHP-WIN] Form Data not posting

2002-07-26 Thread Dean Hayes
Hey i have installed php 4.2.1 and my form data use to post to the MySQL database and also to the plain txt files. When i upgraded my Internet Explorer to IE6 i was unable to post data from froms. I tried goin back to IE5.5 but that did not seem to work. I have also tried to reinstall php and

Re: [PHP-WIN] form variables ... back to the same page ?????

2002-07-10 Thread James Mclean
if u call ur page with a blank form tag, it will effectively call its self. or even > $PHP_SELF refers to the same page it is called from. good luck > i want a form's input to go back to the page of THE > form and get processed there > how can i do that ... well that if thats possible

[PHP-WIN] form variables ... back to the same page ?????

2002-07-10 Thread toby z
hi guys i want a form's input to go back to the page of THE form and get processed there how can i do that ... well that if thats possible i ve been searching for the thing thru php.net but to no use id really appriciate any help with this thnx a million. toby .. __

[PHP-WIN] Form, reading parameters

2002-07-08 Thread Jean Bresse
Hello: Took my first dip into the world on php over the weekend and got stumped on this: I cannot read the value of a form parameter. Here is the code: FORM: COP Server UserName: POST1.PHP Listing 1 " ); print(" The user name is: {$HTTP_POST_VARS['Us

[PHP-WIN] Form Data won't POST

2002-07-07 Thread H Marc Bower
I had a page that was working perfectly, then I had to reinstall XP. I saved my php.ini file, and copied back on once the O/S was set up again. Now the form data won't post at all. It's a page that the action points back to itself on, and using $variablename where variablename is the name tag

[PHP-WIN] Form Problem

2002-06-05 Thread James Meers
Hello, I have this form and its just not picking up the submit variable however it is posting them!!! Can someone double check this, what have i done? James \n"; } if (isset($submit)) { mysql_query("INSERT INTO $ntable VALUES ('

[PHP-WIN] form Post action

2002-06-04 Thread Martin.Andrew
I have a strange Bug that only appears in Netscape 4.7* I have a set of user vaiables in a form in the menu frame, I copy these variables (using javascript) to another form in the main frame of the application, when I post this form I echo the name of the form input values. In all browsers the v

[PHP-WIN] Form

2002-02-21 Thread Internerds Canada
I need to make this script send a file with it, can anyone help? thanks. dont worry about the bottom part, i havent finished it Submit Script"; echo ""; echo ""; echo "Name: "; echo "Email: "; echo "Language: "; echo "Subject: "; echo "Comments: "; echo "IP: $REMOTE_ADDR"; echo ""; }else{ file:/

Re: [PHP-WIN] Form submit action type.

2002-02-12 Thread Mike Flynn
At 09:45 PM 2/11/2002 -0800, Mike wrote: >I am creating a page with a form on it. I want it so that when people click >submit, I want the information from the form to be emailed to me. Is there a >way I can do this with normal JavaScripting or even plain HTML or would I >have to use something like

[PHP-WIN] Form submit action type.

2002-02-11 Thread Mike
I am creating a page with a form on it. I want it so that when people click submit, I want the information from the form to be emailed to me. Is there a way I can do this with normal JavaScripting or even plain HTML or would I have to use something like PHP. Thanks -- -Mike Taekema Microsoft C

[PHP-WIN] Form Problem using PHP

2001-12-17 Thread Anthony Ritter
I am trying to create a two step form sequence using three files - one file is html and the other two are php. I am using Julie Meloni's book, "PHP Fast and Easy" as my source and the code is from that book on pp.198-209. The three files are: 1. show_createtable.html 2. do_showfielddef.php 3.

[PHP-WIN] form submission --- help

2001-09-15 Thread legal
Dear List members, Pl. consider my case: I have a form which on submit puts the data into table. I want the contents of the same may also be emailed to me when that is being submitted in table in database. That is I want to do 2 things while a button on form is submitted: 1. The data filled in

Re: [PHP-WIN] Form processing in PHP

2001-06-30 Thread Frank M. Kromann
Hi, If you are changing the name of the select item from name=miasta_bad to name="miasta_bad[]" php will return all selected values in an array. - Frank > Hi, > > I have a little problem with processing a FORM's SELECT MULTIPLE field. > I mark several position in form, but in result file I h

[PHP-WIN] Form processing in PHP

2001-06-29 Thread Mariusz Topczewski
Hi, I have a little problem with processing a FORM's SELECT MULTIPLE field. I mark several position in form, but in result file I have only last selected. Here is a part of file: BIAŁYSTOK ALEKSANDROWO ALEKSANDRÓW KUJAWSKI ANDRYJANKI

RE: [PHP-WIN] Form & MySQL

2001-05-03 Thread Ignatius Teo
rsday, 3 May 2001 23:47 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Form & MySQL Could you send to me an example code ? Thx Paul > Johannes is correct, but if you're woried about security remember that MD5 is a > one way algorithm - you don't need a ke

Re: [PHP-WIN] Form & MySQL

2001-05-03 Thread [EMAIL PROTECTED]
Could you send to me an example code ? Thx Paul > Johannes is correct, but if you're woried about security remember that MD5 is a > one way algorithm - you don't need a key to unscramble it. > > Tom > > Johannes Janson wrote: > > > Hi, > > > > a simple INSERT would do the job. > > To encrypt pass

Re: [PHP-WIN] Form & MySQL

2001-05-03 Thread Tom Mathews
Johannes is correct, but if you're woried about security remember that MD5 is a one way algorithm - you don't need a key to unscramble it. Tom Johannes Janson wrote: > Hi, > > a simple INSERT would do the job. > To encrypt password use md5(). > > Johannes > > ""fipo2001"" <[EMAIL PROTECTED]> sc

Re: [PHP-WIN] Form & MySQL

2001-05-03 Thread Johannes Janson
Hi, a simple INSERT would do the job. To encrypt password use md5(). Johannes ""fipo2001"" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Please, help me. > I need to register the data that I collect with a simple form (FirstName, > SecondName, Email)

[PHP-WIN] Form & MySQL

2001-05-02 Thread fipo2001
Please, help me. I need to register the data that I collect with a simple form (FirstName, SecondName, Email) on a MySQL database. How I can do it ? .. and how I can to encrypt the access-password to the MySQL db in the php page ? I hope you can help me. Thx Paul -- PHP Windows Mailing List (ht