Jump to content

variable question


Maverickb7

Recommended Posts

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

[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 wrote
include("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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.