What is CMS?
Do you know what is CMS or have you heard about it? If you deal with websites directly, you have probably heard of them. But, you may not understand it yet. Therefore, our goal with this article is that you understand what a CMS is and its particulars. We will explain what a CMS is, […]
PHP Array to string: a complete guide
Basically, the conversion from a PHP Array to a string can be easily done by the implode() function. So, here you will find some examples. <?php $array = array(‘One’,’Two’,’Three’,’Four’); $string = implode(” “,$array); echo $string; ?> Output: One Two Three Four So, the variable $string has now the contents of the PHP Array. The implode() […]
How to host my WordPress site?
How to I host my WordPress site? Here, you will learn everything you should know to obtain a Web Hosting, install WordPress and then Host WordPress Site! What do I need to host a WordPress Site? The first step to host a WordPress Site is registering a Domain Name and obtain a Web Hosting Plan […]
Webpage Hosting in 4 easy steps
Do you know how to obtain your webpage hosting? So, in this article, we will learn everything you wanna know before doing that! Let’s see it. Choosing a webpage hosting The first step in getting your web page hosting is to hire a Web Hosting that meets the needs of your page. But how to […]
Best domain and hosting provider
Do you already know what is the best domain and hosting provider? So, in this article, we will discuss important things to verify before you choose your provider. What is a Domain? A domain, or domain name, is the address of your webpage on the internet. You can obtain a domain with different extensions, like […]
Host a PHP Site in 5 easy steps
Do you know how to host a PHP site? And about what host is better for you? So, let’s see that and other things you have to know about it. What do I need to host a PHP Site? The first step to host a PHP site is registering a Domain Name and obtain a […]
PHP Loop through array
There are some methods to look through one array in PHP. The functions are foreach, while and for. In this article, we will show examples on PHP loop through array using each of these functions. By these examples, there will be a loop in the PHP script, and on each member of the array, the […]
PHP upload multiple files
In this example, we will show a script in PHP to upload multiple files at once. This PHP upload multiple files script works in any standard PHP based server. First of all, the HTML page will prompt you to select multiple files. Then, as you click Upload, the server will process the files one by […]
How to solve the error upload_max_filesize in PHP
If you own a website where users are allowed to upload files, you might often get complaints stating that they are unable to upload files. They would be hitting an error as follows: “Error: The uploaded file exceeds the upload_max_filesize directive in php.ini” upload_max_filesize mentioned in the error above is the limit of the size […]
PHP max execution time: How to increase
Sometimes you might have noticed that certain PHP scripts that you wrote are not working as desired. A very common error message is Fatal error: Maximum execution time of 30 seconds exceeded. The cause is the PHP restriction on the directive max_execution_time. But, it’s easy to adjust the PHP max execution time. Firstly, the amount of time […]
How to fix PHP register_globals errors
If you are using an old version of PHP, it is likely that you have seen errors as follows: PHP Fatal error: Directive ‘register_globals’ is no longer available in PHP in Unknown on line 0 “PHP Fatal error: Directive ‘register_globals’ is no longer available in PHP in Unknown on line 0” “PHP Fatal error: Directive ‘register_globals’ […]
How to check and update PHP Version in cPanel
PHP is by far the most favourite scripting language when it comes to websites. Our servers run different versions of PHP and customers are free to choose the version they like. This is accomplished using the PHP version selector in cPanel. The post describes how versions can be selected based on your requirements. It’s very […]
How to increase PHP Memory Limit in cPanel
In this article, we will explain the PHP Memory limit error in cPanel, and show a quick and easy solution for it. It requires a simple access to the cPanel shared hosting account. Why does the Memory limit error happens ? Sometimes when you execute a PHP script, you will notice that it returns an […]