Forum Moderators: phranque
I'm running Apache on my local Linux box for developement. Never had any trouble with it.
Now I have a page that makes a single entry to a db.
The weirdness
In Mozilla, NN4 and Konquror the page appears to load 2 times (the db get's updated twice)
but.... in Lynx it does not!
There is nothing fancy in my code, no .htaccess no loops etc... the page is just loading twice in the above browsers.
What the hell is happening?
Cheers
Nick
Turned out is was the html! Last place you'd look really... I had a line like this
<link rel="stylesheet" href="" />
I had no stylesheet there (this is standard from my 'toolbox') yet as it was only a page to test some functions.
Of course it was linking to itself, thus calling the page twice.
What a pillock ;(
Nick