I am attempting to use the GET method in php so that I need only to create a template file and then all flashes can be displayed in that same file by simply including their variable names in the URL, eg http://mysite.com/phpfile.php?Flash=http:/
/mysite.com/flash.swf
The problem is that it will not let me type a php script inside the quotation marks of the HTML code for inserting flashes, <embed src="I want my php code in here">
I already have a text box displaying the title of the flash, which works fine. I simply have the GET variable, File, in my URL and I have the following PHP code;
<?php
$Title = $_GET['Title'];
print($Title);
?>
So yeah, I want to implement this system such that the Flash URL is played in the embed src script.
Help!!!!!!!!