how to take Value From java Scrpit File and send it to php File?:(
Posted
by Nina
on Stack Overflow
See other posts from Stack Overflow
or by Nina
Published on 2010-05-18T09:22:42Z
Indexed on
2010/05/18
9:40 UTC
Read the original article
Hit count: 255
JavaScript
|php
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 ?
© Stack Overflow or respective owner