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
|
Newbie Member
|
|
| 30Jun2007,17:05 | #11 |
|
Newbie Member
|
|
| 30Jun2007,17:06 | #12 |
|
Quote:
Originally Posted by shabbir
|
|
Newbie Member
|
|
| 14Aug2007,14:43 | #13 |
|
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 |
|
Newbie Member
|
|
| 14Aug2007,15:43 | #14 |
|
No prob!!
ShowMessage(oDiv,2) function works now. DS |
|
Ambitious contributor
|
|
| 7Sep2007,19:07 | #15 |
|
hi!
I saw your article. It's useful. So, follow you,May Use PHP and Mysql more useful? thanks so much!
|
|
Banned
|
|
| 23Jun2009,16:31 | #16 |
|
Javascript Form Validation:-Here is the sample source code of the above demo Code:
<html>
<head>
<title>Javascript Form Validation</title>
<script language='JavaScript' type='text/JavaScript'>
<!--
function validate() {
if(document.form1.textinput.value=='')
{
alert('Fill the Input box before submitting');
return false;
}
else {
return true;
}
}
//-->
</script>
</head>
<body>
<form name='form1' action='javascript_validation.php' method='post'
onSubmit='return validate();'>
Input :<input type=text name=textinput value=''>
<input type=submit value=submit>
</form>
</body>
</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">
<!--
function checkForm(TheForm) {
// url, title, description
if (TheForm.url.value.length == 0) {
TheForm.url.value = prompt("You forgot to enter the link URL for addition!");
return false;
}
if (TheForm.title.value.length == 0) {
TheForm.title.value = prompt("You forgot to enter the link title for addition!");
return false;
}
if (TheForm.description.value.length == 0) {
TheForm.description.value = prompt("You forgot to enter the link description for addition!");
return false;
}
if (TheForm.category.value.length == 0) {
TheForm.category.value = alert("You forgot to enter the category!");
return false;
}
return true;
}// end function checkalForm
// -->
</SCRIPT>
|
|
Go4Expert Founder
|
![]() |
| 23Jun2009,17:17 | #17 |
|
Offtopic comment:
gkumar its code blocks
and not quote for code snippets. |
|
Banned
|
|
| 24Jun2009,16:09 | #18 |
|
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>
<head>
<title>Javascript Form Validation</title>
<script language='JavaScript' type='text/JavaScript'>
<!--
function validate() {
if(document.form1.textinput.value=='')
{
alert('Fill the Input box before submitting');
return false;
}
else {
return true;
}
}
//-->
</script>
</head>
<body>
<form name='form1' action='javascript_validation.php' method='post'
onSubmit='return validate();'>
Input :<input type=text name=textinput value=''>
<input type=submit value=submit>
</form>
</body>
</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" compulsory="yes" validate="alpha" callback="uniqueName" size="20" /> 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" compulsory="yes" validate="alpha" callback="uniqueName" size="20" /> <error for="name"> !</error> 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> <ul> <erroritem> <li><message /></li></erroritem> </ul> </errorlist> <errormsg field="name" test="compulsory">You did not enter your name</errormsg> <errormsg field="name" test="alpha">Your name must consist <em>only</em> of letters</errormsg> 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 ...';
$processor = new FormProcessor($formML);
if ($processor->validate()) {
// The form has been submitted and is valid - process the data
echo 'Form data is OK!';
} else {
// This will display the form for the first time OR redisplay it
// with relevant error messages
$processor->display();
}
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. |
|
Newbie Member
|
|
| 8Sep2009,00:49 | #19 |
|
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)
{
echo "-ERR";
}
else
{
echo "+OK";
}
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)
{
oForm.submit();
}
Tested my code to make sure. |
|
Newbie Member
|
|
| 18Jul2010,21:52 | #20 |
|
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 |


and not quote
for code snippets.