Add this script inside .htaccess file to force https.
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Add this script inside .htaccess file to force https.
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
To pass parameter to next page, first we need to make sure that we have 2 pages which is page from and page to. In page from ts file, you h...