Categories
PHP

Check Email Availability using Ajax php

Check Email Availability using Ajax php Hi friends, in this post we will discuss how to Check Email Availability using Ajax php. It is something like, user earlier registered with us or a new user. It will provide you information live and user don’t want to reload the entire form in case of email registered earlier. In […]

Categories
PHP

mysql_affected_rows example php

mysql_affected_rows example php In this post we will learn how to use MYSQL Affected Rows Example In PHP. mysql_affected_rows() functions returns the number of rows affected by the last query (INSERT, UPDATE or DELETE) associated with link_identifier, this should be called before commit. Code: <html> <head> <title>MYSQL Affected Rows Example In PHP</title> <style type="text/css"> body { […]

Categories
PHP

MYSQL Functions In PHP

MYSQL Functions In PHP In this post we are going to see MYSQL Functions In PHP.These functions are widely used in application development in PHP. Table of Contents mysql_affected_rows Get number of affected rows in previous MySQL operation mysql_change_user Change logged in user of the active connection mysql_client_encoding Returns the name of the character set mysql_close […]

Categories
PHP

How To Encrypt Text In PHP

How To Encrypt Text In PHP In this tutorial we will discuss How To Encrypt Text In PHP.Text or a password encryption can be done very easily using the functions md5() or sha1() or crypt() in php. Encrypt Using MD5 <html> <head> <title>How To Encrypt Text In PHP</title> <style type="text/css"> body { width: 980px; margin: 0px […]