Forum Moderators: coopster
index.php?view=24
and then what im doing is on that "index.php" "page" im having the database look for that ID and getting the FILENAME from the database,,
Function LOADFLV()
{
$theview = $_GET["view"];
$result = mysql_query("SELECT * FROM content WHERE ID = '$theview'");
$r = mysql_fetch_array($result);
$thefilename = $r["FILE"];
}
Now below this script i have a flash FLV player, I would like to load the video from that > "$thefilename" ..
_root.loadVariablesNum("index.php",'GET');
theplayer.load("contentsss/" + thefilename);
contentsss being the folder of the stored flv's ..
I cant get it to work, any ideas?
Second thing you can check is your loading movie clip instance name. I am assuming that "theplayer" is an empty movie which has the instance name as "theplayer" in which you load the flv movie. so you need to check if you have assigned the instance name to it.