Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End href within php help

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #31848
    DamianH
    Member

    Hi,
    I’ve got an upload form working which basically uploads a file to a folder on the server called uploads, then a message is delivered with the input information and the name of the file uploaded i.e like this to the designated e-mail

    $Body = “”;
    $Body .= “Name: “;
    $Body .= $Name;
    $Body .= “n”;
    $Body .= “Uploaded file: “;
    $Body .= $target_path;
    $Body .= “n”;

    My question is how can I make $target_path a hyperlink, so when the e-mail is received the user can click the link to view the image from the server?

    Thanks

Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.