Good people, I do not know where to put the question ..
Excuse me if you're in the wrong area!
Well, I'm breaking my head with a code on my page. The code works it sends the data to my database, but it is not sending a piece of the field because it has that "#" character there, only sending half of it.
Look:
#6287
Theresultisonlymissingtheendofthenickname=
Lookattheresultinthedatabase:
FileCodeprocess.php
<?php$conexao=mysqli_connect("phpmyadmin", "user", "pass");
mysqli_select_db($conexao, "db");
$novoemail = addslashes($_GET["novoemail"]);
$nick = addslashes($_GET["nick"]);
$inserir = "INSERT INTO ajuda (id, email, usuario) VALUES (NULL, '$novoemail', '$nick');";
mysqli_query($conexao, $inserir) or die (mysqli_error($conexao));
echo"";
?>