how to take Value From java Scrpit File and send it to php File?:(
- by Nina
Hi !
Can U tell me how to take Value From java Scrpit File and send it to php File .
code :
var year = (year != null) ? year : '".$this->arrToday["year"]."';
var month = (month != null) ? month : '".$this->ConvertToDecimal($this>arrToday["mon"])."';
var day = (day != null) ? day : '".$this->arrToday["mday"]."';
my_window= window.open ('Event.php','mywindow1','status=1,width=350,height=150');
\\
and I wont to send these varible (year,Month,day) to Event.php .
can U tell me How ?