Wysyłam treść z poniższego formularza, jednakże gdy znajduje się w niej znak "&" to urywa pozostałość, co może to powodować? Bardzo proszę o pomoc
function formularz2
(title
, opis
, link){ var xmlhttp = getXmlHttp();
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("instrukcja").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","dodac.php",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp
.send
("title="+title
+"&opis="+opis
+"&link="+link);}