rather than using echo why not just do this -

?>
<body onload="start();initialize();onoff('mainmenu',section,'on')"
onresize="window.location.reload(false)" topmargin="1" bottommargin="0" leftmargin="0" rightmargin="0">
?>

this way you don't have to worry about getting the quotes right...



Hello,

"Aaron Merrick" <[EMAIL PROTECTED]> wrote:

Folks,

Can't see an answer anywhere in the archives, so here goes.

This works fine in plain html:

<body onload="start();initialize();onoff('mainmenu',section,'on')"
onresize="window.location.reload(false)" topmargin="1" bottommargin="0"
leftmargin="0" rightmargin="0">

When I put it in PHP thus:

echo "<body onload=\"start();initialize();onoff('mainmenu',section,'on')\"
onresize=\"window.location.reload(false)\" topmargin=\"1\"
bottommargin=\"0\" leftmargin=\"0\" rightmargin=\"0\">";

When the page loads, I get an "Error: 'menuObj' is null or not an object"

The onoff() function is what contains the menuObj, so I suspect the single
quotes around the parameters mainmenu and on, but have tried everyway I
can
think of and can't get rid of the Error.

The function is thus:







_________________________________________________________________
Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to