Answered: new variable create?

Post date: 2021-01-19 23:47:13
Views: 133

The function qa_opt() can be used for both setting and getting an option value.

qa_opt('site_titlex', 'test forum ...')  # set value
$var = qa_opt('site_titlex')             # get value

Options are stored in the database table qa_options:

MariaDB db]> describe qa_options;
+---------+----------------+------+-----+---------+-------+
| Field   | Type           | Null | Key | Default | Extra |
+---------+----------------+------+-----+---------+-------+
| title   | varchar(40)    | NO   | PRI | NULL    |       |
| content | varchar(12000) | NO   |     | NULL    |       |
+---------+----------------+------+-----+---------+-------+
2 rows in set (0.01 sec)

so you could also manually add an option to the database

INSERT INTO qa_options VALUES ('site_titlex', 'test forum ...');

and then just use qa_opt('site_titlex') in Q2A.

Please click Here to read the full story.
 
Other Top and Latest Questions:
Answered: User can create account only with Gmail.
Microphone doesn't work in Chrome when using FB Messenger
What's next as the British pound hits its highest in more than three years?
Watch live: Trump speaks after Supreme Court limits judges' power to halt his birthright citizenship order
California Gov. Gavin Newsom sues Fox News for $787 million, alleging defamation
Andrew Cuomo concedes the New York City mayoral primary to Zohran Mamdani, who leads in the first-choice vote
Ulta Beauty CFO Paula Oyibo quits, picks insider for interim role
ESPN renews media deal with professional lacrosse, takes an equity stake in the league
How Coach got its cool back
Women's Tennis Association extends media rights deal with Tennis Channel through 2032