RE: Mouseover question...

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> 	OK, this isn't really a DB question, but it is definitely a PHP
> question.  I am working on customizing a calendar application for my
> group's
> use and noticed that there is a function that has to do with a
mouseover
> effect.  The problem is that this mouseover does not appear to do
> anything.
> Could one of you gurus take a look at this function and see if you can
> spot
> anything wrong?  Thanks.
> 
> ////////////////////////////////////////////////////////////////
> // getEvent() displays events on the calendar for IE browsers //
> // This distinction is made because IE is currently the only  //
> // browser on which the javascript mouseover effects work.    //
> ////////////////////////////////////////////////////////////////
> function getEventIE($ID, $LinkTitle, $AbbrTitle, $Date) {
>   $LinkTitle =ereg_replace("'","’",$LinkTitle);
>   $AbbrTitle =ereg_replace("'","’",$AbbrTitle);
>   echo "<script>
>   dLink('./event.php?ID=$ID&Date=$Date','$LinkTitle','$AbbrTitle');
>   </script>\n\n";
> }
> 
> 	This function is called from another page as such:
> 
> if ($ver >= 4) {
>   echo "<br>\n";
>   getEventIE($CDCI, $CDTi, "$showName", $queryDate);

That function has nothing to do with mouseovers. Maybe the dLink()
function does, but this is all user functions, so there's no telling
what they do. Mouseovers have nothing to do with PHP. PHP can simply
echo the javascript code required to create the mouseover effect.

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



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


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux