Send email PHP UTF-8
The following code can see the headers to send an email with UTF-8 characters and HTML content. $headers = "MIME-Version: 1.0\r\n"; $headers.= "Content-Type: text/html;charset=utf-8\r\n";
The following code can see the headers to send an email with UTF-8 characters and HTML content. $headers = "MIME-Version: 1.0\r\n"; $headers.= "Content-Type: text/html;charset=utf-8\r\n";
This new tutorial introduces the Cookie mechanism in PHP. Together we will define what a cookie is and what it is used for. We will then discuss the security principles…
Content HTML Tags Cheat Sheet Div Section Headings or Headers styled paragraph Image Label label for links bold or bold Italic or italic label Underline Tag label for iframe label…
Content What text editor do I use for the web? Why SublimeText? Features of Sublime Text to highlight What text editor do I use for the web? Developing many times…
If we develop complex web applications, or at least with a constant use of database queries, we must be concerned about the security of our information, and therefore ensure the…
It is important to anticipate all possible mistakes that will arise when browsing our websites over time: broken links, programming errors, failure to connect to the database... To correct most…
For those who are not clear about it, or who want to see the different ways that exist, we are going to see with this tutorial how to combine php…
The client-server binomial is a constant concept in web programming, the relationship between back-end and front-end development is a whole, and although it is a relatively basic concept when understood,…
Often, when we develop web applications, the possibility of uploading files or images to the server is necessary, whether we are webmasters, authorized users or part of the general public…
In this tutorial we are going to see an alternative form of representation to the common IF and ELSE that we usually use in php. Specifically, it is very useful…