Thanks Astroteg and Weedpacket
I know how to pass javascript variables via the URL
The problem here is the string is too long
like Weedpackets signature is passed as
http://localhost/myfolder/demo.php?content=<STRONG><FONT%20face="Courier%20New"%20size=2>#%20sshnuke%2010.2.2.2%20-rootpw="Z1ON0101"%20<BR>Connecting%20to%2010.2.2.2:ssh%20...%20successful%20<BR>Attempting%20to%20exploit%20SSHv1%20CRC32%20...%20successful%20<BR>Resetting%20root%20password%20to%20"Z1ON0101"%20<BR>System%20open:%20Access%20Level%20(9)%20<BR>%20ssh%2010.2.2.2%20-l%20root%20<BR>root@10.2.2.2's%20password:</FONT></STRONG>
When i access it with $_GET['content']
It shows only some of the content
I fancy your idea about escaping the spaces Astroteg
Can anybody tell me how do I do that
heres my javascript function that does that
function submitForm() {
updatecontent('content1');
var content = document.Demo.content1.value;
alert(content);
window.location="http://localhost/myfolder/demo.php?content="+content;
return false;
}
Thanks For those links Weedpacket .
I just cant figure out how do i read that content from the url
Greg😕