How to Delete a Cookie with PHP
Just like you can create a cookie with PHP, you can also delete it. In this tutorial, I will show you how to delete a cookie that you previously stored on the user's device, with the help of a simple PHP script. Read more...
PHPHow to Create a Cookie with PHP
One of the methods for creating and saving HTTP cookies on the user's device is to do it with PHP, that is, if your website or application is built with PHP. In this tutorial, I will briefly demonstrate how to create a cookie using PHP. Read more...
PHPHow to Show Hidden Files in FileZilla
In this tutorial, I will quickly demonstrate how to show hidden files that are stored on a server, when you connect to it over FTP via the free file transfer software FileZilla. Read more...
FTPHow to Create a ZIP Archive with PHP
You can programmatically create Zip archives in your PHP web application or website using the functionality of one of the compression and archive extensions such as the Zip extension. In this tutorial, I will demonstrate how to create a Zip archive with PHP. Read more...
PHPHow to Embed SoundCloud Tracks on Your Website
SoundCloud allows users to place music tracks on their websites with an embed feature. In this tutorial, I will explain how to embed SoundCloud tracks on your website with a couple of examples. Read more...
InternetHow to Add Another Email Address to Your Yahoo Mail Account
If you are using multiple email addresses on various email services such as Outlook, Gmail and AOL, you can add them to your Yahoo Mail and use it as a single email box. In this tutorial, I will demonstrate how to add another email address to your Yahoo Mail account. Read more...
EmailHow to Create a Download Link in HTML
You can easily create navigational links in HTML but when it comes to creating links for downloading files, it may get a little tricky. In this HTML tutorial, I will demonstrate how to create download links with the help of some examples. Read more...
HTMLHow to Download a File with PHP
You can do a lot of things with PHP scripts, including the automatically downloading of files that are stored on your server. In this tutorial, I will talk about how to download a file from your website using PHP. Read more...
PHPHow to Include PHP Variables in JavaScript
Combining PHP and JavaScript shouldn't scare you, because in some cases you may need to pass PHP variables to JavaScript in order to accomplish certain tasks in your applications. In this tutorial, I will show you how to include PHP variables in JavaScript by giving some examples. Read more...
PHPHow to Get All Files and Folders in a Folder with PHP
In this tutorial, I will show you how to get all the files, subfolders and files in subfolders within a folder recursively using PHP, with the help of a detailed example. Read more...
PHP