ok.
I'm actually trying to get a text box value from another form to the present form. Like below:
<input type=text id=searchbox name=search size=18 align=right> </td>
<td><input type="button" target=menu value="Go" onclick="fifthframe(document.getElementById('searchbox').value)"> </td>
The fifthframe function is a javascript func as below:
function fifthframe(search)
{
if(search=="users")
{
parent.top.location.href="index.html"
parent.menu.location.href="menu.html"
}
parent.main.location.href="search_home.php?search="+search
}
But when i try to access this text box value in the present php page, if its given as "aac+" or "ac3+" in the text box, i'm able to access only "aac" or "ac3", the "+" symbol is trimmed off! How do i transfer this "+" from one form to another? Please help.
Thanks,
Ramki.