Hi All Just a quick question...... i want to inclue a $variable into a hyperlink. I am makin a holiday website which has different home pages for the different destinations. ie. Liverpool_home.php, London_home.php, Paris_home.php. i want to be able to use the same navigation link bar and put a variable in the home link ie... www.mydomain.com/"$destination"_home.php if i just use $destination and put the _home.php after it it will look for a variable called $destination_home which is not what i want. How can i sort this? AJ
echo 'www.domain.com/' . $destination . '_home.php'; echo "www.domain.com/$destination_home.php"; Both will work.