Related Articles
How to Get Current Page URL Using PHP
If you would like to know from which page the request has come from using post Method then there is a simple PHP script can solve your issue. Get Current Page URL Using PHP Check below script to Get Current page using PHP function getCurrentURLPage() { $s = empty($_SERVER[“HTTPS”]) ? ”: ($_SERVER[“HTTPS”] == “on”) ? […]
10 Mistakes Which PHP MySQL Developers Make
1. Using MyISAM rather than InnoDB MySQL has a number of database engines, but you’re most likely to encounter MyISAM and InnoDB. MyISAM is used by default. However, unless you’re creating a very simple or experimental database, it’s almost certainly the wrong choice! MyISAM doesn’t support foreign key constraints or transactions, which are essential for […]
HTTP Codes Web Page Errors While Browsing
Below are some web page errors you may came/come across while browsing internet. The error ranges are many but below are the ones which will occur mostly. Error 400 – Bad request errorError 401 – unauthorized request errorError 403 – forbidden errorError 404 – Not found errorError 500 -Internal error errorError 501 – Not Implemented […]