That is why I asked if you have a server on your PC for proper testing. If not then I can suggest that you try something like XAMPP which you can get from portable Apps which is a system that allows you to install and run from a *USB drive / flash drive / thumb drive / stick drive and test in a proper web based environment that you can refer to in a web browser by IP address or the loopback name.
If you edit your local hosts file, you can add in a name and point it to 127.0.0.1 and end up with http://testing/ for example
your hosts file is found in %windir%\system32\drivers\etc\hosts
copy %windir%\system32\drivers\etc\hosts and open a run dialog and paste, hit return and select notepad to open the file then you will see something like...
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
after 127.0.0.1 localhost on a new line put
127.0.0.1 testing
then save the file, close and then you will have a URL for http://testing/ that will open up the root page for your installed server (obviously when you have your server installed!)
So... go here http://portableapps.com/ and grab the installer for the portable apps program and then go here http://portableapps.com/apps/development/xampp and grab XAMPP, install and then run, the server will then respond to http://testing/ when you request it in a web browser.