A very quick question

Just a super quick question:

how do you put a link in your php code.
I want to make a link to something in /tmp directory.
i.e. how do you put a href into php, I think it's done a bit differently.
thanks
john

Either close your PHP and make the link like normal:

?>

 <A HREF=http://somelink>

<?php  ...

OR, use the echo or print functions in PHP:

<?php

echo "<A HREF=http://somelink>foo</A>"

?>