I've a very strange problem in my form and have no idea how to solve it. Tried a search but found nothing about it. I have a form which i receive the data with $get in a php page to process the data. Strangely, when i insert an @ in a field like the email for example, the @ is lost durring the process of sending data. I verified in the line before the redirection to the php page if the @ was there and it was, so i don't know this character is lost in the next step of the process.
Any hints?
The redirection comes from a javascript function that i call when i click the submit form:
window.location.href = 'index.php?pagina=candidaturasB&'+ qstringA;
the "qstringA" contains all the data of my form, and if in some input i put an @, if i do alert(qstringA) before de redirection line, the @ is there, after that, in the url, of the php page where i received the data there's no @.
ex: index.php?...&email="ren@something.com" appears on the url "index.php?...&email="rensomething.com".