Web Development Subscribe RSS feed of category Web Development
List/Grid
How to Parse HTML tags using PHP
PHP has the built-in function strip_tags() for this purpose. strip_tags() function strips a string from HTML, XML, and PHP tags. Syntax: strip_tags(string,allow) Parameters: String – required and used for checking…
How to Count the Total Words of String in PHP
Here is my simplest code for counting the words of any sentence CODE function count_words($val) { $val = explode(‘ ‘,$val); $val = count($val); return $val; } This function returns the…
How to Replace String in PHP
PHP language has an function which is used to replace a string with another string. This Function is worked by following Syntax: str_replace(find,replace,string,count) Parameters: Find – Required and used for…
Top 5 Best Selling Clothing Stores
1. YesStyle.com Store Click This Image for Get a £20 voucher: YesStyle.com is the first online retailer in Asia and other countries to globally distribute a wide range of lifestyle…
Top 6 PHP Techniques That Will Save You Time
1. Properly Create a Website Index Page Creating your web site index page is definitely the initial thing to do for all website which you create. 2. Use the Request…

