Posted by BKDotCom on 10/02/93 11:55
$sites = array(
'marketwatch' =>
'http://bigcharts.marketwatch.com/intchart/frames/frames.asp?symb=%s',
'someothersite' => 'http://www.blah.com/?ticker=%s&something=foo',
);
// loop through the sites
foreach ( $sites as $url )
{
echo sprintf($url,$_GET['symbol']); // replaces %s with your symbol
}
Navigation:
[Reply to this message]
|