INTERNET DICTIONARY
SEO – (marketing term, closely related to position of your website in search result in Google, yahoo and other search engines) Search engine optimization (SEO) is the process of improving the volume or quality of traffic to a web site from search engines via “natural” or un-paid (”organic” or “algorithmic”) search results as opposed to […]
PHP/HTML schoolz part 2
How to include one page in your index? Or maybe just part of it, or call to bring specific php file to be executed? …………………………………… IFRAME Easy way to include whole page is simple iframe tag. It is handy as you can insert external source file. You can also change settings like: scrolling=”auto” scrolling=”no” scrolling=”yes” […]
php schoolz
———————————————————— – Redirect 301 index.php placed in root folder will redirect it to specifed path as below: ' <? Header("HTTP/1.1 301 Moved Permanently"); Header("Location:https://pin55.com/php-schoolz/%22; ?> ' or '<?php header('location:https://pin55.com/'; ?>' Why would you need to use it? For example if you can not set up redirection on IIS or Apache webserver folder for some reason, […]