Maverickb7 Posted April 23, 2006 Share Posted April 23, 2006 I want have a variable called $id that includes the ID of my article. I have another variable called $article. What I want to know is how I would include the variable $id at the end of $article. For explain... if the ID equals 33 it would name the variable $article33. How do I use a variable within the name of another variable? Link to comment https://forums.phpfreaks.com/topic/8148-variable-question/ Share on other sites More sharing options...
Maverickb7 Posted April 23, 2006 Author Share Posted April 23, 2006 I think ${$id} is going to work fine. Link to comment https://forums.phpfreaks.com/topic/8148-variable-question/#findComment-29704 Share on other sites More sharing options...
raila Posted April 23, 2006 Share Posted April 23, 2006 [u]Im fairly new at this myselfe but try this lines:[/u]IF YOU WHANT TO MAKE A LINK TO THE FILE:echo"<a href='".trim($article)trim($id).".txt'>".trim($article)trim($id)."</a>";if the file is in another directory(articles) use this:echo"<a href='articles/".trim($article)trim($id).".txt'>".trim($article)trim($id)."</a>";THIS INCLUEDS A WHOLE FILE:include(trim($article)trim($id));Or something like that should work fine.migt need some "" somwhere in there, but im not sure.if the name "article" is constant use://if $id = 33 like you wroteinclude("article".trim($id).".txt"); this file is loaded : "article33.txt"if the file is in another directory simply add the name of the directory :include("articles/article".trim($id).".txt"); this file is loaded "articles/article33.txt"Raila Link to comment https://forums.phpfreaks.com/topic/8148-variable-question/#findComment-29882 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.