Hello friends ,
Is there any way of passing javascript variable other than through the url
like i have
var content = document.myform.variable.value;
alert(content);
window.location="http://localhost/myfolder/demo.php?content="+content ;
When i echo my content(which has some hyperlinks) the hyperlinks wont work as the url is passed as
http://localhost/myfolder/demo.php?content=<STRONG><A%20href="http://localhost">nabih</A></STRONG>
due to whitespaces in content
Anyways it would be better if I could pass variables in the same page without use of the url thing
Can anybody show me a way out
Thanks in advance
Greg