WebSite Name

  1. Once you know what your subject will be, choose a memorable but short name for it that you can use as a folder name. Use variable naming rules. IE, no spaces or "special" characters. Just alphanumeric and underscores. If you must use a dash, I'll allow them.
    Yes!
    A student developer working on a website for the campus geology society might choose...
    
    <a href="http://hive.sewanee.edu/doejj01/SewaneeRocks"> Sewanee Rocks! </a>
    
    But NOT NOT NOT!
    <a href="http://hive.sewanee.edu/doejj01/CS%284/MyProject/Final3/finalProject.php"> CS 284 - Final Project </a>
    
  2. Name your main file "index.php" or "index.html" (see above)
  3. All of the links to files within your website should be relative to the current project and have descriptive names as well.
    Yes! 
    <a href="register.php"> Register </a>
    
    <a href="newUsers/register.php"> Register </a>
    
    A big no-no!
    <a href="http://hive.sewanee.edu/doejj01/CS284/MyProject/SNL/register.php"> Register </a>