Categories
Developer Forums

How 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

Categories
Developer Forums

PHP mail with attachment

Introduction Mail function is a php global function. mail() use to send emails quickly and easily. PHP mail with attachment

Categories
Developer Forums

Encryption 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

Categories
Developer Forums

PHP 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.

Categories
Developer Forums

How 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 […]