Is it possible to call a function from a variable? The example would be:
The user clicks this link:
<a href="index.php4?content=a1002">
Next page:
if ($content)
{
$display = $content."()";
--HTML--
$display;
--HTML--
}
The purpose is that it shows the content that is contained in that function based on the variable in $content. I've tried adding a semicolon after the (). Any ideas on how to do this and keep it simple?