What is domain name?
Domain name also called an Internet address or name, a domain is the location of a website. For example, the domain name is “google.com” points to the IP address “172.217.166.206” (this is ip address not fixed, this is changeable). Generally, it’s easier to remember a name rather than a long IP address. A domain name […]
January 12, 2021
Read MoreStore Form data in CSV Excel File by using PHP
In this way we can directly save data in csv file format in hosting folder with the help of PHP environment and that csv file easily access by MS Excel, LibreOffice and any other spreadsheet programs. Every data save in new row in selected excel file. Source Code
September 1, 2020
Read MoreHow to get visitors country from their IP in PHP ?
In this way we can get visitors information from IP like (Latitude, Longitude, Continent Name, Country Name, City Name, Currency Symbol, Currency Code, Time zone). Source Code
July 2, 2020
Read MorePHP mail with attachment
Introduction Mail function is a php global function. mail() use to send emails quickly and easily. PHP mail with attachment
March 6, 2020
Read MoreMedia Queries on CSS: How to target desktop, tablet, and mobile?
Targeting media features Targeting media types Media types describe the main types of devices. Web designers are using these queries to write separate styles to create that target special devices such as printers different types of screens.
December 20, 2019
Read MoreEncryption and decryption in PHP
Encryption and decryption in PHP This is function is tested for high-security level coding in a very long time. Our we share our encrydecry function for helping your developers to create a 100% secure coding environment. For encryption some value For decryption some encrypted value
November 25, 2019
Read MorePHP MySQLi Prepared Statement
In this article we want to help developers to learn and improve there skills in php & Also Securely access mysql database and query.
November 23, 2019
Read MoreHow to use PHP htaccess file
Just create a file with .htaccess file in your website folder. For Redirect website http://example.com to http://www.example.com RewriteEngine OnRewriteCond %{HTTP_HOST} !^www. [NC]RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] For Redirect website http://example.com to https://www.example.com RewriteEngine OnRewriteCond %{HTTP_HOST} !^www.RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L] When you have to redirect the website non HTTP to HTTPS protocol after installing an SSL certificate […]
October 16, 2019
Read More