buildrebuild
12-28-2006, 10:11 AM
Hi,
I have two bits of info I want added together to from a string in my XHTML.
This, which retrieves a variable...
$track = $_GET['track'];
and this
$URL = "http://www.buildrebuild.com/mp3/"
Will this work?
<?php echo($URL + $track); ?>
Or do I use...
<?php echo($URL.$track); ?>
Thx in advance,
CB
I have two bits of info I want added together to from a string in my XHTML.
This, which retrieves a variable...
$track = $_GET['track'];
and this
$URL = "http://www.buildrebuild.com/mp3/"
Will this work?
<?php echo($URL + $track); ?>
Or do I use...
<?php echo($URL.$track); ?>
Thx in advance,
CB