How to get the client IP address in PHP?
$_SERVER['REMOTE_ADDR'] id use to get the IP address of the user. But sometime it may not return the true IP address of the client at all time. Use Below code to get true IP …
How to open pdf file to another tab in browser
HTML | Target attribute To open a pdf file we can use the target attribute of the anchor tag. The target attribute of the anchor tag specifies where to open the linked document. Syntex for using …
What is PHP Variables
PHP | Variable A variable is a user define keyword which is used to store value like string, number, and array. Once a variable is defined then we can use it one or more than …
What is php?
PHP | What is php? PHP is a popular server site scripting langage stands for "PHP: Hypertext Preprocessor". It is an open source scripting language, hence it is free to download and use. We can …