• How to Hyperlink HTML

    Updated on:

    Here's five examples of how to hyperlink HTML documents. To create a hyperlink, copy the desired HTML code and paste it into your HTML documents.

  • URL Redirects

    Updated on:

    How to make URL redirect pages and host them on your own website. <?php header( 'Location: https://example.com' ) ; ?> Example one - filename.php https://YourDomain.com/filename.phphttps://YourDomain/directory/filename.php…

  • PHP Get Current Year

    Updated on:

    I've just started adding the PHP get current year code snippet to my website templates. I'm sure there's many more use cases. <?php echo date("Y");…

  • htaccess 301 Redirect

    Updated on:

    The htaccess 301 redirect is the best search engine friendly way to redirect URLs on an Apache server. Here's how to make them easily. Redirect…