Hi Guys,
I am new to PHP and need some help urgently.
I have the below code and I cant seem to get the Java working.
Print "<td><a href='#' onmouseover='drc('test','test'); return true;' onmouseout='nd(); return true;'>
".$info['venue'] . "</a></td>";
I have it working on another page and I have an overlay.js included in the above page.
Thanks
HELP PLEASE!!!
Moderator: General Moderators
Re: HELP PLEASE!!!
the problem is in the HTML itself:
have to be
Code: Select all
onmouseover='drc('test','test'); return true;'Code: Select all
onmouseover='drc(\'test\',\'test\'); return true;'Re: HELP PLEASE!!!
Thanks for this, but it still isnt working, I am now getting a Java error on the page, incorrect character.
Please help me:)
Here is my code so far:
Please help me:)
Here is my code so far:
Print "<td>
<a href='#' onmouseover='drc(\'test\',\'test\'); return true;' onmouseout='nd(); return true;'>
<font color=white>".$info['venue'] . "</font></a></td>";
Re: HELP PLEASE!!!
could you please post the exact message, as well as the javascript itself
-
crazycoders
- Forum Contributor
- Posts: 260
- Joined: Tue Oct 28, 2008 7:48 am
- Location: Montreal, Qc, Canada
Re: HELP PLEASE!!!
Make sure also you are not confusing PHP functions and Javascript functions. You can't call a php function from a javascript link, these are two completely different topics!