Hello there;
This problem of mine is kind of hard to explain. I had already prepared the code the last thing I need to do is tell Jscript that this PHP items are arrays
Let me put it this way;
<?
$query="bla bla";
$result="etc.etc.";
while ($row = mysql_fetch_object($result));
{
$univad[]= array(
row_1=>$row->row1,
row_2=>$row->row2);
}
?>
and there is this fuction
.....oncchange=func(row1 ,row2)>
function func(array1, array2)
{
so forth;
How can I possibly introduce these php variables to Jscript?
Thank You,,,