php variable to flash

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Drisco

    php variable to flash

    Hello,

    I realy need help,Searched the NG for a days with no vail.
    Sorry for the long script.
    I am trying to get a variable from php to flash. I have the following
    code in php

    <a href="artist_pa ge.php?12345678 =<?php echo
    $row_rs_Q_Gende r_to_Artist['Artist_ID']; ?>"><?php echo
    $row_rs_Q_Gende r_to_Artist['ArtistName']; ?></a>

    This works fine getting the results from mysql, it like this on the
    browser: artist_page.php ?12345678=id number quried from dbase

    Now, I have a flash in the same page that looks like this

    <object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=6,0,29,0"
    width="340" height="350">
    <param name="movie"
    value="myflash. swf?artist_page .php?12345678=< ?php echo
    $row_Recordset1['ArtistID']; ?>">
    <param name="quality" value="high">
    <embed src="myflash.sw f?artist_page.p hp?12345678=<?p hp
    echo $row_Recordset1['ArtistID']; ?>" quality="high"
    pluginspage="ht tp://www.macromedia. com/go/getflashplayer"
    type="applicati on/x-shockwave-flash" width="340"
    height="350"></embed></object>
    flash button like this

    on (release) {

    getURL("http://win2000/echoben/artist_page.php ?12345678="+$ro w_Recordset1['ArtistID']);

    The results I get on the browser when I click the flash button
    would not get the id number quried from dbase mysql.
    I have tried Loadvarsnum
    ("http://win2000/echoben/artist_page.php ?12345678="+$ro w_Recordset1['ArtistID',0,
    "post"]); and get and bunch of ways I foung searching the internet and
    NG but none works

    Please shed some light and end my nightmare
    your help is very much appreciated

    Thank you

Working...