Web programming
Clear cache and other browser data
Clear cache and other data from the CHROME browser: You have control over your browsing data, including download and browsing history, and stored form data. Use the "Clear browsing data" dialog box to delete all or part of the data collected during a specific period. Delete all data ...
Change Cpanel password
For various reasons we need to change our password to access our cPanel, it is even advisable to do it constantly. To achieve this we will follow these simple steps. 1.- Enter our cPanel administration area with our current accesses. To enter it you must enter the address of your domain adding at the end "/ cpanel". Example: domainexample.com/cpanel ...
Install WordPress from Softaculous
WordPress has become one of the most popular tools when it comes to publishing content on the web, designing web pages or creating applications in the cloud. In this post we are going to explain one of the easiest ways to install this famous script and it is using the tools of our Control Panel Cpanel, ...
How to display dates in different formats in English and Spanish with PHP
Hola a todos en esta ocasión vamos a aprender cómo hacer una pequeña función que nos servirá para mostrar las fechas en distintos formatos y además hacerles traducciones al Inglés o al Español. <?php function now($format, $language = «es») { if($format == 1) { return ($language === «es») ? date(«d/m/y», time()) : date(«m/d/y», time()); } …