phptutorials4all.blogspot.com
Php Tutorials 4all: php web development tools - captcha
http://phptutorials4all.blogspot.com/2011/09/php-web-development-tools-captcha.html
Monday, 19 September 2011. Php web development tools - captcha. Web development tool CAPTCHA, stands for Completely Automated Public Turing to tell Computers and Humans Apart. A CAPTCHA is a program that can generate distorted text that humans can see or listen but computer cannot. Applications of CAPTCHA systems. Preventing Spam in Blogs. In web application development we can use the following CAPTCHA systems that are listed below. This script support GPL CAPTCHA script systems to stop spam. Php $Mercha...
phptutorials4all.blogspot.com
Php Tutorials 4all: 18/09/11 - 25/09/11
http://phptutorials4all.blogspot.com/2011_09_18_archive.html
Thursday, 22 September 2011. How to generate a random password using php. Here there is a simple example for generate a random password using php, it is quite easy and simple to make. Length =10; / the length of the required password length. Characters to use ="abcdef1234567890"; / characters are to be use in your password. For($i = 0; $i $length; $i ). Do = mt rand(0,strlen($characters to use)-1);. Password = $password . $characters to use{$do};. Echo $password; / here you can view the password. In this...
phptutorials4all.blogspot.com
Php Tutorials 4all: php comment syntax - Look at various types
http://phptutorials4all.blogspot.com/2011/08/php-comment-syntax-look-at-various.html
Thursday, 25 August 2011. Php comment syntax - Look at various types. Look at various types php comment syntax. Posted by html codes. Subscribe to: Post Comments (Atom). CCavenue PHP script - Free ccavenue developers code in php. Php $Merchant Id = your merchantid;/ This id(also User Id) available at Generate Working Key of Settin. Redirect URL's index page to nonindex page. How to make account registration with account activation script in PHP. Redirect URL from subdirectory to sub domain using htaccess.
phptutorials4all.blogspot.com
Php Tutorials 4all: 04/08/13 - 11/08/13
http://phptutorials4all.blogspot.com/2013_08_04_archive.html
Tuesday, 6 August 2013. Redirect URL's index page to nonindex page. Try to use this important htaccess code for redirecting an URL's index page to non index Url’s. this code is very very important for seo point of view. RewriteCond %{THE REQUEST} /index .html [NC]. Index .html$ http:/ www.maindomain.com/$1 [R=301,L]. Posted by html codes. Redirect URL from subdirectory to sub domain using htaccess. For example, the .htaccess file is full of rules like the following:. RewriteCond %{HTTP HOST} (www .)?
phptutorials4all.blogspot.com
Php Tutorials 4all: 28/08/11 - 04/09/11
http://phptutorials4all.blogspot.com/2011_08_28_archive.html
Wednesday, 31 August 2011. Print multi select option with comma in php. Using php we can print or display multiple select option with comma. Copy this php code and test. Option value="one" one /option. Option value="two" two /option. Option value="three" three /option. Option value="four" four /option. Option value="five" five /option. Input name="submit" type="submit" value="Send" /. Foreach($arr as $key= $value). Itemid=$itemid.' .$value.', ';. Itemid=$itemid.' .$value;. Posted by html codes. Php web d...
phptutorials4all.blogspot.com
Php Tutorials 4all: Hide navbar from blogger
http://phptutorials4all.blogspot.com/2011/09/hide-navbar-from-blogger.html
Wednesday, 21 September 2011. Hide navbar from blogger. If you want to hide or remove the navigation bar which is appear on the top region of your blogger, follow these steps. 1 Login to your blogger. 3 Goes to "Template Manager", a template editor will be open. 4 Click on "Advanced" and then "Add css". 5 Then at right side text box areas put the below mentioned css code . and then click on "apply to Blog" option for saving this property to your blogger. 6 Watch the changes in your browser. Web developme...
phptutorials4all.blogspot.com
Php Tutorials 4all: Print multi select option with comma in php
http://phptutorials4all.blogspot.com/2011/08/print-multi-select-option-with-comma-in.html
Wednesday, 31 August 2011. Print multi select option with comma in php. Using php we can print or display multiple select option with comma. Copy this php code and test. Option value="one" one /option. Option value="two" two /option. Option value="three" three /option. Option value="four" four /option. Option value="five" five /option. Input name="submit" type="submit" value="Send" /. Foreach($arr as $key= $value). Itemid=$itemid.' .$value.', ';. Itemid=$itemid.' .$value;. Posted by html codes. Web devel...
htmlcomment.blogspot.com
Html tutorials: Html comment tag
http://htmlcomment.blogspot.com/2011/08/html-comment-tag.html
Friday, 5 August 2011. And end with the bracket. Example: Html comment tag. This is a comment line. This text are not displayed in the browser window -. P This is a paragraph. /p. Posted by making fun. Subscribe to: Post Comments (Atom). HTML is a markup language for web pages. HTML stands for Hyper Text Markup Language, it is not a programming language, it is a markup lan. Html comments start with! And end with the bracket. Example: Html comment tag! This is a comment line. This text are no.
phptutorials4all.blogspot.com
Php Tutorials 4all: 02/10/11 - 09/10/11
http://phptutorials4all.blogspot.com/2011_10_02_archive.html
Sunday, 2 October 2011. How to make account registration with account activation script in PHP. This is a basic and simple user account registration script with account activation script, written in PHP and MySql. This is a link, which comes from user email, when the user click on itt, then the link goes and redirect to this script. Http:/ xyz.com/activate.php? Make a page named it as activate.php and paste below stated php code. If($ GET['key'] = true). Key = $ GET['p'];. Sql = "UPDATE users. This is a ...
phptutorials4all.blogspot.com
Php Tutorials 4all: Redirect URL from subdirectory to sub domain using htaccess
http://phptutorials4all.blogspot.com/2013/08/redirect-url-from-subdirectory-to-sub.html
Tuesday, 6 August 2013. Redirect URL from subdirectory to sub domain using htaccess. We can redirect URL's from any subdirectory (like maindomain.com/dorectoryname) to a sub domain (subdomain.maindomain.com) using PHP and .htaccess by the subsequent ways. For example, the .htaccess file is full of rules like the following:. RewriteCond %{HTTP HOST} (www .)? RewriteRule dorectoryname/(.*)$ http:/ subdomain.maindomain.com/$1 [L,QSA,R=301]. Or we can using this code. RewriteCond %{REQUEST URI} /. Web develo...