![]() |
Form validation with PHP & JavaScript
If you want to validate a form without submitting it, you can use two methods, one is pure client side JavaScript and the other being a mix of JavaScript and server-side scripting which can be PHP,ASP.JSP,Perl or anything for that matter.
First I will give an example of pure JavaScript validation The HTML: HTML Code:
<html>Hete the example is a registration form, where we'll validate the existance of the entered username, if the username already exists we'll show an alert else, proceed with form submission. The HTML code: HTML Code:
<html>PHP Code:
|
Re: Form validation with PHP & JavaScript
Can you explain us :D ! !
I dont know the opendb() function :( and its not working either :P thanks :P |
Re: Form validation with PHP & JavaScript
I am really sorry not to include the code of the opendb() function. What the function does is opening a connection to the database. I am including the code below, in case you face any more problem please let me know.
Code: php
|
Re: Form validation with PHP & JavaScript
You think its possible to make a onblur action that send the field over the thing and then send us back a response ?
for example , (taken the idea from invison forums) , when im registering a new user, as soon as he/she release the field ( onblur ) i want to send the info and get a response back to see if the username is right :/ any ideas ? |
Re: Form validation with PHP & JavaScript
Yes, its possible to do that.
Call the remote request function when the text field loses focus. Something like this.. Code: JavaScript
Happy coding! |
Re: Form validation with PHP & JavaScript
this sounds strange
inputfield.onBlur=function() checking the username would mean that u need java to deliver the username to php so php can check it and then give the answer to javascript right ? we could send the username trou the get so far, how can we get an answer ? or how could we only post/get the username with out submiting the whole script ? thanks XD :D :D :D :D :D |
Re: Form validation with PHP & JavaScript
You need to use a XMLHttp request to send the data - using either GET or POST - and also receiving the answer.
Have a look and the first post of this thread to get an idea how to use the XMLHttp object to validate data remotely, without submitting the current form. Also try googling Happy Coding! |
Re: Form validation with PHP & JavaScript
thanks for all ur answers !
Ya I have already read something abourt xmlhttp on developer.apple.com :P So far it sounds scary :S I belife theres a way to halfpost the thing with java script , ill keep researching and post my results here :D ! ! ! |
Re: Form validation with PHP & JavaScript
Hi pradeep..
I read ur forums related to ajax php and ajax script.. I have some doubts in your codings please help me out. I am new to it... what is meant by show message.. whether i need any extra codings to run it ... Cheers jhon :confused: |
Re: Form validation with PHP & JavaScript
jhon, Why not have the discussion of the other article in there only.
|
Re: Form validation with PHP & JavaScript
sir i read the forum of username validation using php ajax and javascript.
The code which u gave was interesting... But i tried out in my system... It is not reporting anything about username whether it is availabe or not.. I would not trace out the error also.. with cheers jhon |
Re: Form validation with PHP & JavaScript
Quote:
|
Re: Form validation with PHP & JavaScript
oForm.onsubmit = function()
{ showMessage(oDiv,2); var usr=oForm.elements['usr'].value; var url = "ajax.php?usr="+usr; showMessage(oDiv,2); what about this function ?? How do it show message?? thanks for replying. DS |
Re: Form validation with PHP & JavaScript
No prob!!
ShowMessage(oDiv,2) function works now. DS |
Re: Form validation with PHP & JavaScript
hi!
I saw your article. It's useful. So, follow you,May Use PHP and Mysql more useful? thanks so much! :) |
Re: Form validation with PHP & JavaScript
Javascript Form Validation:-Here is the sample source code of the above demo Code:
<html>Code:
<form name="addLink" onSubmit="return checkForm(this);" action="addurl.php" method="POST">* title * description * uname * stype * category This JavaScript function will check to be sure there is a URL, title, link description, and category entered. Code:
<SCRIPT LANGUAGE="JavaScript"> |
Re: Form validation with PHP & JavaScript
Offtopic comment:
gkumar its code blocks http://www.go4expert.com/images/editor/code.gif and not quote http://www.go4expert.com/images/editor/quote.gif for code snippets. |
Re: Form validation with PHP & JavaScript
Javascript Form Validation:-
We can validate the entry of any form by using JavaScript. This is a client side JavaScript form validation and you can check server side php form validation also. Before taking up any client side validation it is advisable to check JavaScript is not disabled in the client browser. You can see a demo of Form Validation here. Notice how you are prevented from submitting form unless the text input field is filled. Here is the sample source code of the above demo Code:
<html>Let’s talk about form validation. Here’s what I would class as the ideal validation system for a form in a web application: 1. The form is displayed; you fill it in. 2. You submit the form to the server. 3. If you missed something out or provided invalid input, the form is redisplayed pre-filled with the valid data you already entered. 4. The redisplayed form tells you what you got wrong. It also flags the fields that were incorrect. 5. Loop until you fill the form in correctly. Writing this once in PHP is trivial, but takes quite a bit of very dull code. Writing this for more than one form quickly becomes a tedious nightmare of duplicating and slightly editing code, which is why so few forms bother. I’ve been trying to figure out an elegant way of automating as much of this code as possible on and off for more than two years. I’ve tried systems that generate the whole form based on a bunch of criteria (too inflexible), systems that describe the validation rules (fine but they don’t help with the redisplay logic) and I’ve looked at solutions available in other language (such as ASP.NET), all to no avail. Over the past couple of days I’ve been working on the problem again, and for the first time I think I’m actually getting somewhere. My latest attempt (sparked by this article on Evolt) involves embedding validation and redisplay rules in the markup of the form itself. The form is written in XHTML, but with a number of additional tags and elements. Any form field elements can have a number of additional attributes which specify the validation rules of the form. For example: Code:
<input type="text" name="name" There are a few other validation attributes, but the above gives a good idea of how the system works. The second problem is how to display errors. Part of the solution here is my custom <error> element, which can be used to associate an error message with an error in a particular field. In my tests I’ve been using this to display an exclamation mark next to invalid fields: Code:
<input type="text" name="name" So far, all I’ve done is add a bunch of invalid markup to an otherwise valid chunk of XHTML. The key is how this markup is processed. FormML (for want of a better name) is never passed to the browser; instead it is processed by my PHP FormProcessor class before being displayed. This class strips out all of the FormML tags, and also applies logic to the rest of the form based on the information from the tags. Because the whole thing is XHTML, this can be relatively easily achieved using PHP’s built in XML parser. The XML is modified on the fly to create the XHTML that is sent to the browser. In the above example, the contents of the <error> element would only be displayed if the form was being redisplayed and the user had not filled in their name correctly. In addition, the class populates the value attribute of each input element with the previously entered data and adds an “invalid” class to the element to allow it to be styled appropriately. The next problem is to display a list of descriptive error messages describing the problem. This took slightly longer to work out: I needed a way of setting an error message for each potential problem (remember there are several ways a field can be invalid: it could have been left unfilled, or it could have failed a regular expression check, or it could have failed a callback function), and I also needed some way of indicating how these errors should be displayed. My eventual solution was to introduce a new <errormsg> element for specifying error messages, and a simple templating system (based on a few more custom tags) for indicating where these errors should be displayed. I’m not entirely happy with the way this works at the moment, but here’s what I’m using: Code:
errorlist>That’s a lot of custom markup to define the behaviour of a form. The good news is that the actual PHP used to display, validate and redisplay the form is incredibly simple. Here it is: Code:
$formML = '... formML XML code goes here ...';The code is still under very heavy development. At the moment it’s messy, has several minor bugs (and possibly some major ones I haven’t yet uncovered), isn’t fully tested and is almost certainly not ready for deployment. Never-the-less, you can play with a demo form that uses it or grab the code here: * FormProcesser.class.php—the class(es) * test.php—the demo form, as seen here. Incidentally, I haven’t mentioned javascript in the above in an attempt to keep things simple. I know client side validation is a great addition to stuff like this (provided it’s backed up by solid server side logic) and one of my longer term aims is to dynamically add the necessary javascript to the form during the processing phase, thus skipping the need to write any boring validation code by hand. |
Re: Form validation with PHP & JavaScript
In response to pradeep's Initial Code:
You must switch the following code snippets in your PHP file: Code:
if(mysql_num_rows($result) > 0)This is because you WANT PHP to call out an error if you have one or more results because this means you have that user name taken already in the database. If you don't have any results, you may create that username successfully, thus echo "+OK"; So this condition is met now: Code:
if(r.indexOf("+OK") == 0)Tested my code to make sure. |
Re: Form validation with PHP & JavaScript
I know how to submit records on a form to a database using PHP, but I don't know the php code for view, update and delete of records.
please do send it to my email: amyfex@gmail.com |
Re: Form validation with PHP & JavaScript
hi pls explain to me
|
Re: Form validation with PHP & JavaScript
excellent!!!
but how can you make sure the security keeping from spam? I read a scripts named PHP Form2Mail which is a open source scripts. You'd better read it , i promise you will get something more anti-spam from it. you can download it from phpkode.com/scripts/item/php-form2mail/ but i am not sure that's the latest version, you can also search it in google good luck |
| All times are GMT +5.5. The time now is 21:20. |