Right. Quoting made it work. Thanks.
I still need to sort out protecting my database.
I may just password protect the site (fail)
Aye. I've been taking a backup every so often. But automated would be far more useful.
I also handwrite each entry in my lab book :D
<form name="openlocation"> <input type="text" name="code" value="AT"> <input type="button" value="Go To" onClick="document.location = "fullc.php?="'document.openlocation.code.value';; "> </form>
<input type="text" id="code" value="AT"/> <button type="button" onclick="location.href='./fullc.php?code='+$j('#code').val();">Go To</button>
<input type="text" id="code" value="AT"/> <button type="button" onclick="location.href='./fullc.php?code='+document.getElementById('code').value;">Go To</button>
Yay, nearly there. Just the 'code' needs to be in single quotes in the final URL.
Though that now seems to have broken somehow :@
Fantastic. Done. Sorted. Working. :D
Also, don't worry, I'll be keeping you occupied with more questions in the coming weeks/months. :Y
<form action="./fullc.php" method="get"> <input type="text" name="code" value="AT"/> <button type="submit">Go To</button> </form>
(hug)
I might just keep the original code :P
Anyway, what makes this "better"?