Any ideas?
LINKS DON'T WORK ON MY LOCALHOST
Moderator: General Moderators
LINKS DON'T WORK ON MY LOCALHOST
In my php pages, I cannot link (with html) to other pages. I am running easyphp. Even just the basic text links dont work 
Any ideas?
Any ideas?
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
It doesnt do anything. This is an example:
When I click it, nothing happens 
Code: Select all
<a href="e;file:///C|/Program%20Files/Eas1yPHP1-8/www/top2.jpg"e;>hello</a>Firefox doesn't link to drives like IE does. Assuming your using Firefox...(And if you not. then I don't care to answer your question)
J/K
Try something like this:
J/K
Try something like this:
Code: Select all
//note the 3 ///
<a href="e;file:///Program%20Files/Eas1yPHP1-8/www/top2.jpg"e;>hello</a>Also...If your not trying to link to a specific drive letter
Try this:
Try this:
Code: Select all
<a href="e;http://localhost/top2.jpg"e;>hello</a>