I am having a problem getting the variables to display. I have;
<?php include( "/usr/hosting/smartstage.com/website/link2/data/output/1001" );
echo("
<a href="{$URL}" title="{$ANCHOR}">{$ANCHOR}</a> {$DESCRIPTION}
");
?>
which prints the links lines unformatted but the second line with the variables
shows $URL, $ANCHOR, and $DESCRIPTION as empty
I am assuming that the php include line sets those variables. Can you direct me here, maybe with
a simple code example?
<?php include( "/usr/hosting/smartstage.com/website/link2/data/output/1001" );
echo("
<a href="{$URL}" title="{$ANCHOR}">{$ANCHOR}</a> {$DESCRIPTION}
");
?>
which prints the links lines unformatted but the second line with the variables
shows $URL, $ANCHOR, and $DESCRIPTION as empty
I am assuming that the php include line sets those variables. Can you direct me here, maybe with
a simple code example?