I cannot figure out where my problem is with the following script. I know
I've used this syntax successfuly in the past. when I take out the
variables, and just set link to something without using php then this works.
know when I click on the form that activated the button it does nothing.
function batch_close()
{
if (parent_window && !parent_window.closed)
{
var action = <? echo $_GET['action']; ?>;
var batch = <? echo $_GET['batch']; ?>;
var begin = <? echo $_GET['begin']; ?>;
var end = <? echo $_GET['end']; ?>;
var amount = <? echo $_GET['amount']; ?>;
var link = "maintain.html?action=" + action + "&batch=" + batch +
"&begin=" + begin + "&end=" + end + "&amount=" + amount;
parent_window.document.location.href=link;
parent_window.focus();
}
window.close();
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php