Code: Select all
function setPartNoValues(pnoValues)
{
partnoValues = pnoValues;
}
function getPartNoValues()
{
return partnoValues;
}now on the php side, i have a catch for when the save button is pressed
Code: Select all
if(isset($_POST['savebutton']))how can i access the javascript variable in php is the question???