a little php help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • fris
    Too lazy to set a custom title
    • Aug 2002
    • 55679

    #1

    a little php help

    i have a link like so

    Code:
    <a href="#" onclick="return hs.htmlExpand(this, { src: '<?php echo $myplayer;?>', objectType: 'swf', width: 560, objectWidth: 560, objectHeight: 280, maincontentText: 'You need to upgrade your Flash player',swfOptions: { version: '7' ,params: {wmode: 'transparent'}, flashvars: { playOnStart: 'true', MediaLink: '<?php echo $vlink;?>'},} } )" class="highslide">link</a>
    i need to implement it into.

    Code:
    $showgallery .= 'in here';
    any help would be greatful.
    Since 1999: 69 Adult Industry awards for Best Hosting Company and professional excellence.
  • Brujah
    Beer Money Baron
    • Jan 2001
    • 22157

    #2
    looks like javascript help to me, not php

    Comment

    • Spunky
      I need a beer
      • Jun 2002
      • 133986

      #3
      It will never work,adapt or die

      Comment

      • nenad007
        Registered User
        • Jan 2011
        • 40

        #4
        if I understand you correctly you need to do it this way:

        $showgallery .= '<a href="#" onclick="return hs.htmlExpand(this, { src: \''.$myplayer.'\', objectType: \'swf\', width: 560, objectWidth: 560, objectHeight: 280, maincontentText: \'You need to upgrade your Flash player\',swfOptions: { version: \'7\' ,params: {wmode: \transparent\'}, flashvars: { playOnStart: \'true\', MediaLink: \''.$vlink.'\'},} } )" class="highslide">link</a>';
        ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
        WTB: Video Dating Profiles ICQ: 8.21 / 000 (digits only)
        ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

        Comment

        • nenad007
          Registered User
          • Jan 2011
          • 40

          #5
          saw small bug above, here the right one:

          PHP Code:
          $showgallery .=  '<a href="#" onclick="return hs.htmlExpand(this, { src: \''.$myplayer.'\', objectType: \'swf\', width: 560, objectWidth: 560, objectHeight: 280, maincontentText: \'You need to upgrade your Flash player\',swfOptions: { version: \'7\' ,params: {wmode: \'transparent\'}, flashvars: { playOnStart: \'true\', MediaLink: \''.$vlink.'\'},} } )" class="highslide">link</a>'; 
          
          ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
          WTB: Video Dating Profiles ICQ: 8.21 / 000 (digits only)
          ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀

          Comment

          Working...