Category: Web Development Tips
Whenever a person publishes a negative review, feedback or comment about a product or service online, your business will be surely on the edge of death! Just keep in mind that anything that posted...
Among all the top web CMS platforms, WordPress is the fastest and simplest platform to create a website. It’s pretty simple as all need to install WordPress and start customizing it to suit your...
Copy and paste the given blow code in your theme functions.php file which will change the length of the wordpress excerpt function. function ratanjyot_solutions_excerpt_length($length) { return 50; } add_filter(‘excerpt_length’, ‘ratanjyot_solutions_excerpt_length’); The above code set...
Sometimes you need to replace newline to space or any other format (i.e:- \r\n). This is done by copying and pasting the content. To resolve this problem I use the given blow code. $remove_character...
The main difference between mysql table type MyISAM and InnoDB is that InnoDB supports transaction by MyISAM does not. MyISAM support full text search but InnoDB does not. InnoDB supports some new features: Transactions,...
By the given blow script we can find the number of days between two dates <?php $first_date = strtotime(“2010-08-01”); // or current date as well $second_date = strtotime(“1988-08-01”); $datediff = $first_date – $second_date; echo...