I have a php webpage that pulls in a variety of html snippets and displays their contents dynamically. One of those snippets includes a jump menu in html that works fine, as long as I use http syntax.
The problem is that several of the options in the dropdown need to point to intranet resources on our corporate WAN that do not have internal web processes. The best I can do is use a UNC with a file:\ protocol. This works when pasted into the browser's address window directly, but the syntax I list below makes PHP choke.
< option value="\servername\share\">blah blah< /option>
... but I get syntax errors.
(the inserted spaces are just for posting)
How do I fix the syntax so that PHP likes it?