William Piper wrote:
> [EMAIL PROTECTED] wrote:
>>
>>
>> Hello,
>>
>> I am having a problem with my PHP script. This is surely a simple syntax
>> error and I have gone almost crossed eyed trying several things to get it
>> to work. The problem is with the following line of PHP:
>>
>> ----------------------------------------------------------
>>
>> echo '<a
>> href="http://www.joshuaneil.com/hir/scripts/results/
>> <http://www.joshuaneil.com/hir/scripts/results/>'.$fdf_file,'>click
>> here to download Non_Disclosure Agreement</a>';
>>
>> ----------------------------------------------------------
>
> Here is what you need:
>
> echo '<a
> href="http://www.joshuaneil.com/hir/scripts/results/'.$fdf_file.'>click
> here to download Non_Disclosure Agreement</a>';
>
Oops, I missed the second quote, use this instead:
echo '<a
href="http://www.joshuaneil.com/hir/scripts/results/'.$fdf_file.'">click
here to download Non_Disclosure Agreement</a>';