![]() |
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 |
| All times are GMT +5.5. The time now is 21:19. |