Forum Moderators: open
It works fine in IE but the other browsers are not supporting this feature. I have tried Firefox, Netscape and Opera. The Javascript Error Console in Firefox and Netscape showed error on that very line.
Have anyone got any idea. I searched google but thats a real waste of time.....
Any suggestion? I can pass the values as:
$url="search_cdr_result.php?sDate=".$sDate."&eDate=".$eDate."&phone=".$phone."&flag=2";
But when the number of variables increases its hard to maintain.
<input type="submit" style="width:0px;height:0px" value="">
Something like that should work fine.
For passing lots of variables, consider using an array... <input name="something[]" type="hidden" value="1">
<input name="something[]" type="hidden" value="2">
<input name="something[]" type="hidden" value="3">
That gives you, on your server side, something[0], something[1], something[2]