Ajax login form (PHP & Javascript)

on Saturday, September 22nd, 2007 at 8:10 pm

Ok, here’s another AJAX login form example…
In this example I am using 3 javascript files, 2 php files and 1 stylesheet.

click here: http://mazesolutions.me/demos/ajax2 for the demo
click here: http://mazesolutions.me/demos/ajax2/ajax2.rar to download the files

Brief description:
_ajax.new.js: is the main ajax class. I have already explained this class here
_formdata2querystring.js: used for posting the element of a form
_applogin.js: specific ajax class to handle the login form
index.php: simple login form
style.css: simple stylesheet

If you like it digg it here
Next post will be a tutorial on how to make it
Stay tunned …

//Jo
Peace :)

| Posted in Ajax, PHP | 168 Comments »

168 Comments »

I’m trying download the source files, but every time I try I get a page with a bunch of nothing on it.

Comment by D. Peterson | September 25, 2007 @ 2:56 pm

Why this login form enables the back button?

Comment by Arnulfo Arias | September 25, 2007 @ 4:02 pm

D.Peterson: Try to right click on the file then Save As.
Its working fine here with me

Comment by Jo | September 25, 2007 @ 5:49 pm

Arnulfo Arias: The login form will redirect you to welcome page when the login is correct.

Comment by Jo | September 25, 2007 @ 5:51 pm

[...] i noticed a new referral in my referrals list. Anyway it seems that an italian blog has mentioned my Ajax login form (PHP & Javascript) post in an article of his. The article can be found [...]

Pingback by Italian translator needed :P - FARAWAY | September 26, 2007 @ 9:33 am

To FARAWAY:

The italian article talks about “Modern (Web 2.0?) ways of dealing with HTML Forms”. The article itself is a sort of link collection.

Comment by Francesco | September 27, 2007 @ 12:40 am

[...] Ajax login form (PHP & Javascript) – FARAWAY (tags: ajax php authentication form javascript login webdev webdesign development web) [...]

it`s not working..

Comment by henkie | October 1, 2007 @ 4:54 am

it doesn’t accept the password

Comment by matej | October 2, 2007 @ 10:23 am

hi matej, can you please tell me what browser you are using ? and if you have javascript enabled or not.

the password should be : iwannalogin ( no spaces and case sensitive )
the email should be: email@gospam.biz

Comment by Jo | October 2, 2007 @ 10:32 am

kind of ugly that the password is being send in the post.
you should encrypt the password before sending it with js to php and then decrypt it again with php.

Comment by mister p | October 3, 2007 @ 10:08 am

Yeah you are right,
I will do it today and update the script… thank you mister p :)

Comment by Jo | October 3, 2007 @ 10:11 am

When i submit i’ve always this message “going somewhere ?”
i don’t know why please help me

Comment by jb | October 3, 2007 @ 8:28 pm

Hi jb
in the file js/_ajaxlogin.js

go to line 105, it should be:
self.ajax.doPost(‘ouf.php?action=login’, postData, self.handleLoginResp);

In your case i think it is not

check it and if u need anythg more reply :)

Comment by Jo | October 3, 2007 @ 8:46 pm

Thank’s but i’ve always the same problem

go to
http://notedeletudiant.com/ndl/test2/testlogin/

Comment by jb | October 3, 2007 @ 8:55 pm

Hi jb
Im sorry for this error, you should add this line at the beginning of ouf.php ( before switch($action) ).
###
$action=trim($HTTP_GET_VARS['action']);
###

or re-download the files… i fixed them
Let me know if that worked for you

Comment by Jo | October 3, 2007 @ 11:34 pm

perfect!! Thank you very much :)

Comment by jb | October 4, 2007 @ 2:53 am

It’s not working on IE, the submit button never gets activated… any ideas?

Comment by TheMan | October 4, 2007 @ 10:55 am

TheMan: Can you please tell me what IE version you have ?
I tested it on IE 6 and it seems to work.
Make sure you do not copy and paste the password, because then it wont work.

Or better yet, upload somewhere on the net so i can see it

Comment by Jo | October 4, 2007 @ 11:09 am

You are right Jo, it does work, i have IE 6.0, mi mistake :)

Comment by TheMan | October 4, 2007 @ 8:56 pm

help for this error!

self.form.Pass has no properties
[Break on this error] self.form.Pass.value = ”;

Comment by max | October 9, 2007 @ 8:49 pm

doesnt work very well…

Comment by mcnk | October 12, 2007 @ 1:02 pm

or something i dont understand…got the same error that max…text “welcome.html” appears in the box…
can this be due to the fact i work on local server (easyphp) ?

Comment by mcnk | October 12, 2007 @ 1:24 pm

Hi mcnk
Can you upload your script somewhere so i can see the error ?

Comment by Jo | October 12, 2007 @ 1:50 pm

Could you please help me with one thing ? I need the LOG-OUT thing. I made the login case at ouf.php to save the sessions, for keeping user on the page if he will try to refresh the page, but now i dont know how to create an AJAX Request for my ‘LOGOUT’ case, which i made and filled with session_unset(); session_destroy(); and etc. Could you please help me with this ? Best reguards, Tiesto )

Comment by Dj Tiesto | October 12, 2007 @ 5:39 pm

Hi Dj Tiesto
All you have to do is add the javascript function in js/_applogin.js that will call your case at ouf.php
the function can be smthg like this:
this.a_logout(){
var self = Login;
self.ajax.doGet(‘ouf.php?action=logout’, ‘text’, self.handleLogoutResp);
}
then implement the handleLogoutResp function
this.handleLogoutResp = function(str) {
var self = Login;
var respArr = str.split(‘,’);
var respType = respArr[0].toLowerCase();
var respMsg = respArr[1];
var respSes = respArr[2];
if (respType == ‘success’) {
location = respMsg+’?'+respSes;
}
else {
self.showErrorPrompt(respMsg);
}
}

Finnally add this to the end of the _applogin.js

document.getElementById(‘logout_id’).onClick = Login.a_logout;

where logout_id could be the id of ( Logout

If you need anything else tell me.

By the way can I see the website where u implemented my ajax function ? :)

Comment by Jo | October 12, 2007 @ 7:07 pm

Is it possible to have multiple login email addresses and passwords?

Comment by Justin | October 14, 2007 @ 11:18 pm

Google is my favorite search engine!

Comment by Nik Potaper | October 15, 2007 @ 7:43 pm

I agree, multiple users and the ability to change where the user ends up after hitting submit depending on their username would be great!!!

Comment by Fil | October 17, 2007 @ 5:39 pm

I will do second version of this login form and include the following:
1- logout
2- session/cookie for each multiple user
3- ability to redirect ppl depending on the user to a specific page

Comment by Jo | October 17, 2007 @ 8:32 pm

Sir, I want to create a login form, that will differentiated between the Administrator and User with their Authorty

Comment by Avinash | October 19, 2007 @ 7:34 am

Sir, I aslo have a problem to develop a page of on line exam, So that the User can not make copy of this form

Comment by Avinash | October 19, 2007 @ 7:35 am

Please reply soonly

Comment by Avinash | October 19, 2007 @ 7:35 am

It’s a good idea BUT…
You got some wrong things in the code.

1. you can type any email that you want
2. you don’t have to write the whole email just a letter or two.. not even the @
3. you can login how ever you want to.. you just ned the a correct password. It has nothing to do with the email.

Comment by Sleepwalker | October 25, 2007 @ 4:40 pm

its cool but i would prefer if it didn’t go to another page

Comment by sameh | October 28, 2007 @ 8:19 pm

[...] Here’s another AJAX login form example using php, javascript and css. http://joeabiraad.com/ajax/ajax-login-form-php-javascript/89 [...]

Hi there,

Just came across this and whilst it seems to work okay if you click the button, if you press return whilst in any of the fields it will let you in no matter what you type into the fields.

Just thought you should know.

Best wishes,

Mark

Comment by Mark Bowen | November 7, 2007 @ 12:40 pm

This login form does not register any session/cookie.
You will have to this yourself

Comment by Jo | November 7, 2007 @ 2:25 pm

Thanks for this login page…. it works ……

Comment by Wendy Primus | November 12, 2007 @ 8:12 am

Doesn’t want to work in IE 7

Comment by Lamonte | November 20, 2007 @ 9:13 pm

ghdfgh

Comment by dgh | November 25, 2007 @ 8:06 am

self.form.ChangeAlert.checked is null or has no properties

Comment by hone | November 27, 2007 @ 11:23 am

t’s a good idea BUT…
You got some wrong things in the code.

1. you can type any email that you want
2. you don’t have to write the whole email just a letter or two.. not even the @
3. you can login how ever you want to.. you just ned the a correct password. It has nothing to do with the email.

——-

Just change:
if ($password == $good_pass){

To:
if (($password == $good_pass) && ($email == $good_email)){

Comment by gunniz | November 29, 2007 @ 3:27 pm

[...] Ajax login form (PHP) [...]

yeah , thats pretty cool!

Comment by Kevin | December 5, 2007 @ 1:29 am

IT’S VERY NIC BUT I FOUND JS ERROR ON IE 7 IF U ENTER INCORRECT EMAIL AND PASSWORD

BUT OVERALL IT’S VERY GOOD EXCELLENT JOB

REGARDS
SALIK AHMED

Comment by Salik | December 10, 2007 @ 3:18 pm

When I put de User & pass text “welcome.html” appears in the box. I need to redirect another page or addresscom. Can u help me?

Comment by Dave | December 11, 2007 @ 10:08 pm

hi, it’s no work
same error going somewhere ?

ouf.php ( before switch($action) ).
###
$action=trim($HTTP_GET_VARS[’action’]);
### this line its ready
i am not sure what happend can u help me please

Comment by Salvador Franco | December 28, 2007 @ 1:17 am

Wow!!!^

Comment by sikh | December 28, 2007 @ 9:35 pm

I uploaded all the files into the server it does not bring me to the welcome.html page. and i was still in the index.php page with the message display ‘ going somewhere ?’ but when i test it using localhost, it works. can you help me out with tis problem?

Comment by MeiK | January 3, 2008 @ 6:46 am

[...] Ajax login form (PHP) [...]

Hi, it wont load at all, in firefox it loads the message in the top box, but i get the error going somewhere? latest version used, in ie though, nothing, no messages nothing.. please help? Thanks

Comment by RB2004 | January 12, 2008 @ 2:36 am

Also forgot to mention, running on IIS with php installed

Comment by RB2004 | January 12, 2008 @ 2:37 am

Hi everone,
I have a question.
Could you please help me ?
How can a server understand when lots of users login simultaneously ?
I am working with PHP but I cant write a script for this.
thanks from now

Comment by Simug | January 15, 2008 @ 10:46 pm

Hi, Thats beautifullogin u implemented. I had to remake my login using ur code. but apparently the ajax part doesnt work. i have other works in ajax and they work fine. this is how it is now. wen i hit the submit button it starts loading the whole part no ajax working. and am using fire bug the error there is

self.form has no properties
http://127.0.0.1/_applogin.js?2122778914
Line 76

what could be there problem. its really frustrating me. thanx

Comment by Antoine | January 16, 2008 @ 9:00 am

Amazing really amazing script thank you

Comment by mona | January 19, 2008 @ 8:53 pm

Very Cool Script….

I am waiting for your Version 2 : Login …

Comment by Jo | January 24, 2008 @ 2:31 am

When I am downloading it, then ajax2.rar gets download but when I open it there is nothing in it.
Please help me. and send me the files to my email
thanx

Comment by KB | January 27, 2008 @ 6:46 pm

cool script

Comment by AJAX Login System using XMLHttpRequest | January 28, 2008 @ 1:17 pm

great form.
but i dont understand how t use the javascript stuff.
wont open on my pc.
where do i put it in my site?

Comment by jem | February 5, 2008 @ 1:19 am

This is a nifty script ;) Well, it’s asked before. Do you know if it’s easy to use for a multi-login purpose. So integrate a variable which identifies the loginform.
That should be really great!! Hopefully someone can help me with this.

Thx!

Comment by jeroen | February 8, 2008 @ 10:14 am

Nice script, it was just what I was looking for, however, I noticed once you get to the welcome page you can bookmark it and return later bypassing the login. Is there a way to make someone always login?

Comment by WBGX | February 11, 2008 @ 4:26 pm

nice cript. but what you do when you get to the page . how can i protect the pages and the files in the in there , so users MUST login to see the pages ?

thanks
jeff

Comment by jeff | February 14, 2008 @ 12:57 am

[...] Ajax login form (PHP) [...]

Hi… good contribution.
Is there a way I can redirect to a url which has been typed in earlier, rather than to the welcome page.
Many thanks.

Comment by Eugene | February 23, 2008 @ 8:23 am

Thanks. Thanks all.

Comment by okan | March 6, 2008 @ 7:41 pm

Great script, using it on my new project :D

Comment by HardwareKid | March 14, 2008 @ 7:44 pm

thank you for share.

Comment by derya ajans | March 18, 2008 @ 10:30 pm

to Max
change self.form.Pass to self.form.password

Comment by hudhta | March 26, 2008 @ 8:55 am

to hone
self.form.ChangeAlert.checked is null or has no properties
in _applogin change uncoment //self.enableScreenReaderFeatures();//Joe

Comment by hudhta | March 26, 2008 @ 8:59 am

Hello!

I wondered if you planned a review & update of that script. It’s wonderful that way, but some options which are probably easy for any experienced PHP/MySQL coder would be awesome…
-Register form
-MySQL for accounts storage
-A mini admin panel allowing to add/delete accounts and to modify informations
-Sessions: to remember when the user has logged-in.

That’s all. Also, you promised us a tutorial and I haven’t seen it… is it still planned?

Regards,
Fox

Also, maybe a bit more secured features…?

Comment by Fox | April 9, 2008 @ 3:43 am

[...] 23. Ajax login form ( [...]

Hi,
i have this message:undefined, and i don’t know why. Help me please.
Adress of website: http://jbv.ced.travel/connexion_utilisateur.php

Comment by john | April 15, 2008 @ 5:14 pm

hi,
i need to refresh two / {whatever is possible} at one time by clicking a button but not refreshing the other fields of a form, nor by posting other fields , it should just work as the captcha refresh works, and refreshes the captcha code by interfering the rest of the fields. A help will be highly appreciated and thankful.

Comment by ertarunz7 | April 23, 2008 @ 8:06 am

[...] 23. Ajax login form ( [...]

hi,
i am trying to use the script on one of my site i was trying without chaining any of the script but still i get the error
“going somewhere ?”

i have this line in code as mentioned above
$action=trim($HTTP_GET_VARS['action']);
and this below line also

line numner 105, it is :
self.ajax.doPost(’ouf.php?action=login’, postData, self.handleLoginResp);

still i get the error can u help me please

Comment by umesh | May 13, 2008 @ 9:36 am

its working thx guys..

Comment by ferry | May 14, 2008 @ 5:15 am

thank you for share

Comment by fırat çöloğlu | May 15, 2008 @ 9:46 pm

How to “enable” the submit button “only” once all validation completes?
If the validation is not complete, no submit.

Is it possible and how to enable this function?

Cheers

Comment by M.Dubb | May 20, 2008 @ 2:59 pm

Forgot to add.
I have used this to validate against the database by means of username, email address and would only like to allow the submit button to be available or enabled once the validation is happy:)

Cheers

Comment by M.Dubb | May 20, 2008 @ 3:01 pm

Wow, thanks a lot for this one.
greetings from Amsterdam.

Comment by MG | May 26, 2008 @ 8:50 pm

[...] Nome: Ajax Login Form Descrição: Verifique a autenticação de login e senha via Ajax Download: http://joeabiraad.com/ajax/ajax-login-form-php-javascript/89 [...]

If Your On A Mac It Works So Perfectly! THANK YOU!

Comment by Hank | July 18, 2008 @ 1:29 am

[...] Alternatively you can also use them for login forms, saving the user a trip back to the page they were at. FARAWAY [...]

Thank you very much mr.

Comment by müzik dinle | September 24, 2008 @ 10:02 am

The login.php file in the current rar file seems to only be a partial file. The file ends with ‘<’.

Comment by Brad | September 28, 2008 @ 8:33 pm

[...] joeabiraad.comFormat: AJAX JavascriptDownload – Preview Diese Icons verzweigen auf soziale Netzwerke bei denen Nutzer neue Inhalte finden und [...]

Pingback by AJAX Login Form Script » » pixey.de | October 19, 2008 @ 12:00 pm

Hi dude its just displaying “going somewhere ?” :-S

Comment by Romo | October 28, 2008 @ 8:02 pm

finally got it man… thnx for d nice idea

Comment by Romo | October 28, 2008 @ 8:32 pm

[...] 1.2 Ajax login form (PHP & Javascript) [...]

[...] 1.2 Ajax login form (PHP & Javascript) [...]

[...] Ajax login form (PHP & Javascript) [...]

Pingback by Ajaxian » Groups of 50+ Ajax Examples | November 4, 2008 @ 10:15 am

[...] Ajax login form (PHP & Javascript) [...]

Pingback by Most Wanted Ajax Techniques « Program2.0 | November 4, 2008 @ 11:03 am

[...] Ajax login form (PHP & Javascript) [...]

Pingback by +50 Ejemplos en Ajax | ProyectoAurora.com | November 4, 2008 @ 2:57 pm

great work, thanks

Comment by Ap | November 4, 2008 @ 6:17 pm

thank you for this script

Comment by Eyad | November 7, 2008 @ 11:57 am

hello,

when i tried to run i got this error..

Warning: Unknown: failed to open stream: Permission denied in Unknown on line 0

Fatal error: Unknown: Failed opening required ‘/var/www/apache2-default/ajax/login1/index.php’ (include_path=’.:/usr/share/php:/usr/share/pear’) in Unknown on line 0

please help me soon

Comment by priya | November 9, 2008 @ 10:56 am

[...] 1.2 Ajax login form (PHP & Javascript) [...]

This works beautifully…locally (XAMPP). However, on my host, it doesn’t, and returns the “going somewhere?” response. So for those with the “going somewhere?” error, it may be the way the Ajax is handled on your host.

Comment by Ben | November 12, 2008 @ 8:29 am

The solution to my “going somewhere?” error was that my host ignores $HTTP_GET_VARS. Changing that to $_GET resolved the issue.

Comment by Ben | November 12, 2008 @ 11:03 pm

Hi,
nice script!
Is there going to be an update to it any time soon?

Comment by Ronnie | November 16, 2008 @ 8:30 pm

Many thanks for sharing.

Comment by Farasy | November 20, 2008 @ 7:32 pm

[...] 1.2 Ajax login form (PHP & Javascript) [...]

[...] 1.2 Ajax login form (PHP & Javascript) [...]

I will do it today and update the script… thank you

Comment by Nikon | November 24, 2008 @ 11:36 am

Hey, awesome work.
Is there any way to hide the password and login names in ouf.php, if someone wanted they could check the source of the index.php, then download the accompanying js files and figure out it’s routed to ouf.php and then they download ouf.php and then whala, login and password. Is there a way to remove this capability?

I like what you’ve done, taught me quit a lot so far. :)

Comment by Nicholas Patten | December 3, 2008 @ 6:16 am

its working exactly.
Thanks…………

Comment by Himel Khan | December 3, 2008 @ 10:07 pm

Thanks you very much all ready again.

Comment by ARTI | December 5, 2008 @ 6:11 pm

Fantastic script Jo. Had to tweak a few codes to make it work for us, but it works wonderfully.

Comment by Ritesh | December 11, 2008 @ 11:51 pm

[...] 1.2 Ajax login form (PHP & Javascript) [...]

this thing isn’t even available anymore? no demo no zip file? k

Comment by sucks? | January 2, 2009 @ 3:03 am

very nice scripts thanks for sharing this. keep it up!

Comment by Deviantz | January 25, 2009 @ 2:25 pm

let someone send the code to my email: waleshoola@yahoo.com. thanks

Comment by Shoola | January 28, 2009 @ 9:26 am

@Shoola:

http://www.joeabiraad.com/demos/ajax2/ajax2.rar

Comment by Jo | January 28, 2009 @ 11:19 am

Can you please provide more details on this?

Comment by Marie Santos | February 1, 2009 @ 7:29 am

[...] Ajax login form (PHP) [...]

Pingback by Top 100 AJAX with PHP Tahun 2007 - Get & Give | February 13, 2009 @ 8:59 am

Hi Joe !
Can you post an example of AJAX contact form ?

Thanks !

Comment by Andrew | February 25, 2009 @ 9:07 pm

Hello webmaster
I would like to share with you a link to your site
write me here preonrelt@mail.ru

Comment by Alexwebmaster | March 3, 2009 @ 10:24 am

thanks for sharing

Comment by mario oyunları | March 19, 2009 @ 11:17 pm

Was ist das?

Comment by zesteeraw | March 20, 2009 @ 8:35 pm

how to access database values in ouf.php
i tried to compare user name and password from database
its not working

Comment by baalaji | April 2, 2009 @ 9:42 pm

lopll;;

Comment by d | April 4, 2009 @ 1:46 am

hi

Comment by d | April 4, 2009 @ 1:48 am

thanx

Comment by sdfsdfsdf | April 5, 2009 @ 6:18 pm

[...] login form (PHP & Javascript) [...]

[...] Ajax login form (PHP & Javascript) [...]

I’m just downloaded the zip file and threw it on the wamp server as is and when the index page fist launches, i get a “less then” operator in the lower left hand corner which indicate to me that there is something off with the code. But I went ahead to try to log in with the hint you provide but nothing registrars in the box. Anyone else experience this? Also i see in the index page there’s 2 js code that have ?” withing the call but should it have <?php in that call?

Comment by Joe | April 27, 2009 @ 7:36 am

Can it work on IE8?

Comment by W | May 12, 2009 @ 2:08 pm

Great article, again. These informations are especially useful …

Comment by wow power leveling | May 28, 2009 @ 11:12 am

how to make it? please…

Comment by jaychen | June 15, 2009 @ 7:30 am

Hey there!
So far, your script is working really well for me.
I am having a huge problem that is driving me up the wall, though.

When submitting my form, the link in which I would like to be redirected to is shown. My guess is it’s a problem with the server on handling everything, but I really need the redirect to work. I’ve tried other ways around it, but since the responseFormat and whatnot are all set to text/XML/object and I can’t seem to get it to anything with HTML- I can’t get a redirect at all. Please please please help me out as quickly as possible!

-Alexander

Comment by Alexander | June 29, 2009 @ 10:27 am

nice tutorial.. thx

Comment by elizer | July 1, 2009 @ 11:31 am

very poor your website very hell.

Comment by dev | July 22, 2009 @ 4:25 pm

[...] Ajax login formA very simple ajax-based login form. [...]

[...] Ajax login formA very simple ajax-based login form. [...]

Good on your

Comment by Lida | July 30, 2009 @ 10:05 am

nice tutorial its work but why i’m type welcome not index thats show up in my browser. the page not protected how to protect welcome page

Comment by viantd | July 30, 2009 @ 4:31 pm

very nice script, thanks.

Comment by hvac | July 30, 2009 @ 9:54 pm

[...] Ajax login formA very simple ajax-based login form. [...]

[...] Ajax login formA very simple ajax-based login form. [...]

[...] Ajax login form (PHP & Javascript) [...]

[...] Ajax login form A very simple ajax-based login form. [...]

Pingback by A word about MooTools- Anastacia | August 17, 2009 @ 4:00 pm

Is there a way to have a register page?

Comment by Kevin | August 23, 2009 @ 2:37 pm

waste of time

Comment by d | September 1, 2009 @ 8:56 pm

I Have One Problem!!!!!!
I have done “Check Availability of Email”program but my Problem is when I click on Check Availability Button My Form is Submit Why?
i have not click on submit button Please help me

Comment by Vijay | September 2, 2009 @ 4:56 pm

[...] 23. Ajax login form ( [...]

[...] Ajax login form A very simple ajax-based login form. [...]

great script, thanks.

Comment by Dave e | October 27, 2009 @ 10:57 pm

why not example mocument ? for asp script…

Comment by illaki | November 9, 2009 @ 11:28 am

[...] 1.2 Ajax login form (PHP & Javascript) [...]

yap. its a great login script i appreciate your efforts.

Thanks!

Atiq khattak SWE EsolPK

Comment by Muhammad Atiq khattak | December 5, 2009 @ 9:44 am

i want to study the ajax! thanks!

Comment by jones | December 6, 2009 @ 4:12 pm

Thanks Man! That is a very nice script.This is also a php-ajax script,It is kinda easy to use http://www.phpstring.co.cc/ajax-login-module/

Comment by Jambara | December 9, 2009 @ 5:35 pm

[...] noticed a new referral in my referrals list. Anyway it seems that an italian blog has mentioned my Ajax login form (PHP & Javascript) post in an article of his. The article can be found here. So the reason i am writing this post is [...]

noticed a new referral in my referrals list. Anyway it seems that an italian blog has mentioned my Ajax login form (PHP & Javascript) post in an article of his. The article can be found here. So the reason i am writing this post is [...]

Comment by ravi | January 31, 2010 @ 4:23 pm

Is it possible to have multiple users with different passwords and a different message to be displayed for each user?

Comment by Pushka | February 18, 2010 @ 12:33 am

Can you post an example of AJAX contact form ?

Comment by mario oyunları | March 3, 2010 @ 11:07 am

Any to good log

Comment by Biber hapı | March 10, 2010 @ 1:57 pm

good article and post. thanks.

Comment by mario oyunları | March 16, 2010 @ 2:37 am

thats great, thank you very much

Comment by lida | March 28, 2010 @ 4:13 am

Is it possible to have multiple users with different passwords and a different message to be displayed for each user?

Comment by kosmodisk | March 29, 2010 @ 2:27 pm

Next post will be a tutorial on how to make it

Comment by sikiş | April 22, 2010 @ 5:17 pm

Is it possible to have multiple users with different passwords and a different message to be displayed for each user?

Comment by Cosmo Disk | May 24, 2010 @ 2:06 pm

Not working anymore in Google Chrome version (5.0.375.55 beta). Submit button is inactive..

Comment by Simmi | May 31, 2010 @ 1:15 pm

Is it possible to have multiple users with different passwords and a different message to be displayed for each user?

Comment by diziizle | June 23, 2010 @ 4:31 pm

RSS feed for comments on this post. TrackBack URL

Leave a comment