phptutorialforall.blogspot.com
php scripts: simple CAPTCHA example in PHP
http://phptutorialforall.blogspot.com/2011/07/simple-captcha-example-in-php.html
Simple CAPTCHA example in PHP. A CAPTCHA is a challenge response test used on computers to check if the user is human.A common kind of CAPTCHA that is used on websites requires that the visitor type the letters and numbers of a distorted image. This method is based on the fact that is difficult for computers to extract the text from the image while it is very easy for humans. Put a small image in the same directory where both file exist then the image name must be img.jpg. Number = $ REQUEST. Php mail wi...
phptutorialforall.blogspot.com
php scripts: A Simple Password Authentication Form - PHP
http://phptutorialforall.blogspot.com/2011/07/simple-password-authentication-form-php.html
A Simple Password Authentication Form - PHP. The given PHP example helps you to make a simple password authentication form. SELECT id FROM customer WHERE email='". Mysql real escape string(. Mysql real escape string(. Do what you want. Username and password are either incorrect or not in the database". Labels: Password Authentication Form. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP. Regular Expressions in PHP. PHP Strings, Escaping string and formating string.
phptutorialforall.blogspot.com
php scripts: Php connect to mysql database
http://phptutorialforall.blogspot.com/2011/08/php-connect-to-mysql-database.html
Php connect to mysql database. Create a new page and save as conn.php and paste the below stated code. Host = "localhost";. Username = "root";. Password = " ;. Db = "Write your database name"; / Write your database name here. Connect = mysql connect($host,$username,$password);. Die('Could not connect: ' . mysql error() ;. Mysql select db("Write your database name") or die('Could not connect: ');. Then we can include the conn.php on every pages that connects to mysql database. Include "conn.php";. Create ...
phptutorialforall.blogspot.com
php scripts: How to upload joomla site to server using ftp?
http://phptutorialforall.blogspot.com/2011/07/how-to-upload-joomla-site-to-server.html
How to upload joomla site to server using ftp? 1 Upload your newly created Joomla site to the server via FTP. 2 Create the MySql Database. 3 Edit the configuration.php file and set the newly created server database name, username, password correctly. U don't have to change the host name usually its "localhost" but if your server MySql is belong to a different IP u need to put that ip in the hostname. 4 upload/replace the configuration.php file. Subscribe to: Post Comments (Atom). PHP - Sorting Arrays.
phptutorialforall.blogspot.com
php scripts: php print
http://phptutorialforall.blogspot.com/2011/08/php-print.html
In php print is used to display or output a string. Print "Hello World"; / string are written inside double quotes. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP. Regular Expressions in PHP. Send Mail with Submitted Form Data and a File Attachment in php. PHP Strings, Escaping string and formating string. Go back to previous page using javascript. A Simple Password Authentication Form - PHP. How to redirect a Page Using Javascript in php. Simple CAPTCHA example in PHP.
phptutorialforall.blogspot.com
php scripts: current Yahoo userid status in php
http://phptutorialforall.blogspot.com/2011/07/current-yahoo-userid-status-in-php.html
Current Yahoo userid status in php. The given PHP example returns the current Yahoo status(online/offline) against a yahoo userid. Http:/ opi.yahoo.com/online? User not specified.'. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP. Regular Expressions in PHP. Send Mail with Submitted Form Data and a File Attachment in php. PHP Strings, Escaping string and formating string. Go back to previous page using javascript. A Simple Password Authentication Form - PHP. Go back to ...
phptutorialforall.blogspot.com
php scripts: Php mysql order by clause
http://phptutorialforall.blogspot.com/2011/08/php-mysql-order-by-clause.html
Php mysql order by clause. The ORDER BY clause is used to sort the data in ascending order(by default) or in descending order. To sort the records in a ascending order, you can use the ASC keyword. To sort the records in a descending order, you can use the DESC keyword. SELECT column name FROM table name ORDER BY column name ASC DESC. Labels: order by clause. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP. Regular Expressions in PHP. Simple CAPTCHA example in PHP.
phptutorialforall.blogspot.com
php scripts: Go back to previous page using javascript
http://phptutorialforall.blogspot.com/2011/07/go-back-to-previous-page-in-javascript.html
Go back to previous page using javascript. If you like to enable your visitors to go back to the previous page by clicking back button in your websites. use this code. Copy and paste this code into your HTML. Input type="button" value="Back to Previous Page" onClick="javascript: history.go(-1)". Go Back to previous page with a simple link. A href="javascript: history.go(-1)" Back /a. Labels: Go Back to previous page. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP.
phptutorialforall.blogspot.com
php scripts: Create database with php mysql
http://phptutorialforall.blogspot.com/2011/08/create-database-with-php-mysql.html
Create database with php mysql. CREATE TABLE IF NOT EXISTS `table sample` (. Id` INT UNSIGNED NOT NULL AUTO INCREMENT PRIMARY KEY ,. Name` VARCHAR( 75 ) NOT NULL,. Email` VARCHAR( 128 ) NOT NULL. ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8 general ci;');. Subscribe to: Post Comments (Atom). Send an Email with Multiple Attachments in PHP. Regular Expressions in PHP. Send Mail with Submitted Form Data and a File Attachment in php. PHP Strings, Escaping string and formating string. PHP - Sorting Arrays.