Parameter passing and parameter reference problem??
I have a flash player, introduced into a PHP page with an OBJECT tag, passed in the parameter to the PHP page, and then used $_get["" "to get the incoming parameters, and then put the passed parameters into a string, as a value inside the Param, but in any case can not be implemented. I am the first time to contact PHP this thing, please experts to teach you, thank you
<title>MP3 Player Quoter</title>
function CreateValue ($filename, $showtop, $showinfo, $showvolume)
{
$val = "mp3= $filename &showtop= $showtop &showinfo= $showinfo &showvolume= $showvolume";
return $val;
}
?>
/>
Texte alternatif
I don't know why I can't do it here, as if the value returned by the CreateValue function is not a string at all.
------Solution--------------------
PHP code
function createvalue ($filename, $showtop, $showinfo, $showvolume) {$val = "mp3= $filename &showtop= $showtop &showinfo= $showinfo &showvolume= $showvolume"; echo $ val;//, what are you looking at?
------Solution--------------------
Browser opens, take a look at the source file to see the
/>
What value is parsed out of this line.