please check the following code.
$imagebaseurl = 'support/content_editor/uploads/$name';
The $imagebaseurl
is a variable that is containing a link to my image folder (uploads) and inside the folder I have some other folders which are named after my users name. for example: I have a user who's name is john, so the the link should look like this-> support/content_editor/uploads/john
.
The main idea is when any user is logged in and browses his image gallery I want to take him to his own gallery which basically is named after his name.
When he will visit the gallery the value of $name
in the link will come from the user's login name (from session). Now the problem is as you probably have already understood that the placement of $name
in the above link is wrong and that is why it is not working. I am getting this whole URL> (support/content_editor/uploads/$name) instead of (support/content_editor/uploads/john)
Now could you please tell me how to use the $name
in this $imagebaseurl = 'support/content_editor/uploads/$name';
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…