Hello! is it any change to make that when I have made a Databound form, with "Upload image button"
Right now when I upload an image from me "Profile.php" I get the image to my "Admin list"
But that I try too do so I get the Image to my Profile.php when I have upload it.
I have made like .......
Then did I try <img src="<cms:show uploaded_image />" /> but it's not working.
and I have made clonable="1" with
How could I do so I can see the image in my profile.php?
Right now when I upload an image from me "Profile.php" I get the image to my "Admin list"
But that I try too do so I get the Image to my Profile.php when I have upload it.
I have made like .......
- Code: Select all
<cms:input name="uploaded_image" type="bound" />
<cms:if "<cms:not submit_success />" >
<button type="submit">Submit Application</button>
</cms:if>
Then did I try <img src="<cms:show uploaded_image />" /> but it's not working.
and I have made clonable="1" with
- Code: Select all
<cms:editable name='uploaded_image' required='1' allowed_ext='jpg, jpeg, png, gif' max_size='4048' type='securefile' />
How could I do so I can see the image in my profile.php?