How to Make a Pendrive Bootable Using Command Prompt (CMD)
Creating a bootable pendrive is a straightforward process when using the Command Prompt in Windows. This method is especially useful for installing operating systems like Windows or Linux. Follow these…
What is short open tag in php
<?= is not equal with <?php. <?= is the short open tag for <?php echo <? is the short open Tag for <?php You can use short open tags by…
How to change PrestaShop admin Password using Database
Step :01 Go to the PrestaShop root folder and find the config folder. This will take you to a list of all files within that folder.select-config-folder Step :02 Look for…
How To Install WordPress Plugin Without Using FTP
You are not able to update/upgrade your WordPress and plugins to a newer version without providing your FTP connection information. This is a common issue whereby the WordPress system can’t…
How to check php version in website
Creating a PHP info page in Website Using the steps below I'll show you how to create a PHP info page that will allow you to not only see your…
Excerpt or Content Word Limit in WordPress
This is just a revamp of a function I wrote a while back to add the ability to limit the number of words displayed when you call the excerpt or…
Sending Simple HTML Email with PHP
It's Not Much Different Than Text Email Sending HTML Email through PHP uses the exact same mail function as text email: Code 01: mail($to, $subject, $message, $headers); The last parameter,…