Hello, guys! I do not understand JQuery or javascript, only PHP. I am suffering to create an INPUT 1, which in real time, sends what is being typed into an INPUT 2, with no spaces or special characters. I'm currently handling this in PHP. Example:
<form>
<label>Nome</label>
<input type="text" name="INPUT1">
<!-- Recebe os dados do INPUT 1 sem espaços e caracteres especiais-->
<label>Url</label>
https://meusite.com.br/<input type="text" name="INPUT2">
</form>
I hope it has been clear and I look forward to community help.