This topic is locked

Uploading photos

6/10/2017 9:59:14 PM
PHPRunner General questions
brito author

Good night, I'm trying to make my system view my photos from an external server, but without success so far, I type the path of the store but the application does not load the photos, is there any way ..

dermemo 6/10/2017

Hello Brito,
since you are using an external server for files you have to use a workaround.
save the URL to the image in the field for example:
https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=82354&image=1&table=forumreplies
on the view tab set it to custom and use this code:

$pic = $data["name_of_your_field"];

$value = '<img src="'.$pic.'">';