Running a script with javascript adds a get paramter to the url

It might be best to explain with images.

Running the script like this (php code with configured interpreter + javascript code), everything works fine.

But somehow a get parameter (_ijt) is added:

My code relies on the query string being empty, or being a date format... This is neither...

And I'm not rewriting my code for this. This parameter simple shouldn't be here.

How do I get rid of it?

0
1 comment

That's because you're using an IDE built-in webserver.

This random string is appended to URL as a fix for a built-in webserver security vulnerability.

As a solution please use a standalone webserver, e.g. XAMPP/MAMP.

2

Please sign in to leave a comment.