Related Articles
PHP Magic Constants __LINE__ __FILE__ __DIR__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__
Below are the list of PHP predefined Magic Constants PHP Magic Constants Name Description __LINE__ The current line number of the file. __FILE__ The full path and filename of the file with symlinks resolved. If used inside an include, the name of the included file is returned. __DIR__ The directory of the file. If used […]
Best Free Websites to Learn Jquery
Tuts plus, all the tutorials are of Video Lectures, it has 30 lectures you can learn all the concepts. https://tutsplus.com/course/30-days-to-learn-jquery/ Jquery from Novice to Ninja: http://www.9lessons.info/2009/10/jquery-basics-series-1.html http://www.9lessons.info/2009/11/jquery-basics-series-2.html http://www.9lessons.info/2009/11/jquery-basics-series-3.html Please write in comments section if you know any better websites
Do You Know Difference Between F5 and CTRL+F5
While debugging code or writing code many developers come across refreshing a page, but do you know what exactly the difference between F5 and CTRL+F5? When a user press F5 a new request is sent to the web server and in it sends backs a response for the request as well. But when the response header […]