A
Anonymous
Guest
I'm trying to do the following::
in one php file above the actual php code... there's nothing wrong there.
and making an included php file that has ...
in the body portion... (there's the problem).
When I try to use the onclick portion in the body tag, it makes the php fail.
(parse error)when using
also with
Can anyone help me with this one?
Thanks a bunch in advance.
B.
Code:
<html>
<head>
<script LANGUAGE="JAVASCRIPT">
</script>
</head>
and making an included php file that has ...
Code:
<body>
<a onclick="AlertBox1()"> (Open Alert Box)</a>
</body>
</html>
in the body portion... (there's the problem).
When I try to use the onclick portion in the body tag, it makes the php fail.
(parse error)when using
Code:
<a onclick="AlertBox1()"> (Open Alert Box)</a>
Code:
<a onclick=\"AlertBox1()\"> (Open Alert Box)</a>
Can anyone help me with this one?
Thanks a bunch in advance.
B.