Jump to content

Storing Site Verbiage in a Table


dprichard

Recommended Posts

I am setting up a site I want to use for a few clients.  I want to be able to edit the verbiage in a table and it update the language everywhere it is used sitewide.  I setup a table like this:

 

langid

langname

langecho

langstatus

 

I have the langid as the primary key with autoincrement on.  The name is what I use to identify it, then the langecho is the actual verbiage  and the langstatus is what is going I was going to use to say this is a top menu button, a left menu button, etc.  I have it as an int and have another table that stores what each int is for. 

 

What I would like to be able to do is query the table for the top menu include and pull out just the top menu items. 

 

$buttonlang = mysql_query("SELECT langname, langecho from language WHERE langstatus = 1") or die(mysql_error());
$return mysql_fetch_assoc($buttonlang);

 

Then in the page, assign the langecho to the variable for whatever is in the langname field so

 

$langname = $buttonlang['langecho']

 

and repeat it for all results so that the variable for langname has the value of the lang echo.

 

I hope this makes sense.

 

Any help would be greatly appreciated.

Link to comment
Share on other sites

Sorry, I saw my post floating down the page and was worried it wouldn't get a reply.  Thank you for the pointing the disproportionate actions on my part.  I will try to give it a little more time in the future before bumping one of my posts.

 

I am trying to figure out how to assign the results from the langecho table to a variable named the results from the langname table so I can just echo out the langname and it show the informaiton from the langecho column.

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.