Include Files
->
On this article, I will explain how to use Include files on Html, Asp, and Php files. Most of the paid hosting companies allow you to use include files. It is one of the best ways to control your fully loaded website.
Include files in Html
In html, you can use a simple code to include a file in another one. So let’s say you have index.html and you want to add menu.html as an include file; so you would open the source code for index.html and add the following code:
<!--#include virtual="menu.html" -->
If you add this code to your index.html’s source html code and it doesn’t work, don’t give up. Most hosting companies allow to add include files to only .shtml files. So what you is easy and simple, just rename your index.html to index.shtml
Include files in Asp and Asp.NET
In asp it is very easy to add an include file to your source codes. It is just like the code above for Html files but in a different words. The code is:
<!–#include file=”example.asp” –>
YES! there is only one word difference. Instead of “virtual” your going to use “file” to include a file.
Include files in Php
Include files in Php is the same concept. The code is below:
<?php include("example.php"); ?>
You can use any type of files you wish to include. If you have a page named menu.html you can include this page into your Php or Asp coded page. For example:
<?php include("menu.html"); ?>
Domain Transfer
->
On this article I will explain how to transfer your existing domain to a new registrar. Every domain registrar has their own way of doing things differently, but I will explain the main process on this article.
What is a Domain Transfer ?
A domain transfer is when you transfer your existing domain name to a new registrar.
Why should I transfer my Domain ?
There might be many reasons for this cause. Most popular one might be the price of the domain name and what the registrar offers you. For example if you pay $10 for a domain name in a registrar, and get basic features, and if you pay $7 at another company and get the same features then you might think of transfering your domain name. Sometimes the customer care and the user interfrence have affect aswell.
How to transfer a domain name to another register
FIrst, you need to have an account at the new registrar your planning to transfer your existing domain to. Then you need to find the Authorization code (Auth Code) of the domain name your transfering.
When you get this code, go to your new registrar and submit atransfer inquiry, you need your Auth code for this inquiry. When you submit this inquiry, your new registrar will send an email to your existing registrar informing it about the transfer, you must aprrove the transfer on this email to contuinue.
After this your domain should be able to transfer to your new registrar without any problems. It might take couple days for you to recieve the approval email.
