Drop files here

SQL upload ( 0 ) x-

Server: 127.0.0.1 »Database: mysql »Table: help_topic"help topics"
Page-related settingsClick on the bar to scroll to top of page
Press Ctrl+Enter to execute queryPress Enter to execute query
ascending
descending
Order:
Debug SQL
Count
Execution order
Time taken
Order by:
Group queries
Ungroup queries
Collapse Expand Show trace Hide trace Count: Time taken:
Bookmarks
Refresh
Add
No bookmarks
Add bookmark
Options
Set default





Collapse Expand Requery Edit Explain Profiling Bookmark Query failed Database: Queried time:

Browse mode

Customize browse mode.

Documentation Use only icons, only text or both.
Documentation Use only icons, only text or both.
Documentation Whether a user should be displayed a "show all (rows)" button.
Documentation Number of rows displayed when browsing a result set. If the result set contains more rows, "Previous" and "Next" links will be shown.
Documentation SMART - i.e. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order otherwise.
Documentation Highlight row pointed by the mouse cursor.
Documentation Highlight selected rows.
Documentation
Documentation
Documentation Repeat the headers every X cells, 0 deactivates this feature.
Documentation Maximum number of characters shown in any non-numeric column on browse view.
Documentation These are Edit, Copy and Delete links.
Documentation Whether to show row links even in the absence of a unique key.
Documentation Default sort order for tables with a primary key.
Documentation When browsing tables, the sorting of each table is remembered.
Documentation For display Options
Showing rows - -1 (529 total, Query took 0.0006 seconds.)
SELECT * FROM `help_topic`
Full texts help_topic_id name help_category_id description example url
0 JOIN 28 MySQL supports the following JOIN syntaxes for the table_references
part of SELECT statements and multiple-table DELETE and UPDATE
statements:

table_references:
   table_reference [, table_reference] ...

table_reference:
   table_factor
 | join_table

table_factor:
   tbl_name [PARTITION (partition_names)]
       [[AS] alias] [index_hint_list]
 | table_subquery [AS] alias
 | ( table_references )
 | { OJ table_reference LEFT OUTER JOIN table_reference
       ON conditional_expr }

join_table:
   table_reference [INNER | CROSS] JOIN table_factor [join_condition]
 | table_reference STRAIGHT_JOIN table_factor
 | table_reference STRAIGHT_JOIN table_factor ON conditional_expr
 | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition
 | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor

join_condition:
   ON conditional_expr
 | USING (column_list)

index_hint_list:
   index_hint [, index_hint] ...

index_hint:
   USE {INDEX|KEY}
     [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])
 | IGNORE {INDEX|KEY}
     [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)
 | FORCE {INDEX|KEY}
     [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)

index_list:
   index_name [, index_name] ...

A table reference is also known as a join expression.

In MySQL 5.6.2 and later, a table reference (when it refers to a
partitioned table) may contain a PARTITION option, including a
comma-separated list of partitions, subpartitions, or both. This option
follows the name of the table and precedes any alias declaration. The
effect of this option is that rows are selected only from the listed
partitions or subpartitions---in other words, any partitions or
subpartitions not named in the list are ignored For more information,
see http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.

The syntax of table_factor is extended in comparison with the SQL
Standard. The latter accepts only table_reference, not a list of them
inside a pair of parentheses.

This is a conservative extension if we consider each comma in a list of
table_reference items as equivalent to an inner join. For example:

SELECT * FROM t1 LEFT JOIN (t2, t3, t4)
                ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)

is equivalent to:

SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)
                ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)

In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents
(they can replace each other). In standard SQL, they are not
equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used
otherwise.

In general, parentheses can be ignored in join expressions containing
only inner join operations. MySQL also supports nested joins (see
http://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html).

Index hints can be specified to affect how the MySQL optimizer makes
use of indexes. For more information, see
http://dev.mysql.com/doc/refman/5.6/en/index-hints.html.

URL: http://dev.mysql.com/doc/refman/5.6/en/join.html

SELECT left_tbl.*
  FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id
  WHERE right_tbl.id IS NULL;

http://dev.mysql.com/doc/refman/5.6/en/join.html
1 HEX 38 Syntax:
HEX(str), HEX(N)

For a string argument str, HEX() returns a hexadecimal string
representation of str where each character in str is converted to two
hexadecimal digits. The inverse of this operation is performed by the
UNHEX() function.

For a numeric argument N, HEX() returns a hexadecimal string
representation of the value of N treated as a longlong (BIGINT) number.
This is equivalent to CONV(N,10,16). The inverse of this operation is
performed by CONV(HEX(N),16,10).

URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html

mysql> SELECT 0x616263, HEX('abc'), UNHEX(HEX('abc'));
        -> 'abc', 616263, 'abc'
mysql> SELECT HEX(255), CONV(HEX(255),16,10);
        -> 'FF', 255

http://dev.mysql.com/doc/refman/5.6/en/string-functions.html
2 CONTAINS 31 Contains(g1,g2)

Returns 1 or 0 to indicate whether g1 completely contains g2. This
tests the opposite relationship as Within().

URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html

http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html
3 SRID 37 SRID(g)

Returns an integer indicating the Spatial Reference System ID for the
geometry value g.

In MySQL, the SRID value is just an integer associated with the
geometry value. All calculations are done assuming Euclidean (planar)
geometry.

URL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html

mysql> SELECT SRID(GeomFromText('LineString(1 1,2 2)',101));
+-----------------------------------------------+
| SRID(GeomFromText('LineString(1 1,2 2)',101)) |
+-----------------------------------------------+
|                                           101 |
+-----------------------------------------------+

http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html
4 SHOW CONTRIBUTORS 27 Syntax:
SHOW CONTRIBUTORS

The SHOW CONTRIBUTORS statement displays information about the people
who contribute to MySQL source or to causes that we support. For each
contributor, it displays Name, Location, and Comment values.

This statement is removed as of MySQL 5.6.8.

URL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html

http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html
5 VARIANCE 16 Syntax:
VARIANCE(expr)

Returns the population standard variance of expr. This is an extension
to standard SQL. The standard SQL function VAR_POP() can be used
instead.

VARIANCE() returns NULL if there were no matching rows.

URL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html

http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html
6 DROP SERVER 40 Syntax:
DROP SERVER [ IF EXISTS ] server_name

Drops the server definition for the server named server_name. The
corresponding row in the mysql.servers table is deleted. This statement
requires the SUPER privilege.

Dropping a server for a table does not affect any FEDERATED tables that
used this connection information when they were created. See [HELP
CREATE SERVER].

URL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html

http://dev.mysql.com/doc/refman/5.6/en/drop-server.html
7 SHOW AUTHORS 27 Syntax:
SHOW AUTHORS

The SHOW AUTHORS statement displays information about the people who
work on MySQL. For each author, it displays Name, Location, and Comment
values.

This statement is removed as of MySQL 5.6.8.

URL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html

http://dev.mysql.com/doc/refman/5.6/en/show-authors.html
8 CONCAT 38 Syntax:
CONCAT(str1,str2,...)

Returns the string that results from concatenating the arguments. May
have one or more arguments. If all arguments are nonbinary strings, the
result is a nonbinary string. If the arguments include any binary
strings, the result is a binary string. A numeric argument is converted
to its equivalent nonbinary string form.

CONCAT() returns NULL if any argument is NULL.

URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html

mysql> SELECT CONCAT('My', 'S', 'QL');
        -> 'MySQL'
mysql> SELECT CONCAT('My', NULL, 'QL');
        -> NULL
mysql> SELECT CONCAT(14.3);
        -> '14.3'

http://dev.mysql.com/doc/refman/5.6/en/string-functions.html
9 GEOMETRY HIERARCHY 35 Geometry is the base class. It is an abstract class. The instantiable
subclasses of Geometry are restricted to zero-, one-, and
two-dimensional geometric objects that exist in two-dimensional
coordinate space. All instantiable geometry classes are defined so that
valid instances of a geometry class are topologically closed (that is,
all defined geometries include their boundary).

The base Geometry class has subclasses for Point, Curve, Surface, and
GeometryCollection:

o Point represents zero-dimensional objects.

o Curve represents one-dimensional objects, and has subclass
 LineString, with sub-subclasses Line and LinearRing.

o Surface is designed for two-dimensional objects and has subclass
 Polygon.

o GeometryCollection has specialized zero-, one-, and two-dimensional
 collection classes named MultiPoint, MultiLineString, and
 MultiPolygon for modeling geometries corresponding to collections of
 Points, LineStrings, and Polygons, respectively. MultiCurve and
 MultiSurface are introduced as abstract superclasses that generalize
 the collection interfaces to handle Curves and Surfaces.

Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as
noninstantiable classes. They define a common set of methods for their
subclasses and are included for extensibility.

Point, LineString, Polygon, GeometryCollection, MultiPoint,
MultiLineString, and MultiPolygon are instantiable classes.

URL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html

http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html
10 CHAR FUNCTION 38 Syntax:
CHAR(N,... [USING charset_name])

CHAR() interprets each argument N as an integer and returns a string
consisting of the characters given by the code values of those
integers. NULL values are skipped.
By default, CHAR() returns a binary string. To produce a string in a
given character set, use the optional USING clause:

mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8));
+---------------------+--------------------------------+
| CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) |
+---------------------+--------------------------------+
| binary              | utf8                           |
+---------------------+--------------------------------+

If USING is given and the result string is illegal for the given
character set, a warning is issued. Also, if strict SQL mode is
enabled, the result from CHAR() becomes NULL.

URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html

mysql> SELECT CHAR(77,121,83,81,'76');
        -> 'MySQL'
mysql> SELECT CHAR(77,77.3,'77.3');
        -> 'MMM'

http://dev.mysql.com/doc/refman/5.6/en/string-functions.html
11 SHOW CREATE TRIGGER 27 Syntax:
SHOW CREATE TRIGGER trigger_name

This statement shows a CREATE TRIGGER statement that creates the given
trigger.

URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html

http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html
12 SHOW CREATE PROCEDURE 27 Syntax:
SHOW CREATE PROCEDURE proc_name

This statement is a MySQL extension. It returns the exact string that
can be used to re-create the named stored procedure. A similar
statement, SHOW CREATE FUNCTION, displays information about stored
functions (see [HELP SHOW CREATE FUNCTION]).

Both statements require that you be the owner of the routine or have
SELECT access to the mysql.proc table. If you do not have privileges
for the routine itself, the value displayed for the Create Procedure or
Create Function field will be NULL.

URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html

mysql> SHOW CREATE PROCEDURE test.simpleproc\G
*************************** 1. row ***************************
           Procedure: simpleproc
            sql_mode:
    Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT)
                      BEGIN
                      SELECT COUNT(*) INTO param1 FROM t;
                      END
character_set_client: latin1
collation_connection: latin1_swedish_ci
  Database Collation: latin1_swedish_ci

mysql> SHOW CREATE FUNCTION test.hello\G
*************************** 1. row ***************************
            Function: hello
            sql_mode:
     Create Function: CREATE FUNCTION `hello`(s CHAR(20))
                      RETURNS CHAR(50)
                      RETURN CONCAT('Hello, ',s,'!')
character_set_client: latin1
collation_connection: latin1_swedish_ci
  Database Collation: latin1_swedish_ci

http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html
13 OPEN 24 Syntax:
OPEN cursor_name

This statement opens a previously declared cursor. For an example, see
http://dev.mysql.com/doc/refman/5.6/en/cursors.html.

URL: http://dev.mysql.com/doc/refman/5.6/en/open.html

http://dev.mysql.com/doc/refman/5.6/en/open.html
14 ST_INTERSECTS 31 ST_Intersects(g1,g2)

Returns 1 or 0 to indicate whether g1 spatially intersects g2.

URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html

http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html
15 LOWER 38 Syntax:
LOWER(str)

Returns the string str with all characters changed to lowercase
according to the current character set mapping. The default is latin1
(cp1252 West European).

mysql> SELECT LOWER('QUADRATICALLY');
       -> 'quadratically'

LOWER() (and UPPER()) are ineffective when applied to binary strings
(BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert
the string to a nonbinary string:

mysql> SET @str = BINARY 'New York';
mysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));
+-------------+-----------------------------------+
| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |
+-------------+-----------------------------------+
| New York    | new york                          |
+-------------+-----------------------------------+

For Unicode character sets, LOWER() and UPPER() work accounting to
Unicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci
collations and for language-specific collations that are derived from
them. For other Unicode collations, LOWER() and UPPER() work accounting
to Unicode Collation Algorithm (UCA) 4.0.0. See
http://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html.

URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html

http://dev.mysql.com/doc/refman/5.6/en/string-functions.html
16 CREATE TRIGGER 40 Syntax:
CREATE
   [DEFINER = { user | CURRENT_USER }]
   TRIGGER trigger_name trigger_time trigger_event
   ON tbl_name FOR EACH ROW trigger_body

This statement creates a new trigger. A trigger is a named database
object that is associated with a table, and that activates when a
particular event occurs for the table. The trigger becomes associated
with the table named tbl_name, which must refer to a permanent table.
You cannot associate a trigger with a TEMPORARY table or a view.

CREATE TRIGGER requires the TRIGGER privilege for the table associated
with the trigger. The statement might also require the SUPER privilege,
depending on the DEFINER value, as described later in this section. If
binary logging is enabled, CREATE TRIGGER might require the SUPER
privilege, as described in
http://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.

The DEFINER clause determines the security context to be used when
checking access privileges at trigger activation time. See later in
this section for more information.

trigger_time is the trigger action time. It can be BEFORE or AFTER to
indicate that the trigger activates before or after each row to be
modified.

trigger_event indicates the kind of statement that activates the
trigger. The trigger_event can be one of the following:

o INSERT: The trigger is activated whenever a new row is inserted into
 the table; for example, through INSERT, LOAD DATA, and REPLACE
 statements.

o UPDATE: The trigger is activated whenever a row is modified; for
 example, through UPDATE statements.

o DELETE: The trigger is activated whenever a row is deleted from the
 table; for example, through DELETE and REPLACE statements. However,
 DROP TABLE and TRUNCATE TABLE statements on the table do not activate
 this trigger, because they do not use DELETE. Dropping a partition
 does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE].

URL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html

http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html
17 MONTH 32 Syntax:
MONTH(date)

Returns the month for date, in the range 1 to 12 for January to
December, or 0 for dates such as '0000-00-00' or '2008-00-00' that have
a zero month part.

URL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html

mysql> SELECT MONTH('2008-02-03');
        -> 2

http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html
18 SHOW TRIGGERS 27 Syntax:
SHOW TRIGGERS [{FROM | IN} db_name]
   [LIKE 'pattern' | WHERE expr]

SHOW TRIGGERS lists the triggers currently defined for tables in a
database (the default database unless a FROM clause is given). This
statement returns results only for databases and tables for which you
have the TRIGGER privilege. The LIKE clause, if present, indicates
which table names to match and causes the statement to display triggers
for those tables. The WHERE clause can be given to select rows using
more general conditions, as discussed in
http://dev.mysql.com/doc/refman/5.6/en/extended-show.html.

For the trigger ins_sum as defined in
http://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of
this statement is as shown here:

mysql> SHOW TRIGGERS LIKE 'acc%'\G
*************************** 1. row ***************************
            Trigger: ins_sum
              Event: INSERT
              Table: account
          Statement: SET @sum = @sum + NEW.amount
             Timing: BEFORE
            Created: NULL
           sql_mode:
            Definer: myname@localhost
character_set_client: latin1
collation_connection: latin1_swedish_ci
 Database Collation: latin1_swedish_ci

character_set_client is the session value of the character_set_client
system variable when the trigger was created. collation_connection is
the session value of the collation_connection system variable when the
trigger was created. Database Collation is the collation of the
database with which the trigger is associated.

URL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html

http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html
19 REGEXP 38 Syntax:
expr REGEXP pat, expr RLIKE pat

Performs a pattern match of a string expression expr against a pattern
pat. The pattern can be an extended regular expression. The syntax for
regular expressions is discussed in
http://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr
matches pat; otherwise it returns 0. If either expr or pat is NULL, the
result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL
compatibility.

The pattern need not be a literal string. For example, it can be
specified as a string expression or table column.

*Note*: Because MySQL uses the C escape syntax in strings (for example,
"\n" to represent the newline character), you must double any "\" that
you use in your REGEXP strings.

REGEXP is not case sensitive, except when used with binary strings.

URL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html

mysql> SELECT 'Monty!' REGEXP '.*';
        -> 1
mysql> SELECT 'new*\n*line' REGEXP 'new\\*.\\*line';
        -> 1
mysql> SELECT 'a' REGEXP 'A', 'a' REGEXP BINARY 'A';
        -> 1  0
mysql> SELECT 'a' REGEXP '^[a-d]';
        -> 1

http://dev.mysql.com/doc/refman/5.6/en/regexp.html
20 IF STATEMENT 24 Syntax:
IF search_condition THEN statement_list
   [ELSEIF search_condition THEN statement_list] ...
   [ELSE statement_list]
END IF

The IF statement for stored programs implements a basic conditional
construct.

*Note*: There is also an IF() function, which differs from the IF
statement described here. See
http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The
IF statement can have THEN, ELSE, and ELSEIF clauses, and it is
terminated with END IF.

If the search_condition evaluates to true, the corresponding THEN or
ELSEIF clause statement_list executes. If no search_condition matches,
the ELSE clause statement_list executes.

Each statement_list consists of one or more SQL statements; an empty
statement_list is not permitted.

URL: http://dev.mysql.com/doc/refman/5.6/en/if.html

http://dev.mysql.com/doc/refman/5.6/en/if.html
21 VALIDATE_PASSWORD_STRENGTH 12 Syntax:
VALIDATE_PASSWORD_STRENGTH(str)

Given an argument representing a cleartext password, this function
returns an integer to indicate how strong the password is. The return
value ranges from 0 (weak) to 100 (strong).

URL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html

http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html
22 WITHIN 31 Within(g1,g2)

Returns 1 or 0 to indicate whether g1 is spatially within g2. This
tests the opposite relationship as Contains().

URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html

http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html
23 SHOW PLUGINS 27 Syntax:
SHOW PLUGINS

SHOW PLUGINS displays information about server plugins. Plugin
information is also available in the INFORMATION_SCHEMA.PLUGINS table.
See http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html.

Example of SHOW PLUGINS output:

mysql> SHOW PLUGINS\G
*************************** 1. row ***************************
  Name: binlog
Status: ACTIVE
  Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 2. row ***************************
  Name: CSV
Status: ACTIVE
  Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 3. row ***************************
  Name: MEMORY
Status: ACTIVE
  Type: STORAGE ENGINE
Library: NULL
License: GPL
*************************** 4. row ***************************
  Name: MyISAM
Status: ACTIVE
  Type: STORAGE ENGINE
Library: NULL
License: GPL
...

URL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html

http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html
24 PREPARE 8 Syntax:
PREPARE stmt_name FROM preparable_stmt

The PREPARE statement prepares a SQL statement and assigns it a name,
stmt_name, by which to refer to the statement later. The prepared
statement is executed with EXECUTE and released with DEALLOCATE
PREPARE. For examples, see
http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h
tml.

Statement names are not case sensitive. preparable_stmt is either a
string literal or a user variable that contains the text of the SQL
statement. The text must represent a single statement, not multiple
statements. Within the statement, ? characters can be used as parameter
markers to indicate where data values are to be bound to the query
later when you execute it. The ? characters should not be enclosed
within quotation marks, even if you intend to bind them to string
values. Parameter markers can be used only where data values should
appear, not for SQL keywords, identifiers, and so forth.

If a prepared statement with the given name already exists, it is
deallocated implicitly before the new statement is prepared. This means
that if the new statement contains an error and cannot be prepared, an
error is returned and no statement with the given name exists.

The scope of a prepared statement is the session within which it is
created, which as several implications:

o A prepared statement created in one session is not available to other
 sessions.

o When a session ends, whether normally or abnormally, its prepared
 statements no longer exist. If auto-reconnect is enabled, the client
 is not notified that the connection was lost. For this reason,
 clients may wish to disable auto-reconnect. See
 http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html.

o A prepared statement created within a stored program continues to
 exist after the program finishes executing and can be executed
 outside the program later.

o A statement prepared in stored program context cannot refer to stored
 procedure or function parameters or local variables because they go
 out of scope when the program ends and would be unavailable were the
 statement to be executed later outside the program. As a workaround,
 refer instead to user-defined variables, which also have session
 scope; see
 http://dev.mysql.com/doc/refman/5.6/en/user-variables.html.

URL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html

http://dev.mysql.com/doc/refman/5.6/en/prepare.html


Warning in .\libraries\session.lib.php#20
session_regenerate_id(): Session object destruction failed

Backtrace

.\libraries\session.lib.php#20: session_regenerate_id(boolean true)
.\libraries\common.inc.php#760: PMA_secureSession()
.\tbl_recent_favorite.php#11: require_once(.\libraries\common.inc.php)
Notice in .\libraries\sql.lib.php#634
Undefined index: max_rows

Backtrace

.\libraries\sql.lib.php#1116: PMA_isAppendLimitClause(array)
.\libraries\sql.lib.php#1264: PMA_countQueryResults(
integer 25,
boolean true,
string 'mysql',
string 'help_topic',
array,
)
.\libraries\sql.lib.php#2167: PMA_executeTheQuery(
array,
string 'SELECT * FROM `help_topic` LIMIT 0, 25 ',
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4492
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4288: PMA\libraries\DisplayResults->_getOffsets()
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4497
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4288: PMA\libraries\DisplayResults->_getOffsets()
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4498
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4288: PMA\libraries\DisplayResults->_getOffsets()
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4500
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4288: PMA\libraries\DisplayResults->_getOffsets()
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4501
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4288: PMA\libraries\DisplayResults->_getOffsets()
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4667
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4332: PMA\libraries\DisplayResults->_setMessageInformation(
string '',
array,
string '529',
integer 0,
string '',
string '',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#4676
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4332: PMA\libraries\DisplayResults->_setMessageInformation(
string '',
array,
string '529',
integer 0,
string '',
string '',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#841
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#855
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#863
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#868
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#869
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#873
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#874
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1078
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#880: PMA\libraries\DisplayResults->_getMoveForwardButtonsForTableNavigation(
string 'SELECT * FROM `help_topic`',
integer 0,
boolean false,
)
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1080
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#880: PMA\libraries\DisplayResults->_getMoveForwardButtonsForTableNavigation(
string 'SELECT * FROM `help_topic`',
integer 0,
boolean false,
)
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1127
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1132
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1146
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4380: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'top_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1732
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#1317: PMA\libraries\DisplayResults->_getOptionsBlock()
.\libraries\DisplayResults.php#4428: PMA\libraries\DisplayResults->_getTableHeaders(
array,
array,
string 'SELECT * FROM `help_topic` ',
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1748
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#1317: PMA\libraries\DisplayResults->_getOptionsBlock()
.\libraries\DisplayResults.php#4428: PMA\libraries\DisplayResults->_getTableHeaders(
array,
array,
string 'SELECT * FROM `help_topic` ',
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1789
Undefined index: geoOption

Backtrace

.\libraries\DisplayResults.php#1317: PMA\libraries\DisplayResults->_getOptionsBlock()
.\libraries\DisplayResults.php#4428: PMA\libraries\DisplayResults->_getTableHeaders(
array,
array,
string 'SELECT * FROM `help_topic` ',
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1828
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#1320: PMA\libraries\DisplayResults->_getFullOrPartialTextButtonOrLink()
.\libraries\DisplayResults.php#4428: PMA\libraries\DisplayResults->_getTableHeaders(
array,
array,
string 'SELECT * FROM `help_topic` ',
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1186
Undefined index: query

Backtrace

.\libraries\DisplayResults.php#1350: PMA\libraries\DisplayResults->_getTableHeadersForColumns(
array,
array,
array,
array,
array,
boolean false,
string 'SELECT * FROM `help_topic` ',
)
.\libraries\DisplayResults.php#4428: PMA\libraries\DisplayResults->_getTableHeaders(
array,
array,
string 'SELECT * FROM `help_topic` ',
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#2903
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2840: PMA\libraries\DisplayResults->_setMimeMap()
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '0',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 0',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '0',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'JOIN',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'JOIN\'',
array,
boolean false,
integer 4,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'JOIN',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '28',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 28',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '28',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'MySQL supports the following JOIN syntaxes for the table_references part of SELECT statements and multiple-table DELETE and UPDATE statements: table_references: table_reference [, table_reference] ... table_reference: table_factor | join_table table_factor: tbl_name [PARTITION (partition_names)] [[AS] alias] [index_hint_list] | table_subquery [AS] alias | ( table_references ) | { OJ table_reference LEFT OUTER JOIN table_reference ON conditional_expr } join_table: table_reference [INNER | CROSS] JOIN table_factor [join_condition] | table_reference STRAIGHT_JOIN table_factor | table_reference STRAIGHT_JOIN table_factor ON conditional_expr | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor join_condition: ON conditional_expr | USING (column_list) index_hint_list: index_hint [, index_hint] ... index_hint: USE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list]) | IGNORE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) | FORCE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) index_list: index_name [, index_name] ... A table reference is also known as a join expression. In MySQL 5.6.2 and later, a table reference (when it refers to a partitioned table) may contain a PARTITION option, including a comma-separated list of partitions, subpartitions, or both. This option follows the name of the table and precedes any alias declaration. The effect of this option is that rows are selected only from the listed partitions or subpartitions---in other words, any partitions or subpartitions not named in the list are ignored For more information, see http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html. The syntax of table_factor is extended in comparison with the SQL Standard. The latter accepts only table_reference, not a list of them inside a pair of parentheses. This is a conservative extension if we consider each comma in a list of table_reference items as equivalent to an inner join. For example: SELECT * FROM t1 LEFT JOIN (t2, t3, t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) is equivalent to: SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise. In general, parentheses can be ignored in join expressions containing only inner join operations. MySQL also supports nested joins (see http://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html). Index hints can be specified to affect how the MySQL optimizer makes use of indexes. For more information, see http://dev.mysql.com/doc/refman/5.6/en/index-hints.html. URL: http://dev.mysql.com/doc/refman/5.6/en/join.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'MySQL supports the following JOIN syntaxes for the table_references part of SELECT statements and multiple-table DELETE and UPDATE statements: table_references: table_reference [, table_reference] ... table_reference: table_factor | join_table table_factor: tbl_name [PARTITION (partition_names)] [[AS] alias] [index_hint_list] | table_subquery [AS] alias | ( table_references ) | { OJ table_reference LEFT OUTER JOIN table_reference ON conditional_expr } join_table: table_reference [INNER | CROSS] JOIN table_factor [join_condition] | table_reference STRAIGHT_JOIN table_factor | table_reference STRAIGHT_JOIN table_factor ON conditional_expr | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor join_condition: ON conditional_expr | USING (column_list) index_hint_list: index_hint [, index_hint] ... index_hint: USE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list]) | IGNORE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) | FORCE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) index_list: index_name [, index_name] ... A table reference is also known as a join expression. In MySQL 5.6.2 and later, a table reference (when it refers to a partitioned table) may contain a PARTITION option, including a comma-separated list of partitions, subpartitions, or both. This option follows the name of the table and precedes any alias declaration. The effect of this option is that rows are selected only from the listed partitions or subpartitions---in other words, any partitions or subpartitions not named in the list are ignored For more information, see http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html. The syntax of table_factor is extended in comparison with the SQL Standard. The latter accepts only table_reference, not a list of them inside a pair of parentheses. This is a conservative extension if we consider each comma in a list of table_reference items as equivalent to an inner join. For example: SELECT * FROM t1 LEFT JOIN (t2, t3, t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) is equivalent to: SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise. In general, parentheses can be ignored in join expressions containing only inner join operations. MySQL also supports nested joins (see http://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html). Index hints can be specified to affect how the MySQL optimizer makes use of indexes. For more information, see http://dev.mysql.com/doc/refman/5.6/en/index-hints.html. URL: http://dev.mysql.com/doc/refman/5.6/en/join.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'MySQL supports the following JOIN syntaxes for the table_references part of SELECT statements and multiple-table DELETE and UPDATE statements: table_references: table_reference [, table_reference] ... table_reference: table_factor | join_table table_factor: tbl_name [PARTITION (partition_names)] [[AS] alias] [index_hint_list] | table_subquery [AS] alias | ( table_references ) | { OJ table_reference LEFT OUTER JOIN table_reference ON conditional_expr } join_table: table_reference [INNER | CROSS] JOIN table_factor [join_condition] | table_reference STRAIGHT_JOIN table_factor | table_reference STRAIGHT_JOIN table_factor ON conditional_expr | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor join_condition: ON conditional_expr | USING (column_list) index_hint_list: index_hint [, index_hint] ... index_hint: USE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list]) | IGNORE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) | FORCE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) index_list: index_name [, index_name] ... A table reference is also known as a join expression. In MySQL 5.6.2 and later, a table reference (when it refers to a partitioned table) may contain a PARTITION option, including a comma-separated list of partitions, subpartitions, or both. This option follows the name of the table and precedes any alias declaration. The effect of this option is that rows are selected only from the listed partitions or subpartitions---in other words, any partitions or subpartitions not named in the list are ignored For more information, see http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html. The syntax of table_factor is extended in comparison with the SQL Standard. The latter accepts only table_reference, not a list of them inside a pair of parentheses. This is a conservative extension if we consider each comma in a list of table_reference items as equivalent to an inner join. For example: SELECT * FROM t1 LEFT JOIN (t2, t3, t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) is equivalent to: SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise. In general, parentheses can be ignored in join expressions containing only inner join operations. MySQL also supports nested joins (see http://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html). Index hints can be specified to affect how the MySQL optimizer makes use of indexes. For more information, see http://dev.mysql.com/doc/refman/5.6/en/index-hints.html. URL: http://dev.mysql.com/doc/refman/5.6/en/join.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'MySQL supports the following JOIN syntaxes for the table_references\\npart of SELECT statements and multiple-table DELETE and UPDATE\\nstatements:\\n\\ntable_references:\\n table_reference [, table_reference] ...\\n\\ntable_reference:\\n table_factor\\n | join_table\\n\\ntable_factor:\\n tbl_name [PARTITION (partition_names)] \\n [[AS] alias] [index_hint_list]\\n | table_subquery [AS] alias\\n | ( table_references )\\n | { OJ table_reference LEFT OUTER JOIN table_reference\\n ON conditional_expr }\\n\\njoin_table:\\n table_reference [INNER | CROSS] JOIN table_factor [join_condition]\\n | table_reference STRAIGHT_JOIN table_factor\\n | table_reference STRAIGHT_JOIN table_factor ON conditional_expr\\n | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition\\n | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor\\n\\njoin_condition:\\n ON conditional_expr\\n | USING (column_list)\\n\\nindex_hint_list:\\n index_hint [, index_hint] ...\\n\\nindex_hint:\\n USE {INDEX|KEY}\\n [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])\\n | IGNORE {INDEX|KEY}\\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\\n | FORCE {INDEX|KEY}\\n [FOR {JOIN|ORDER BY|GROUP BY}] (index_list)\\n\\nindex_list:\\n index_name [, index_name] ...\\n\\nA table reference is also known as a join expression.\\n\\nIn MySQL 5.6.2 and later, a table reference (when it refers to a\\npartitioned table) may contain a PARTITION option, including a\\ncomma-separated list of partitions, subpartitions, or both. This option\\nfollows the name of the table and precedes any alias declaration. The\\neffect of this option is that rows are selected only from the listed\\npartitions or subpartitions---in other words, any partitions or\\nsubpartitions not named in the list are ignored For more information,\\nsee http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html.\\n\\nThe syntax of table_factor is extended in comparison with the SQL\\nStandard. The latter accepts only table_reference, not a list of them\\ninside a pair of parentheses.\\n\\nThis is a conservative extension if we consider each comma in a list of\\ntable_reference items as equivalent to an inner join. For example:\\n\\nSELECT * FROM t1 LEFT JOIN (t2, t3, t4)\\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\\n\\nis equivalent to:\\n\\nSELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4)\\n ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c)\\n\\nIn MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents\\n(they can replace each other). In standard SQL, they are not\\nequivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used\\notherwise.\\n\\nIn general, parentheses can be ignored in join expressions containing\\nonly inner join operations. MySQL also supports nested joins (see\\nhttp://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html).\\n\\nIndex hints can be specified to affect how the MySQL optimizer makes\\nuse of indexes. For more information, see\\nhttp://dev.mysql.com/doc/refman/5.6/en/index-hints.html.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/join.html\\n\\n\'',
array,
boolean false,
integer 3027,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'MySQL supports the following JOIN syntaxes for the table_references part of SELECT statements and multiple-table DELETE and UPDATE statements: table_references: table_reference [, table_reference] ... table_reference: table_factor | join_table table_factor: tbl_name [PARTITION (partition_names)] [[AS] alias] [index_hint_list] | table_subquery [AS] alias | ( table_references ) | { OJ table_reference LEFT OUTER JOIN table_reference ON conditional_expr } join_table: table_reference [INNER | CROSS] JOIN table_factor [join_condition] | table_reference STRAIGHT_JOIN table_factor | table_reference STRAIGHT_JOIN table_factor ON conditional_expr | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor join_condition: ON conditional_expr | USING (column_list) index_hint_list: index_hint [, index_hint] ... index_hint: USE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list]) | IGNORE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) | FORCE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) index_list: index_name [, index_name] ... A table reference is also known as a join expression. In MySQL 5.6.2 and later, a table reference (when it refers to a partitioned table) may contain a PARTITION option, including a comma-separated list of partitions, subpartitions, or both. This option follows the name of the table and precedes any alias declaration. The effect of this option is that rows are selected only from the listed partitions or subpartitions---in other words, any partitions or subpartitions not named in the list are ignored For more information, see http://dev.mysql.com/doc/refman/5.6/en/partitioning-selection.html. The syntax of table_factor is extended in comparison with the SQL Standard. The latter accepts only table_reference, not a list of them inside a pair of parentheses. This is a conservative extension if we consider each comma in a list of table_reference items as equivalent to an inner join. For example: SELECT * FROM t1 LEFT JOIN (t2, t3, t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) is equivalent to: SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise. In general, parentheses can be ignored in join expressions containing only inner join operations. MySQL also supports nested joins (see http://dev.mysql.com/doc/refman/5.6/en/nested-join-optimization.html). Index hints can be specified to affect how the MySQL optimizer makes use of indexes. For more information, see http://dev.mysql.com/doc/refman/5.6/en/index-hints.html. URL: http://dev.mysql.com/doc/refman/5.6/en/join.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'SELECT left_tbl.* FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id WHERE right_tbl.id IS NULL; ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SELECT left_tbl.* FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id WHERE right_tbl.id IS NULL; ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'SELECT left_tbl.* FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id WHERE right_tbl.id IS NULL; ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SELECT left_tbl.*\\n FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id\\n WHERE right_tbl.id IS NULL;\\n\'',
array,
boolean false,
integer 114,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SELECT left_tbl.* FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id WHERE right_tbl.id IS NULL; ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/join.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/join.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/join.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 0,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#2739
Undefined index: repeat_cells

Backtrace

.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '1',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 1',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '1',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'HEX',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'HEX\'',
array,
boolean false,
integer 3,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'HEX',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '38',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 38',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '38',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: HEX(str), HEX(N) For a string argument str, HEX() returns a hexadecimal string representation of str where each character in str is converted to two hexadecimal digits. The inverse of this operation is performed by the UNHEX() function. For a numeric argument N, HEX() returns a hexadecimal string representation of the value of N treated as a longlong (BIGINT) number. This is equivalent to CONV(N,10,16). The inverse of this operation is performed by CONV(HEX(N),16,10). URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: HEX(str), HEX(N) For a string argument str, HEX() returns a hexadecimal string representation of str where each character in str is converted to two hexadecimal digits. The inverse of this operation is performed by the UNHEX() function. For a numeric argument N, HEX() returns a hexadecimal string representation of the value of N treated as a longlong (BIGINT) number. This is equivalent to CONV(N,10,16). The inverse of this operation is performed by CONV(HEX(N),16,10). URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: HEX(str), HEX(N) For a string argument str, HEX() returns a hexadecimal string representation of str where each character in str is converted to two hexadecimal digits. The inverse of this operation is performed by the UNHEX() function. For a numeric argument N, HEX() returns a hexadecimal string representation of the value of N treated as a longlong (BIGINT) number. This is equivalent to CONV(N,10,16). The inverse of this operation is performed by CONV(HEX(N),16,10). URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nHEX(str), HEX(N)\\n\\nFor a string argument str, HEX() returns a hexadecimal string\\nrepresentation of str where each character in str is converted to two\\nhexadecimal digits. The inverse of this operation is performed by the\\nUNHEX() function.\\n\\nFor a numeric argument N, HEX() returns a hexadecimal string\\nrepresentation of the value of N treated as a longlong (BIGINT) number.\\nThis is equivalent to CONV(N,10,16). The inverse of this operation is\\nperformed by CONV(HEX(N),16,10).\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\\n\\n\'',
array,
boolean false,
integer 551,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: HEX(str), HEX(N) For a string argument str, HEX() returns a hexadecimal string representation of str where each character in str is converted to two hexadecimal digits. The inverse of this operation is performed by the UNHEX() function. For a numeric argument N, HEX() returns a hexadecimal string representation of the value of N treated as a longlong (BIGINT) number. This is equivalent to CONV(N,10,16). The inverse of this operation is performed by CONV(HEX(N),16,10). URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SELECT 0x616263, HEX(\'abc\'), UNHEX(HEX(\'abc\')); -> \'abc\', 616263, \'abc\' mysql> SELECT HEX(255), CONV(HEX(255),16,10); -> \'FF\', 255 ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT 0x616263, HEX(\'abc\'), UNHEX(HEX(\'abc\')); -> \'abc\', 616263, \'abc\' mysql> SELECT HEX(255), CONV(HEX(255),16,10); -> \'FF\', 255 ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT 0x616263, HEX(\'abc\'), UNHEX(HEX(\'abc\')); -> \'abc\', 616263, \'abc\' mysql> SELECT HEX(255), CONV(HEX(255),16,10); -> \'FF\', 255 ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT 0x616263, HEX(\\\'abc\\\'), UNHEX(HEX(\\\'abc\\\'));\\n -> \\\'abc\\\', 616263, \\\'abc\\\'\\nmysql> SELECT HEX(255), CONV(HEX(255),16,10);\\n -> \\\'FF\\\', 255\\n\'',
array,
boolean false,
integer 154,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT 0x616263, HEX(\'abc\'), UNHEX(HEX(\'abc\')); -> \'abc\', 616263, \'abc\' mysql> SELECT HEX(255), CONV(HEX(255),16,10); -> \'FF\', 255 ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 1,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '2',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 2',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '2',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'CONTAINS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'CONTAINS\'',
array,
boolean false,
integer 8,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'CONTAINS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '31',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 31',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '31',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Contains(g1,g2) Returns 1 or 0 to indicate whether g1 completely contains g2. This tests the opposite relationship as Within(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Contains(g1,g2) Returns 1 or 0 to indicate whether g1 completely contains g2. This tests the opposite relationship as Within(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Contains(g1,g2) Returns 1 or 0 to indicate whether g1 completely contains g2. This tests the opposite relationship as Within(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Contains(g1,g2)\\n\\nReturns 1 or 0 to indicate whether g1 completely contains g2. This\\ntests the opposite relationship as Within().\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\\n\\n\'',
array,
boolean false,
integer 246,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Contains(g1,g2) Returns 1 or 0 to indicate whether g1 completely contains g2. This tests the opposite relationship as Within(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 2,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '3',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 3',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '3',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SRID',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SRID\'',
array,
boolean false,
integer 4,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SRID',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '37',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 37',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '37',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'SRID(g) Returns an integer indicating the Spatial Reference System ID for the geometry value g. In MySQL, the SRID value is just an integer associated with the geometry value. All calculations are done assuming Euclidean (planar) geometry. URL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SRID(g) Returns an integer indicating the Spatial Reference System ID for the geometry value g. In MySQL, the SRID value is just an integer associated with the geometry value. All calculations are done assuming Euclidean (planar) geometry. URL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'SRID(g) Returns an integer indicating the Spatial Reference System ID for the geometry value g. In MySQL, the SRID value is just an integer associated with the geometry value. All calculations are done assuming Euclidean (planar) geometry. URL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SRID(g)\\n\\nReturns an integer indicating the Spatial Reference System ID for the\\ngeometry value g.\\n\\nIn MySQL, the SRID value is just an integer associated with the\\ngeometry value. All calculations are done assuming Euclidean (planar)\\ngeometry.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html\\n\\n\'',
array,
boolean false,
integer 321,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SRID(g) Returns an integer indicating the Spatial Reference System ID for the geometry value g. In MySQL, the SRID value is just an integer associated with the geometry value. All calculations are done assuming Euclidean (planar) geometry. URL: http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101)); +-----------------------------------------------+ | SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) | +-----------------------------------------------+ | 101 | +-----------------------------------------------+ ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101)); +-----------------------------------------------+ | SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) | +-----------------------------------------------+ | 101 | +-----------------------------------------------+ ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101)); +-----------------------------------------------+ | SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) | +-----------------------------------------------+ | 101 | +-----------------------------------------------+ ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT SRID(GeomFromText(\\\'LineString(1 1,2 2)\\\',101));\\n+-----------------------------------------------+\\n| SRID(GeomFromText(\\\'LineString(1 1,2 2)\\\',101)) |\\n+-----------------------------------------------+\\n| 101 |\\n+-----------------------------------------------+\\n\'',
array,
boolean false,
integer 311,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT SRID(GeomFromText(\'LineString(1 1,2 2)\',101)); +-----------------------------------------------+ | SRID(GeomFromText(\'LineString(1 1,2 2)\',101)) | +-----------------------------------------------+ | 101 | +-----------------------------------------------+ ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/geometry-property-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 3,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '4',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 4',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '4',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW CONTRIBUTORS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW CONTRIBUTORS\'',
array,
boolean false,
integer 17,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW CONTRIBUTORS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW CONTRIBUTORS The SHOW CONTRIBUTORS statement displays information about the people who contribute to MySQL source or to causes that we support. For each contributor, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CONTRIBUTORS The SHOW CONTRIBUTORS statement displays information about the people who contribute to MySQL source or to causes that we support. For each contributor, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW CONTRIBUTORS The SHOW CONTRIBUTORS statement displays information about the people who contribute to MySQL source or to causes that we support. For each contributor, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW CONTRIBUTORS\\n\\nThe SHOW CONTRIBUTORS statement displays information about the people\\nwho contribute to MySQL source or to causes that we support. For each\\ncontributor, it displays Name, Location, and Comment values.\\n\\nThis statement is removed as of MySQL 5.6.8.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html\\n\\n\'',
array,
boolean false,
integer 343,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CONTRIBUTORS The SHOW CONTRIBUTORS statement displays information about the people who contribute to MySQL source or to causes that we support. For each contributor, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-contributors.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 4,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '5',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 5',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '5',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'VARIANCE',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'VARIANCE\'',
array,
boolean false,
integer 8,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'VARIANCE',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '16',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 16',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '16',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: VARIANCE(expr) Returns the population standard variance of expr. This is an extension to standard SQL. The standard SQL function VAR_POP() can be used instead. VARIANCE() returns NULL if there were no matching rows. URL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: VARIANCE(expr) Returns the population standard variance of expr. This is an extension to standard SQL. The standard SQL function VAR_POP() can be used instead. VARIANCE() returns NULL if there were no matching rows. URL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: VARIANCE(expr) Returns the population standard variance of expr. This is an extension to standard SQL. The standard SQL function VAR_POP() can be used instead. VARIANCE() returns NULL if there were no matching rows. URL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nVARIANCE(expr)\\n\\nReturns the population standard variance of expr. This is an extension\\nto standard SQL. The standard SQL function VAR_POP() can be used\\ninstead.\\n\\nVARIANCE() returns NULL if there were no matching rows.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\\n\\n\'',
array,
boolean false,
integer 296,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: VARIANCE(expr) Returns the population standard variance of expr. This is an extension to standard SQL. The standard SQL function VAR_POP() can be used instead. VARIANCE() returns NULL if there were no matching rows. URL: http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/group-by-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 5,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '6',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 6',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '6',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'DROP SERVER',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'DROP SERVER\'',
array,
boolean false,
integer 11,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'DROP SERVER',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '40',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 40',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '40',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. The corresponding row in the mysql.servers table is deleted. This statement requires the SUPER privilege. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. See [HELP CREATE SERVER]. URL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. The corresponding row in the mysql.servers table is deleted. This statement requires the SUPER privilege. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. See [HELP CREATE SERVER]. URL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. The corresponding row in the mysql.servers table is deleted. This statement requires the SUPER privilege. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. See [HELP CREATE SERVER]. URL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nDROP SERVER [ IF EXISTS ] server_name\\n\\nDrops the server definition for the server named server_name. The\\ncorresponding row in the mysql.servers table is deleted. This statement\\nrequires the SUPER privilege.\\n\\nDropping a server for a table does not affect any FEDERATED tables that\\nused this connection information when they were created. See [HELP\\nCREATE SERVER].\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html\\n\\n\'',
array,
boolean false,
integer 434,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. The corresponding row in the mysql.servers table is deleted. This statement requires the SUPER privilege. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. See [HELP CREATE SERVER]. URL: http://dev.mysql.com/doc/refman/5.6/en/drop-server.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/drop-server.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/drop-server.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/drop-server.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 6,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '7',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 7',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '7',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW AUTHORS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW AUTHORS\'',
array,
boolean false,
integer 12,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW AUTHORS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW AUTHORS The SHOW AUTHORS statement displays information about the people who work on MySQL. For each author, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW AUTHORS The SHOW AUTHORS statement displays information about the people who work on MySQL. For each author, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW AUTHORS The SHOW AUTHORS statement displays information about the people who work on MySQL. For each author, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW AUTHORS\\n\\nThe SHOW AUTHORS statement displays information about the people who\\nwork on MySQL. For each author, it displays Name, Location, and Comment\\nvalues.\\n\\nThis statement is removed as of MySQL 5.6.8.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html\\n\\n\'',
array,
boolean false,
integer 281,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW AUTHORS The SHOW AUTHORS statement displays information about the people who work on MySQL. For each author, it displays Name, Location, and Comment values. This statement is removed as of MySQL 5.6.8. URL: http://dev.mysql.com/doc/refman/5.6/en/show-authors.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-authors.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-authors.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-authors.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 7,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '8',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 8',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '8',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'CONCAT',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'CONCAT\'',
array,
boolean false,
integer 6,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'CONCAT',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '38',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 38',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '38',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form. CONCAT() returns NULL if any argument is NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form. CONCAT() returns NULL if any argument is NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form. CONCAT() returns NULL if any argument is NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nCONCAT(str1,str2,...)\\n\\nReturns the string that results from concatenating the arguments. May\\nhave one or more arguments. If all arguments are nonbinary strings, the\\nresult is a nonbinary string. If the arguments include any binary\\nstrings, the result is a binary string. A numeric argument is converted\\nto its equivalent nonbinary string form.\\n\\nCONCAT() returns NULL if any argument is NULL.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\\n\\n\'',
array,
boolean false,
integer 468,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent nonbinary string form. CONCAT() returns NULL if any argument is NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SELECT CONCAT(\'My\', \'S\', \'QL\'); -> \'MySQL\' mysql> SELECT CONCAT(\'My\', NULL, \'QL\'); -> NULL mysql> SELECT CONCAT(14.3); -> \'14.3\' ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT CONCAT(\'My\', \'S\', \'QL\'); -> \'MySQL\' mysql> SELECT CONCAT(\'My\', NULL, \'QL\'); -> NULL mysql> SELECT CONCAT(14.3); -> \'14.3\' ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT CONCAT(\'My\', \'S\', \'QL\'); -> \'MySQL\' mysql> SELECT CONCAT(\'My\', NULL, \'QL\'); -> NULL mysql> SELECT CONCAT(14.3); -> \'14.3\' ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT CONCAT(\\\'My\\\', \\\'S\\\', \\\'QL\\\');\\n -> \\\'MySQL\\\'\\nmysql> SELECT CONCAT(\\\'My\\\', NULL, \\\'QL\\\');\\n -> NULL\\nmysql> SELECT CONCAT(14.3);\\n -> \\\'14.3\\\'\\n\'',
array,
boolean false,
integer 160,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT CONCAT(\'My\', \'S\', \'QL\'); -> \'MySQL\' mysql> SELECT CONCAT(\'My\', NULL, \'QL\'); -> NULL mysql> SELECT CONCAT(14.3); -> \'14.3\' ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 8,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '9',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 9',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '9',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'GEOMETRY HIERARCHY',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'GEOMETRY HIERARCHY\'',
array,
boolean false,
integer 18,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'GEOMETRY HIERARCHY',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '35',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 35',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '35',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Geometry is the base class. It is an abstract class. The instantiable subclasses of Geometry are restricted to zero-, one-, and two-dimensional geometric objects that exist in two-dimensional coordinate space. All instantiable geometry classes are defined so that valid instances of a geometry class are topologically closed (that is, all defined geometries include their boundary). The base Geometry class has subclasses for Point, Curve, Surface, and GeometryCollection: o Point represents zero-dimensional objects. o Curve represents one-dimensional objects, and has subclass LineString, with sub-subclasses Line and LinearRing. o Surface is designed for two-dimensional objects and has subclass Polygon. o GeometryCollection has specialized zero-, one-, and two-dimensional collection classes named MultiPoint, MultiLineString, and MultiPolygon for modeling geometries corresponding to collections of Points, LineStrings, and Polygons, respectively. MultiCurve and MultiSurface are introduced as abstract superclasses that generalize the collection interfaces to handle Curves and Surfaces. Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as noninstantiable classes. They define a common set of methods for their subclasses and are included for extensibility. Point, LineString, Polygon, GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon are instantiable classes. URL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Geometry is the base class. It is an abstract class. The instantiable subclasses of Geometry are restricted to zero-, one-, and two-dimensional geometric objects that exist in two-dimensional coordinate space. All instantiable geometry classes are defined so that valid instances of a geometry class are topologically closed (that is, all defined geometries include their boundary). The base Geometry class has subclasses for Point, Curve, Surface, and GeometryCollection: o Point represents zero-dimensional objects. o Curve represents one-dimensional objects, and has subclass LineString, with sub-subclasses Line and LinearRing. o Surface is designed for two-dimensional objects and has subclass Polygon. o GeometryCollection has specialized zero-, one-, and two-dimensional collection classes named MultiPoint, MultiLineString, and MultiPolygon for modeling geometries corresponding to collections of Points, LineStrings, and Polygons, respectively. MultiCurve and MultiSurface are introduced as abstract superclasses that generalize the collection interfaces to handle Curves and Surfaces. Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as noninstantiable classes. They define a common set of methods for their subclasses and are included for extensibility. Point, LineString, Polygon, GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon are instantiable classes. URL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Geometry is the base class. It is an abstract class. The instantiable subclasses of Geometry are restricted to zero-, one-, and two-dimensional geometric objects that exist in two-dimensional coordinate space. All instantiable geometry classes are defined so that valid instances of a geometry class are topologically closed (that is, all defined geometries include their boundary). The base Geometry class has subclasses for Point, Curve, Surface, and GeometryCollection: o Point represents zero-dimensional objects. o Curve represents one-dimensional objects, and has subclass LineString, with sub-subclasses Line and LinearRing. o Surface is designed for two-dimensional objects and has subclass Polygon. o GeometryCollection has specialized zero-, one-, and two-dimensional collection classes named MultiPoint, MultiLineString, and MultiPolygon for modeling geometries corresponding to collections of Points, LineStrings, and Polygons, respectively. MultiCurve and MultiSurface are introduced as abstract superclasses that generalize the collection interfaces to handle Curves and Surfaces. Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as noninstantiable classes. They define a common set of methods for their subclasses and are included for extensibility. Point, LineString, Polygon, GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon are instantiable classes. URL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Geometry is the base class. It is an abstract class. The instantiable\\nsubclasses of Geometry are restricted to zero-, one-, and\\ntwo-dimensional geometric objects that exist in two-dimensional\\ncoordinate space. All instantiable geometry classes are defined so that\\nvalid instances of a geometry class are topologically closed (that is,\\nall defined geometries include their boundary).\\n\\nThe base Geometry class has subclasses for Point, Curve, Surface, and\\nGeometryCollection:\\n\\no Point represents zero-dimensional objects.\\n\\no Curve represents one-dimensional objects, and has subclass\\n LineString, with sub-subclasses Line and LinearRing.\\n\\no Surface is designed for two-dimensional objects and has subclass\\n Polygon.\\n\\no GeometryCollection has specialized zero-, one-, and two-dimensional\\n collection classes named MultiPoint, MultiLineString, and\\n MultiPolygon for modeling geometries corresponding to collections of\\n Points, LineStrings, and Polygons, respectively. MultiCurve and\\n MultiSurface are introduced as abstract superclasses that generalize\\n the collection interfaces to handle Curves and Surfaces.\\n\\nGeometry, Curve, Surface, MultiCurve, and MultiSurface are defined as\\nnoninstantiable classes. They define a common set of methods for their\\nsubclasses and are included for extensibility.\\n\\nPoint, LineString, Polygon, GeometryCollection, MultiPoint,\\nMultiLineString, and MultiPolygon are instantiable classes.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html\\n\\n\'',
array,
boolean false,
integer 1504,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Geometry is the base class. It is an abstract class. The instantiable subclasses of Geometry are restricted to zero-, one-, and two-dimensional geometric objects that exist in two-dimensional coordinate space. All instantiable geometry classes are defined so that valid instances of a geometry class are topologically closed (that is, all defined geometries include their boundary). The base Geometry class has subclasses for Point, Curve, Surface, and GeometryCollection: o Point represents zero-dimensional objects. o Curve represents one-dimensional objects, and has subclass LineString, with sub-subclasses Line and LinearRing. o Surface is designed for two-dimensional objects and has subclass Polygon. o GeometryCollection has specialized zero-, one-, and two-dimensional collection classes named MultiPoint, MultiLineString, and MultiPolygon for modeling geometries corresponding to collections of Points, LineStrings, and Polygons, respectively. MultiCurve and MultiSurface are introduced as abstract superclasses that generalize the collection interfaces to handle Curves and Surfaces. Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as noninstantiable classes. They define a common set of methods for their subclasses and are included for extensibility. Point, LineString, Polygon, GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon are instantiable classes. URL: http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/gis-geometry-class-hierarchy.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 9,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '10',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 10',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '10',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'CHAR FUNCTION',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'CHAR FUNCTION\'',
array,
boolean false,
integer 13,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'CHAR FUNCTION',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '38',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 38',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '38',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: CHAR(N,... [USING charset_name]) CHAR() interprets each argument N as an integer and returns a string consisting of the characters given by the code values of those integers. NULL values are skipped. By default, CHAR() returns a binary string. To produce a string in a given character set, use the optional USING clause: mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8)); +---------------------+--------------------------------+ | CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | +---------------------+--------------------------------+ | binary | utf8 | +---------------------+--------------------------------+ If USING is given and the result string is illegal for the given character set, a warning is issued. Also, if strict SQL mode is enabled, the result from CHAR() becomes NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CHAR(N,... [USING charset_name]) CHAR() interprets each argument N as an integer and returns a string consisting of the characters given by the code values of those integers. NULL values are skipped. By default, CHAR() returns a binary string. To produce a string in a given character set, use the optional USING clause: mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8)); +---------------------+--------------------------------+ | CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | +---------------------+--------------------------------+ | binary | utf8 | +---------------------+--------------------------------+ If USING is given and the result string is illegal for the given character set, a warning is issued. Also, if strict SQL mode is enabled, the result from CHAR() becomes NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: CHAR(N,... [USING charset_name]) CHAR() interprets each argument N as an integer and returns a string consisting of the characters given by the code values of those integers. NULL values are skipped. By default, CHAR() returns a binary string. To produce a string in a given character set, use the optional USING clause: mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8)); +---------------------+--------------------------------+ | CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | +---------------------+--------------------------------+ | binary | utf8 | +---------------------+--------------------------------+ If USING is given and the result string is illegal for the given character set, a warning is issued. Also, if strict SQL mode is enabled, the result from CHAR() becomes NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nCHAR(N,... [USING charset_name])\\n\\nCHAR() interprets each argument N as an integer and returns a string\\nconsisting of the characters given by the code values of those\\nintegers. NULL values are skipped.\\nBy default, CHAR() returns a binary string. To produce a string in a\\ngiven character set, use the optional USING clause:\\n\\nmysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8));\\n+---------------------+--------------------------------+\\n| CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) |\\n+---------------------+--------------------------------+\\n| binary | utf8 |\\n+---------------------+--------------------------------+\\n\\nIf USING is given and the result string is illegal for the given\\ncharacter set, a warning is issued. Also, if strict SQL mode is\\nenabled, the result from CHAR() becomes NULL.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\\n\\n\'',
array,
boolean false,
integer 927,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CHAR(N,... [USING charset_name]) CHAR() interprets each argument N as an integer and returns a string consisting of the characters given by the code values of those integers. NULL values are skipped. By default, CHAR() returns a binary string. To produce a string in a given character set, use the optional USING clause: mysql> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8)); +---------------------+--------------------------------+ | CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | +---------------------+--------------------------------+ | binary | utf8 | +---------------------+--------------------------------+ If USING is given and the result string is illegal for the given character set, a warning is issued. Also, if strict SQL mode is enabled, the result from CHAR() becomes NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SELECT CHAR(77,121,83,81,\'76\'); -> \'MySQL\' mysql> SELECT CHAR(77,77.3,\'77.3\'); -> \'MMM\' ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT CHAR(77,121,83,81,\'76\'); -> \'MySQL\' mysql> SELECT CHAR(77,77.3,\'77.3\'); -> \'MMM\' ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT CHAR(77,121,83,81,\'76\'); -> \'MySQL\' mysql> SELECT CHAR(77,77.3,\'77.3\'); -> \'MMM\' ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT CHAR(77,121,83,81,\\\'76\\\');\\n -> \\\'MySQL\\\'\\nmysql> SELECT CHAR(77,77.3,\\\'77.3\\\');\\n -> \\\'MMM\\\'\\n\'',
array,
boolean false,
integer 111,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT CHAR(77,121,83,81,\'76\'); -> \'MySQL\' mysql> SELECT CHAR(77,77.3,\'77.3\'); -> \'MMM\' ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 10,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '11',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 11',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '11',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW CREATE TRIGGER',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW CREATE TRIGGER\'',
array,
boolean false,
integer 19,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW CREATE TRIGGER',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW CREATE TRIGGER trigger_name This statement shows a CREATE TRIGGER statement that creates the given trigger. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CREATE TRIGGER trigger_name This statement shows a CREATE TRIGGER statement that creates the given trigger. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW CREATE TRIGGER trigger_name This statement shows a CREATE TRIGGER statement that creates the given trigger. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW CREATE TRIGGER trigger_name\\n\\nThis statement shows a CREATE TRIGGER statement that creates the given\\ntrigger.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html\\n\\n\'',
array,
boolean false,
integer 193,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CREATE TRIGGER trigger_name This statement shows a CREATE TRIGGER statement that creates the given trigger. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-create-trigger.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 11,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '12',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 12',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '12',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW CREATE PROCEDURE',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW CREATE PROCEDURE\'',
array,
boolean false,
integer 21,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW CREATE PROCEDURE',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW CREATE PROCEDURE proc_name This statement is a MySQL extension. It returns the exact string that can be used to re-create the named stored procedure. A similar statement, SHOW CREATE FUNCTION, displays information about stored functions (see [HELP SHOW CREATE FUNCTION]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CREATE PROCEDURE proc_name This statement is a MySQL extension. It returns the exact string that can be used to re-create the named stored procedure. A similar statement, SHOW CREATE FUNCTION, displays information about stored functions (see [HELP SHOW CREATE FUNCTION]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW CREATE PROCEDURE proc_name This statement is a MySQL extension. It returns the exact string that can be used to re-create the named stored procedure. A similar statement, SHOW CREATE FUNCTION, displays information about stored functions (see [HELP SHOW CREATE FUNCTION]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW CREATE PROCEDURE proc_name\\n\\nThis statement is a MySQL extension. It returns the exact string that\\ncan be used to re-create the named stored procedure. A similar\\nstatement, SHOW CREATE FUNCTION, displays information about stored\\nfunctions (see [HELP SHOW CREATE FUNCTION]).\\n\\nBoth statements require that you be the owner of the routine or have\\nSELECT access to the mysql.proc table. If you do not have privileges\\nfor the routine itself, the value displayed for the Create Procedure or\\nCreate Function field will be NULL.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html\\n\\n\'',
array,
boolean false,
integer 606,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW CREATE PROCEDURE proc_name This statement is a MySQL extension. It returns the exact string that can be used to re-create the named stored procedure. A similar statement, SHOW CREATE FUNCTION, displays information about stored functions (see [HELP SHOW CREATE FUNCTION]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL. URL: http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SHOW CREATE PROCEDURE test.simpleproc\\G *************************** 1. row *************************** Procedure: simpleproc sql_mode: Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT) BEGIN SELECT COUNT(*) INTO param1 FROM t; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci mysql> SHOW CREATE FUNCTION test.hello\\G *************************** 1. row *************************** Function: hello sql_mode: Create Function: CREATE FUNCTION `hello`(s CHAR(20)) RETURNS CHAR(50) RETURN CONCAT(\'Hello, \',s,\'!\') character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SHOW CREATE PROCEDURE test.simpleproc\\G *************************** 1. row *************************** Procedure: simpleproc sql_mode: Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT) BEGIN SELECT COUNT(*) INTO param1 FROM t; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci mysql> SHOW CREATE FUNCTION test.hello\\G *************************** 1. row *************************** Function: hello sql_mode: Create Function: CREATE FUNCTION `hello`(s CHAR(20)) RETURNS CHAR(50) RETURN CONCAT(\'Hello, \',s,\'!\') character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SHOW CREATE PROCEDURE test.simpleproc\\G *************************** 1. row *************************** Procedure: simpleproc sql_mode: Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT) BEGIN SELECT COUNT(*) INTO param1 FROM t; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci mysql> SHOW CREATE FUNCTION test.hello\\G *************************** 1. row *************************** Function: hello sql_mode: Create Function: CREATE FUNCTION `hello`(s CHAR(20)) RETURNS CHAR(50) RETURN CONCAT(\'Hello, \',s,\'!\') character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SHOW CREATE PROCEDURE test.simpleproc\\\\G\\n*************************** 1. row ***************************\\n Procedure: simpleproc\\n sql_mode:\\n Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT)\\n BEGIN\\n SELECT COUNT(*) INTO param1 FROM t;\\n END\\ncharacter_set_client: latin1\\ncollation_connection: latin1_swedish_ci\\n Database Collation: latin1_swedish_ci\\n\\nmysql> SHOW CREATE FUNCTION test.hello\\\\G\\n*************************** 1. row ***************************\\n Function: hello\\n sql_mode:\\n Create Function: CREATE FUNCTION `hello`(s CHAR(20))\\n RETURNS CHAR(50)\\n RETURN CONCAT(\\\'Hello, \\\',s,\\\'!\\\')\\ncharacter_set_client: latin1\\ncollation_connection: latin1_swedish_ci\\n Database Collation: latin1_swedish_ci\\n\'',
array,
boolean false,
integer 868,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SHOW CREATE PROCEDURE test.simpleproc\\G *************************** 1. row *************************** Procedure: simpleproc sql_mode: Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT) BEGIN SELECT COUNT(*) INTO param1 FROM t; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci mysql> SHOW CREATE FUNCTION test.hello\\G *************************** 1. row *************************** Function: hello sql_mode: Create Function: CREATE FUNCTION `hello`(s CHAR(20)) RETURNS CHAR(50) RETURN CONCAT(\'Hello, \',s,\'!\') character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-create-procedure.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 12,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '13',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 13',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '13',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'OPEN',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'OPEN\'',
array,
boolean false,
integer 4,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'OPEN',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '24',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 24',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '24',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: OPEN cursor_name This statement opens a previously declared cursor. For an example, see http://dev.mysql.com/doc/refman/5.6/en/cursors.html. URL: http://dev.mysql.com/doc/refman/5.6/en/open.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: OPEN cursor_name This statement opens a previously declared cursor. For an example, see http://dev.mysql.com/doc/refman/5.6/en/cursors.html. URL: http://dev.mysql.com/doc/refman/5.6/en/open.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: OPEN cursor_name This statement opens a previously declared cursor. For an example, see http://dev.mysql.com/doc/refman/5.6/en/cursors.html. URL: http://dev.mysql.com/doc/refman/5.6/en/open.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nOPEN cursor_name\\n\\nThis statement opens a previously declared cursor. For an example, see\\nhttp://dev.mysql.com/doc/refman/5.6/en/cursors.html.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/open.html\\n\\n\'',
array,
boolean false,
integer 206,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: OPEN cursor_name This statement opens a previously declared cursor. For an example, see http://dev.mysql.com/doc/refman/5.6/en/cursors.html. URL: http://dev.mysql.com/doc/refman/5.6/en/open.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/open.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/open.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/open.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 13,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '14',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 14',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '14',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'ST_INTERSECTS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'ST_INTERSECTS\'',
array,
boolean false,
integer 13,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'ST_INTERSECTS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '31',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 31',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '31',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'ST_Intersects(g1,g2) Returns 1 or 0 to indicate whether g1 spatially intersects g2. URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'ST_Intersects(g1,g2) Returns 1 or 0 to indicate whether g1 spatially intersects g2. URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'ST_Intersects(g1,g2) Returns 1 or 0 to indicate whether g1 spatially intersects g2. URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'ST_Intersects(g1,g2)\\n\\nReturns 1 or 0 to indicate whether g1 spatially intersects g2.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\\n\\n\'',
array,
boolean false,
integer 202,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'ST_Intersects(g1,g2) Returns 1 or 0 to indicate whether g1 spatially intersects g2. URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 14,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '15',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 15',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '15',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'LOWER',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'LOWER\'',
array,
boolean false,
integer 5,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'LOWER',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '38',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 38',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '38',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European). mysql> SELECT LOWER(\'QUADRATICALLY\'); -> \'quadratically\' LOWER() (and UPPER()) are ineffective when applied to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert the string to a nonbinary string: mysql> SET @str = BINARY \'New York\'; mysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +-------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +-------------+-----------------------------------+ | New York | new york | +-------------+-----------------------------------+ For Unicode character sets, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci collations and for language-specific collations that are derived from them. For other Unicode collations, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 4.0.0. See http://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European). mysql> SELECT LOWER(\'QUADRATICALLY\'); -> \'quadratically\' LOWER() (and UPPER()) are ineffective when applied to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert the string to a nonbinary string: mysql> SET @str = BINARY \'New York\'; mysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +-------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +-------------+-----------------------------------+ | New York | new york | +-------------+-----------------------------------+ For Unicode character sets, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci collations and for language-specific collations that are derived from them. For other Unicode collations, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 4.0.0. See http://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European). mysql> SELECT LOWER(\'QUADRATICALLY\'); -> \'quadratically\' LOWER() (and UPPER()) are ineffective when applied to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert the string to a nonbinary string: mysql> SET @str = BINARY \'New York\'; mysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +-------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +-------------+-----------------------------------+ | New York | new york | +-------------+-----------------------------------+ For Unicode character sets, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci collations and for language-specific collations that are derived from them. For other Unicode collations, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 4.0.0. See http://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nLOWER(str)\\n\\nReturns the string str with all characters changed to lowercase\\naccording to the current character set mapping. The default is latin1\\n(cp1252 West European).\\n\\nmysql> SELECT LOWER(\\\'QUADRATICALLY\\\');\\n -> \\\'quadratically\\\'\\n\\nLOWER() (and UPPER()) are ineffective when applied to binary strings\\n(BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert\\nthe string to a nonbinary string:\\n\\nmysql> SET @str = BINARY \\\'New York\\\';\\nmysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1));\\n+-------------+-----------------------------------+\\n| LOWER(@str) | LOWER(CONVERT(@str USING latin1)) |\\n+-------------+-----------------------------------+\\n| New York | new york |\\n+-------------+-----------------------------------+\\n\\nFor Unicode character sets, LOWER() and UPPER() work accounting to\\nUnicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci\\ncollations and for language-specific collations that are derived from\\nthem. For other Unicode collations, LOWER() and UPPER() work accounting\\nto Unicode Collation Algorithm (UCA) 4.0.0. See\\nhttp://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\\n\\n\'',
array,
boolean false,
integer 1232,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European). mysql> SELECT LOWER(\'QUADRATICALLY\'); -> \'quadratically\' LOWER() (and UPPER()) are ineffective when applied to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert the string to a nonbinary string: mysql> SET @str = BINARY \'New York\'; mysql> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +-------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +-------------+-----------------------------------+ | New York | new york | +-------------+-----------------------------------+ For Unicode character sets, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 5.2.0 for xxx_unicode_520_ci collations and for language-specific collations that are derived from them. For other Unicode collations, LOWER() and UPPER() work accounting to Unicode Collation Algorithm (UCA) 4.0.0. See http://dev.mysql.com/doc/refman/5.6/en/charset-unicode-sets.html. URL: http://dev.mysql.com/doc/refman/5.6/en/string-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/string-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 15,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '16',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 16',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '16',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'CREATE TRIGGER',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'CREATE TRIGGER\'',
array,
boolean false,
integer 14,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'CREATE TRIGGER',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '40',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 40',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '40',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_body This statement creates a new trigger. A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. The trigger becomes associated with the table named tbl_name, which must refer to a permanent table. You cannot associate a trigger with a TEMPORARY table or a view. CREATE TRIGGER requires the TRIGGER privilege for the table associated with the trigger. The statement might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE TRIGGER might require the SUPER privilege, as described in http://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html. The DEFINER clause determines the security context to be used when checking access privileges at trigger activation time. See later in this section for more information. trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified. trigger_event indicates the kind of statement that activates the trigger. The trigger_event can be one of the following: o INSERT: The trigger is activated whenever a new row is inserted into the table; for example, through INSERT, LOAD DATA, and REPLACE statements. o UPDATE: The trigger is activated whenever a row is modified; for example, through UPDATE statements. o DELETE: The trigger is activated whenever a row is deleted from the table; for example, through DELETE and REPLACE statements. However, DROP TABLE and TRUNCATE TABLE statements on the table do not activate this trigger, because they do not use DELETE. Dropping a partition does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE]. URL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_body This statement creates a new trigger. A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. The trigger becomes associated with the table named tbl_name, which must refer to a permanent table. You cannot associate a trigger with a TEMPORARY table or a view. CREATE TRIGGER requires the TRIGGER privilege for the table associated with the trigger. The statement might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE TRIGGER might require the SUPER privilege, as described in http://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html. The DEFINER clause determines the security context to be used when checking access privileges at trigger activation time. See later in this section for more information. trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified. trigger_event indicates the kind of statement that activates the trigger. The trigger_event can be one of the following: o INSERT: The trigger is activated whenever a new row is inserted into the table; for example, through INSERT, LOAD DATA, and REPLACE statements. o UPDATE: The trigger is activated whenever a row is modified; for example, through UPDATE statements. o DELETE: The trigger is activated whenever a row is deleted from the table; for example, through DELETE and REPLACE statements. However, DROP TABLE and TRUNCATE TABLE statements on the table do not activate this trigger, because they do not use DELETE. Dropping a partition does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE]. URL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_body This statement creates a new trigger. A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. The trigger becomes associated with the table named tbl_name, which must refer to a permanent table. You cannot associate a trigger with a TEMPORARY table or a view. CREATE TRIGGER requires the TRIGGER privilege for the table associated with the trigger. The statement might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE TRIGGER might require the SUPER privilege, as described in http://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html. The DEFINER clause determines the security context to be used when checking access privileges at trigger activation time. See later in this section for more information. trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified. trigger_event indicates the kind of statement that activates the trigger. The trigger_event can be one of the following: o INSERT: The trigger is activated whenever a new row is inserted into the table; for example, through INSERT, LOAD DATA, and REPLACE statements. o UPDATE: The trigger is activated whenever a row is modified; for example, through UPDATE statements. o DELETE: The trigger is activated whenever a row is deleted from the table; for example, through DELETE and REPLACE statements. However, DROP TABLE and TRUNCATE TABLE statements on the table do not activate this trigger, because they do not use DELETE. Dropping a partition does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE]. URL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nCREATE\\n [DEFINER = { user | CURRENT_USER }]\\n TRIGGER trigger_name trigger_time trigger_event\\n ON tbl_name FOR EACH ROW trigger_body\\n\\nThis statement creates a new trigger. A trigger is a named database\\nobject that is associated with a table, and that activates when a\\nparticular event occurs for the table. The trigger becomes associated\\nwith the table named tbl_name, which must refer to a permanent table.\\nYou cannot associate a trigger with a TEMPORARY table or a view.\\n\\nCREATE TRIGGER requires the TRIGGER privilege for the table associated\\nwith the trigger. The statement might also require the SUPER privilege,\\ndepending on the DEFINER value, as described later in this section. If\\nbinary logging is enabled, CREATE TRIGGER might require the SUPER\\nprivilege, as described in\\nhttp://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html.\\n\\nThe DEFINER clause determines the security context to be used when\\nchecking access privileges at trigger activation time. See later in\\nthis section for more information.\\n\\ntrigger_time is the trigger action time. It can be BEFORE or AFTER to\\nindicate that the trigger activates before or after each row to be\\nmodified.\\n\\ntrigger_event indicates the kind of statement that activates the\\ntrigger. The trigger_event can be one of the following:\\n\\no INSERT: The trigger is activated whenever a new row is inserted into\\n the table; for example, through INSERT, LOAD DATA, and REPLACE\\n statements.\\n\\no UPDATE: The trigger is activated whenever a row is modified; for\\n example, through UPDATE statements.\\n\\no DELETE: The trigger is activated whenever a row is deleted from the\\n table; for example, through DELETE and REPLACE statements. However,\\n DROP TABLE and TRUNCATE TABLE statements on the table do not activate\\n this trigger, because they do not use DELETE. Dropping a partition\\n does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE].\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html\\n\\n\'',
array,
boolean false,
integer 1984,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_body This statement creates a new trigger. A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. The trigger becomes associated with the table named tbl_name, which must refer to a permanent table. You cannot associate a trigger with a TEMPORARY table or a view. CREATE TRIGGER requires the TRIGGER privilege for the table associated with the trigger. The statement might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE TRIGGER might require the SUPER privilege, as described in http://dev.mysql.com/doc/refman/5.6/en/stored-programs-logging.html. The DEFINER clause determines the security context to be used when checking access privileges at trigger activation time. See later in this section for more information. trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified. trigger_event indicates the kind of statement that activates the trigger. The trigger_event can be one of the following: o INSERT: The trigger is activated whenever a new row is inserted into the table; for example, through INSERT, LOAD DATA, and REPLACE statements. o UPDATE: The trigger is activated whenever a row is modified; for example, through UPDATE statements. o DELETE: The trigger is activated whenever a row is deleted from the table; for example, through DELETE and REPLACE statements. However, DROP TABLE and TRUNCATE TABLE statements on the table do not activate this trigger, because they do not use DELETE. Dropping a partition does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE]. URL: http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/create-trigger.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 16,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '17',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 17',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '17',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'MONTH',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'MONTH\'',
array,
boolean false,
integer 5,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'MONTH',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '32',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 32',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '32',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: MONTH(date) Returns the month for date, in the range 1 to 12 for January to December, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have a zero month part. URL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: MONTH(date) Returns the month for date, in the range 1 to 12 for January to December, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have a zero month part. URL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: MONTH(date) Returns the month for date, in the range 1 to 12 for January to December, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have a zero month part. URL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nMONTH(date)\\n\\nReturns the month for date, in the range 1 to 12 for January to\\nDecember, or 0 for dates such as \\\'0000-00-00\\\' or \\\'2008-00-00\\\' that have\\na zero month part.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\\n\\n\'',
array,
boolean false,
integer 251,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: MONTH(date) Returns the month for date, in the range 1 to 12 for January to December, or 0 for dates such as \'0000-00-00\' or \'2008-00-00\' that have a zero month part. URL: http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT MONTH(\'2008-02-03\'); -> 2 ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT MONTH(\\\'2008-02-03\\\');\\n -> 2\\n\'',
array,
boolean false,
integer 48,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT MONTH(\'2008-02-03\'); -> 2 ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/date-and-time-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 17,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '18',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 18',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '18',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW TRIGGERS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW TRIGGERS\'',
array,
boolean false,
integer 13,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW TRIGGERS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW TRIGGERS [{FROM | IN} db_name] [LIKE \'pattern\' | WHERE expr] SHOW TRIGGERS lists the triggers currently defined for tables in a database (the default database unless a FROM clause is given). This statement returns results only for databases and tables for which you have the TRIGGER privilege. The LIKE clause, if present, indicates which table names to match and causes the statement to display triggers for those tables. The WHERE clause can be given to select rows using more general conditions, as discussed in http://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For the trigger ins_sum as defined in http://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of this statement is as shown here: mysql> SHOW TRIGGERS LIKE \'acc%\'\\G *************************** 1. row *************************** Trigger: ins_sum Event: INSERT Table: account Statement: SET @sum = @sum + NEW.amount Timing: BEFORE Created: NULL sql_mode: Definer: myname@localhost character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci character_set_client is the session value of the character_set_client system variable when the trigger was created. collation_connection is the session value of the collation_connection system variable when the trigger was created. Database Collation is the collation of the database with which the trigger is associated. URL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW TRIGGERS [{FROM | IN} db_name] [LIKE \'pattern\' | WHERE expr] SHOW TRIGGERS lists the triggers currently defined for tables in a database (the default database unless a FROM clause is given). This statement returns results only for databases and tables for which you have the TRIGGER privilege. The LIKE clause, if present, indicates which table names to match and causes the statement to display triggers for those tables. The WHERE clause can be given to select rows using more general conditions, as discussed in http://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For the trigger ins_sum as defined in http://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of this statement is as shown here: mysql> SHOW TRIGGERS LIKE \'acc%\'\\G *************************** 1. row *************************** Trigger: ins_sum Event: INSERT Table: account Statement: SET @sum = @sum + NEW.amount Timing: BEFORE Created: NULL sql_mode: Definer: myname@localhost character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci character_set_client is the session value of the character_set_client system variable when the trigger was created. collation_connection is the session value of the collation_connection system variable when the trigger was created. Database Collation is the collation of the database with which the trigger is associated. URL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW TRIGGERS [{FROM | IN} db_name] [LIKE \'pattern\' | WHERE expr] SHOW TRIGGERS lists the triggers currently defined for tables in a database (the default database unless a FROM clause is given). This statement returns results only for databases and tables for which you have the TRIGGER privilege. The LIKE clause, if present, indicates which table names to match and causes the statement to display triggers for those tables. The WHERE clause can be given to select rows using more general conditions, as discussed in http://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For the trigger ins_sum as defined in http://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of this statement is as shown here: mysql> SHOW TRIGGERS LIKE \'acc%\'\\G *************************** 1. row *************************** Trigger: ins_sum Event: INSERT Table: account Statement: SET @sum = @sum + NEW.amount Timing: BEFORE Created: NULL sql_mode: Definer: myname@localhost character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci character_set_client is the session value of the character_set_client system variable when the trigger was created. collation_connection is the session value of the collation_connection system variable when the trigger was created. Database Collation is the collation of the database with which the trigger is associated. URL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW TRIGGERS [{FROM | IN} db_name]\\n [LIKE \\\'pattern\\\' | WHERE expr]\\n\\nSHOW TRIGGERS lists the triggers currently defined for tables in a\\ndatabase (the default database unless a FROM clause is given). This\\nstatement returns results only for databases and tables for which you\\nhave the TRIGGER privilege. The LIKE clause, if present, indicates\\nwhich table names to match and causes the statement to display triggers\\nfor those tables. The WHERE clause can be given to select rows using\\nmore general conditions, as discussed in\\nhttp://dev.mysql.com/doc/refman/5.6/en/extended-show.html.\\n\\nFor the trigger ins_sum as defined in\\nhttp://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of\\nthis statement is as shown here:\\n\\nmysql> SHOW TRIGGERS LIKE \\\'acc%\\\'\\\\G\\n*************************** 1. row ***************************\\n Trigger: ins_sum\\n Event: INSERT\\n Table: account\\n Statement: SET @sum = @sum + NEW.amount\\n Timing: BEFORE\\n Created: NULL\\n sql_mode:\\n Definer: myname@localhost\\ncharacter_set_client: latin1\\ncollation_connection: latin1_swedish_ci\\n Database Collation: latin1_swedish_ci\\n\\ncharacter_set_client is the session value of the character_set_client\\nsystem variable when the trigger was created. collation_connection is\\nthe session value of the collation_connection system variable when the\\ntrigger was created. Database Collation is the collation of the\\ndatabase with which the trigger is associated.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html\\n\\n\'',
array,
boolean false,
integer 1585,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW TRIGGERS [{FROM | IN} db_name] [LIKE \'pattern\' | WHERE expr] SHOW TRIGGERS lists the triggers currently defined for tables in a database (the default database unless a FROM clause is given). This statement returns results only for databases and tables for which you have the TRIGGER privilege. The LIKE clause, if present, indicates which table names to match and causes the statement to display triggers for those tables. The WHERE clause can be given to select rows using more general conditions, as discussed in http://dev.mysql.com/doc/refman/5.6/en/extended-show.html. For the trigger ins_sum as defined in http://dev.mysql.com/doc/refman/5.6/en/triggers.html, the output of this statement is as shown here: mysql> SHOW TRIGGERS LIKE \'acc%\'\\G *************************** 1. row *************************** Trigger: ins_sum Event: INSERT Table: account Statement: SET @sum = @sum + NEW.amount Timing: BEFORE Created: NULL sql_mode: Definer: myname@localhost character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci character_set_client is the session value of the character_set_client system variable when the trigger was created. collation_connection is the session value of the collation_connection system variable when the trigger was created. Database Collation is the collation of the database with which the trigger is associated. URL: http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-triggers.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 18,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '19',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 19',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '19',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'REGEXP',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'REGEXP\'',
array,
boolean false,
integer 6,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'REGEXP',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '38',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 38',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '38',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: expr REGEXP pat, expr RLIKE pat Performs a pattern match of a string expression expr against a pattern pat. The pattern can be an extended regular expression. The syntax for regular expressions is discussed in http://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL compatibility. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. *Note*: Because MySQL uses the C escape syntax in strings (for example, "\\n" to represent the newline character), you must double any "\\" that you use in your REGEXP strings. REGEXP is not case sensitive, except when used with binary strings. URL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: expr REGEXP pat, expr RLIKE pat Performs a pattern match of a string expression expr against a pattern pat. The pattern can be an extended regular expression. The syntax for regular expressions is discussed in http://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL compatibility. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. *Note*: Because MySQL uses the C escape syntax in strings (for example, "\\n" to represent the newline character), you must double any "\\" that you use in your REGEXP strings. REGEXP is not case sensitive, except when used with binary strings. URL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: expr REGEXP pat, expr RLIKE pat Performs a pattern match of a string expression expr against a pattern pat. The pattern can be an extended regular expression. The syntax for regular expressions is discussed in http://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL compatibility. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. *Note*: Because MySQL uses the C escape syntax in strings (for example, "\\n" to represent the newline character), you must double any "\\" that you use in your REGEXP strings. REGEXP is not case sensitive, except when used with binary strings. URL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nexpr REGEXP pat, expr RLIKE pat\\n\\nPerforms a pattern match of a string expression expr against a pattern\\npat. The pattern can be an extended regular expression. The syntax for\\nregular expressions is discussed in\\nhttp://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr\\nmatches pat; otherwise it returns 0. If either expr or pat is NULL, the\\nresult is NULL. RLIKE is a synonym for REGEXP, provided for mSQL\\ncompatibility.\\n\\nThe pattern need not be a literal string. For example, it can be\\nspecified as a string expression or table column.\\n\\n*Note*: Because MySQL uses the C escape syntax in strings (for example,\\n\\"\\\\n\\" to represent the newline character), you must double any \\"\\\\\\" that\\nyou use in your REGEXP strings.\\n\\nREGEXP is not case sensitive, except when used with binary strings.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html\\n\\n\'',
array,
boolean false,
integer 860,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: expr REGEXP pat, expr RLIKE pat Performs a pattern match of a string expression expr against a pattern pat. The pattern can be an extended regular expression. The syntax for regular expressions is discussed in http://dev.mysql.com/doc/refman/5.6/en/regexp.html. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL compatibility. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. *Note*: Because MySQL uses the C escape syntax in strings (for example, "\\n" to represent the newline character), you must double any "\\" that you use in your REGEXP strings. REGEXP is not case sensitive, except when used with binary strings. URL: http://dev.mysql.com/doc/refman/5.6/en/regexp.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'mysql> SELECT \'Monty!\' REGEXP \'.*\'; -> 1 mysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\'; -> 1 mysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\'; -> 1 0 mysql> SELECT \'a\' REGEXP \'^[a-d]\'; -> 1 ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT \'Monty!\' REGEXP \'.*\'; -> 1 mysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\'; -> 1 mysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\'; -> 1 0 mysql> SELECT \'a\' REGEXP \'^[a-d]\'; -> 1 ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'mysql> SELECT \'Monty!\' REGEXP \'.*\'; -> 1 mysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\'; -> 1 mysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\'; -> 1 0 mysql> SELECT \'a\' REGEXP \'^[a-d]\'; -> 1 ',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'mysql> SELECT \\\'Monty!\\\' REGEXP \\\'.*\\\';\\n -> 1\\nmysql> SELECT \\\'new*\\\\n*line\\\' REGEXP \\\'new\\\\\\\\*.\\\\\\\\*line\\\';\\n -> 1\\nmysql> SELECT \\\'a\\\' REGEXP \\\'A\\\', \\\'a\\\' REGEXP BINARY \\\'A\\\';\\n -> 1 0\\nmysql> SELECT \\\'a\\\' REGEXP \\\'^[a-d]\\\';\\n -> 1\\n\'',
array,
boolean false,
integer 232,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'mysql> SELECT \'Monty!\' REGEXP \'.*\'; -> 1 mysql> SELECT \'new*\\n*line\' REGEXP \'new\\\\*.\\\\*line\'; -> 1 mysql> SELECT \'a\' REGEXP \'A\', \'a\' REGEXP BINARY \'A\'; -> 1 0 mysql> SELECT \'a\' REGEXP \'^[a-d]\'; -> 1 ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 4,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/regexp.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/regexp.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/regexp.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 19,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '20',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 20',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '20',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'IF STATEMENT',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'IF STATEMENT\'',
array,
boolean false,
integer 12,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'IF STATEMENT',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '24',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 24',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '24',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: IF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. *Note*: There is also an IF() function, which differs from the IF statement described here. See http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The IF statement can have THEN, ELSE, and ELSEIF clauses, and it is terminated with END IF. If the search_condition evaluates to true, the corresponding THEN or ELSEIF clause statement_list executes. If no search_condition matches, the ELSE clause statement_list executes. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. URL: http://dev.mysql.com/doc/refman/5.6/en/if.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: IF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. *Note*: There is also an IF() function, which differs from the IF statement described here. See http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The IF statement can have THEN, ELSE, and ELSEIF clauses, and it is terminated with END IF. If the search_condition evaluates to true, the corresponding THEN or ELSEIF clause statement_list executes. If no search_condition matches, the ELSE clause statement_list executes. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. URL: http://dev.mysql.com/doc/refman/5.6/en/if.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: IF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. *Note*: There is also an IF() function, which differs from the IF statement described here. See http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The IF statement can have THEN, ELSE, and ELSEIF clauses, and it is terminated with END IF. If the search_condition evaluates to true, the corresponding THEN or ELSEIF clause statement_list executes. If no search_condition matches, the ELSE clause statement_list executes. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. URL: http://dev.mysql.com/doc/refman/5.6/en/if.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nIF search_condition THEN statement_list\\n [ELSEIF search_condition THEN statement_list] ...\\n [ELSE statement_list]\\nEND IF\\n\\nThe IF statement for stored programs implements a basic conditional\\nconstruct.\\n\\n*Note*: There is also an IF() function, which differs from the IF\\nstatement described here. See\\nhttp://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The\\nIF statement can have THEN, ELSE, and ELSEIF clauses, and it is\\nterminated with END IF.\\n\\nIf the search_condition evaluates to true, the corresponding THEN or\\nELSEIF clause statement_list executes. If no search_condition matches,\\nthe ELSE clause statement_list executes.\\n\\nEach statement_list consists of one or more SQL statements; an empty\\nstatement_list is not permitted.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/if.html\\n\\n\'',
array,
boolean false,
integer 811,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: IF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. *Note*: There is also an IF() function, which differs from the IF statement described here. See http://dev.mysql.com/doc/refman/5.6/en/control-flow-functions.html. The IF statement can have THEN, ELSE, and ELSEIF clauses, and it is terminated with END IF. If the search_condition evaluates to true, the corresponding THEN or ELSEIF clause statement_list executes. If no search_condition matches, the ELSE clause statement_list executes. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. URL: http://dev.mysql.com/doc/refman/5.6/en/if.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/if.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/if.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/if.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 20,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '21',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 21',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '21',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'VALIDATE_PASSWORD_STRENGTH',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'VALIDATE_PASSWORD_STRENGTH\'',
array,
boolean false,
integer 26,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'VALIDATE_PASSWORD_STRENGTH',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '12',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 12',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '12',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: VALIDATE_PASSWORD_STRENGTH(str) Given an argument representing a cleartext password, this function returns an integer to indicate how strong the password is. The return value ranges from 0 (weak) to 100 (strong). URL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: VALIDATE_PASSWORD_STRENGTH(str) Given an argument representing a cleartext password, this function returns an integer to indicate how strong the password is. The return value ranges from 0 (weak) to 100 (strong). URL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: VALIDATE_PASSWORD_STRENGTH(str) Given an argument representing a cleartext password, this function returns an integer to indicate how strong the password is. The return value ranges from 0 (weak) to 100 (strong). URL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nVALIDATE_PASSWORD_STRENGTH(str)\\n\\nGiven an argument representing a cleartext password, this function\\nreturns an integer to indicate how strong the password is. The return\\nvalue ranges from 0 (weak) to 100 (strong).\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\\n\\n\'',
array,
boolean false,
integer 294,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: VALIDATE_PASSWORD_STRENGTH(str) Given an argument representing a cleartext password, this function returns an integer to indicate how strong the password is. The return value ranges from 0 (weak) to 100 (strong). URL: http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/encryption-functions.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 21,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '22',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 22',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '22',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'WITHIN',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'WITHIN\'',
array,
boolean false,
integer 6,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'WITHIN',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '31',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 31',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '31',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Within(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially within g2. This tests the opposite relationship as Contains(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Within(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially within g2. This tests the opposite relationship as Contains(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Within(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially within g2. This tests the opposite relationship as Contains(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Within(g1,g2)\\n\\nReturns 1 or 0 to indicate whether g1 is spatially within g2. This\\ntests the opposite relationship as Contains().\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\\n\\n\'',
array,
boolean false,
integer 246,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Within(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially within g2. This tests the opposite relationship as Contains(). URL: http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/functions-for-testing-spatial-relations-between-geometric-objects.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 22,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '23',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 23',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '23',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'SHOW PLUGINS',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'SHOW PLUGINS\'',
array,
boolean false,
integer 12,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'SHOW PLUGINS',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '27',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 27',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '27',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: SHOW PLUGINS SHOW PLUGINS displays information about server plugins. Plugin information is also available in the INFORMATION_SCHEMA.PLUGINS table. See http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html. Example of SHOW PLUGINS output: mysql> SHOW PLUGINS\\G *************************** 1. row *************************** Name: binlog Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 2. row *************************** Name: CSV Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 3. row *************************** Name: MEMORY Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 4. row *************************** Name: MyISAM Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL ... URL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW PLUGINS SHOW PLUGINS displays information about server plugins. Plugin information is also available in the INFORMATION_SCHEMA.PLUGINS table. See http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html. Example of SHOW PLUGINS output: mysql> SHOW PLUGINS\\G *************************** 1. row *************************** Name: binlog Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 2. row *************************** Name: CSV Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 3. row *************************** Name: MEMORY Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 4. row *************************** Name: MyISAM Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL ... URL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: SHOW PLUGINS SHOW PLUGINS displays information about server plugins. Plugin information is also available in the INFORMATION_SCHEMA.PLUGINS table. See http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html. Example of SHOW PLUGINS output: mysql> SHOW PLUGINS\\G *************************** 1. row *************************** Name: binlog Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 2. row *************************** Name: CSV Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 3. row *************************** Name: MEMORY Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 4. row *************************** Name: MyISAM Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL ... URL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nSHOW PLUGINS\\n\\nSHOW PLUGINS displays information about server plugins. Plugin\\ninformation is also available in the INFORMATION_SCHEMA.PLUGINS table.\\nSee http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html.\\n\\nExample of SHOW PLUGINS output:\\n\\nmysql> SHOW PLUGINS\\\\G\\n*************************** 1. row ***************************\\n Name: binlog\\n Status: ACTIVE\\n Type: STORAGE ENGINE\\nLibrary: NULL\\nLicense: GPL\\n*************************** 2. row ***************************\\n Name: CSV\\n Status: ACTIVE\\n Type: STORAGE ENGINE\\nLibrary: NULL\\nLicense: GPL\\n*************************** 3. row ***************************\\n Name: MEMORY\\n Status: ACTIVE\\n Type: STORAGE ENGINE\\nLibrary: NULL\\nLicense: GPL\\n*************************** 4. row ***************************\\n Name: MyISAM\\n Status: ACTIVE\\n Type: STORAGE ENGINE\\nLibrary: NULL\\nLicense: GPL\\n...\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html\\n\\n\'',
array,
boolean false,
integer 924,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: SHOW PLUGINS SHOW PLUGINS displays information about server plugins. Plugin information is also available in the INFORMATION_SCHEMA.PLUGINS table. See http://dev.mysql.com/doc/refman/5.6/en/plugins-table.html. Example of SHOW PLUGINS output: mysql> SHOW PLUGINS\\G *************************** 1. row *************************** Name: binlog Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 2. row *************************** Name: CSV Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 3. row *************************** Name: MEMORY Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 4. row *************************** Name: MyISAM Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL ... URL: http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/show-plugins.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 23,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string '24',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 24',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '24',
string 'data grid_edit click2 not_null ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null text',
boolean false,
array,
,
array,
string 'PREPARE',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'PREPARE\'',
array,
boolean false,
integer 7,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'PREPARE',
string 'data grid_edit click2 not_null text',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 1,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#3781: PMA\libraries\DisplayResults->_getRowData(
string 'right data grid_edit click2 not_null relation ',
boolean false,
array,
,
array,
string '8',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string ' nowrap',
string ' = 8',
array,
boolean false,
string '',
)
.\libraries\DisplayResults.php#3185: PMA\libraries\DisplayResults->_getDataCellForNumericColumns(
string '8',
string 'data grid_edit click2 not_null relation ',
boolean false,
,
array,
boolean false,
array,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5820
Undefined index: pftext

Backtrace

.\libraries\DisplayResults.php#3984: PMA\libraries\DisplayResults->_getPartialText(string 'Syntax: PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement later. The prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE. For examples, see http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h tml. Statement names are not case sensitive. preparable_stmt is either a string literal or a user variable that contains the text of the SQL statement. The text must represent a single statement, not multiple statements. Within the statement, ? characters can be used as parameter markers to indicate where data values are to be bound to the query later when you execute it. The ? characters should not be enclosed within quotation marks, even if you intend to bind them to string values. Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth. If a prepared statement with the given name already exists, it is deallocated implicitly before the new statement is prepared. This means that if the new statement contains an error and cannot be prepared, an error is returned and no statement with the given name exists. The scope of a prepared statement is the session within which it is created, which as several implications: o A prepared statement created in one session is not available to other sessions. o When a session ends, whether normally or abnormally, its prepared statements no longer exist. If auto-reconnect is enabled, the client is not notified that the connection was lost. For this reason, clients may wish to disable auto-reconnect. See http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html. o A prepared statement created within a stored program continues to exist after the program finishes executing and can be executed outside the program later. o A statement prepared in stored program context cannot refer to stored procedure or function parameters or local variables because they go out of scope when the program ends and would be unavailable were the statement to be executed later outside the program. As a workaround, refer instead to user-defined variables, which also have session scope; see http://dev.mysql.com/doc/refman/5.6/en/user-variables.html. URL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html ')
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement later. The prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE. For examples, see http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h tml. Statement names are not case sensitive. preparable_stmt is either a string literal or a user variable that contains the text of the SQL statement. The text must represent a single statement, not multiple statements. Within the statement, ? characters can be used as parameter markers to indicate where data values are to be bound to the query later when you execute it. The ? characters should not be enclosed within quotation marks, even if you intend to bind them to string values. Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth. If a prepared statement with the given name already exists, it is deallocated implicitly before the new statement is prepared. This means that if the new statement contains an error and cannot be prepared, an error is returned and no statement with the given name exists. The scope of a prepared statement is the session within which it is created, which as several implications: o A prepared statement created in one session is not available to other sessions. o When a session ends, whether normally or abnormally, its prepared statements no longer exist. If auto-reconnect is enabled, the client is not notified that the connection was lost. For this reason, clients may wish to disable auto-reconnect. See http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html. o A prepared statement created within a stored program continues to exist after the program finishes executing and can be executed outside the program later. o A statement prepared in stored program context cannot refer to stored procedure or function parameters or local variables because they go out of scope when the program ends and would be unavailable were the statement to be executed later outside the program. As a workaround, refer instead to user-defined variables, which also have session scope; see http://dev.mysql.com/doc/refman/5.6/en/user-variables.html. URL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'Syntax: PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement later. The prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE. For examples, see http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h tml. Statement names are not case sensitive. preparable_stmt is either a string literal or a user variable that contains the text of the SQL statement. The text must represent a single statement, not multiple statements. Within the statement, ? characters can be used as parameter markers to indicate where data values are to be bound to the query later when you execute it. The ? characters should not be enclosed within quotation marks, even if you intend to bind them to string values. Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth. If a prepared statement with the given name already exists, it is deallocated implicitly before the new statement is prepared. This means that if the new statement contains an error and cannot be prepared, an error is returned and no statement with the given name exists. The scope of a prepared statement is the session within which it is created, which as several implications: o A prepared statement created in one session is not available to other sessions. o When a session ends, whether normally or abnormally, its prepared statements no longer exist. If auto-reconnect is enabled, the client is not notified that the connection was lost. For this reason, clients may wish to disable auto-reconnect. See http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html. o A prepared statement created within a stored program continues to exist after the program finishes executing and can be executed outside the program later. o A statement prepared in stored program context cannot refer to stored procedure or function parameters or local variables because they go out of scope when the program ends and would be unavailable were the statement to be executed later outside the program. As a workaround, refer instead to user-defined variables, which also have session scope; see http://dev.mysql.com/doc/refman/5.6/en/user-variables.html. URL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html ',
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'Syntax:\\nPREPARE stmt_name FROM preparable_stmt\\n\\nThe PREPARE statement prepares a SQL statement and assigns it a name,\\nstmt_name, by which to refer to the statement later. The prepared\\nstatement is executed with EXECUTE and released with DEALLOCATE\\nPREPARE. For examples, see\\nhttp://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h\\ntml.\\n\\nStatement names are not case sensitive. preparable_stmt is either a\\nstring literal or a user variable that contains the text of the SQL\\nstatement. The text must represent a single statement, not multiple\\nstatements. Within the statement, ? characters can be used as parameter\\nmarkers to indicate where data values are to be bound to the query\\nlater when you execute it. The ? characters should not be enclosed\\nwithin quotation marks, even if you intend to bind them to string\\nvalues. Parameter markers can be used only where data values should\\nappear, not for SQL keywords, identifiers, and so forth.\\n\\nIf a prepared statement with the given name already exists, it is\\ndeallocated implicitly before the new statement is prepared. This means\\nthat if the new statement contains an error and cannot be prepared, an\\nerror is returned and no statement with the given name exists.\\n\\nThe scope of a prepared statement is the session within which it is\\ncreated, which as several implications:\\n\\no A prepared statement created in one session is not available to other\\n sessions.\\n\\no When a session ends, whether normally or abnormally, its prepared\\n statements no longer exist. If auto-reconnect is enabled, the client\\n is not notified that the connection was lost. For this reason,\\n clients may wish to disable auto-reconnect. See\\n http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html.\\n\\no A prepared statement created within a stored program continues to\\n exist after the program finishes executing and can be executed\\n outside the program later.\\n\\no A statement prepared in stored program context cannot refer to stored\\n procedure or function parameters or local variables because they go\\n out of scope when the program ends and would be unavailable were the\\n statement to be executed later outside the program. As a workaround,\\n refer instead to user-defined variables, which also have session\\n scope; see\\n http://dev.mysql.com/doc/refman/5.6/en/user-variables.html.\\n\\nURL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html\\n\\n\'',
array,
boolean false,
integer 2387,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'Syntax: PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a SQL statement and assigns it a name, stmt_name, by which to refer to the statement later. The prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE. For examples, see http://dev.mysql.com/doc/refman/5.6/en/sql-syntax-prepared-statements.h tml. Statement names are not case sensitive. preparable_stmt is either a string literal or a user variable that contains the text of the SQL statement. The text must represent a single statement, not multiple statements. Within the statement, ? characters can be used as parameter markers to indicate where data values are to be bound to the query later when you execute it. The ? characters should not be enclosed within quotation marks, even if you intend to bind them to string values. Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth. If a prepared statement with the given name already exists, it is deallocated implicitly before the new statement is prepared. This means that if the new statement contains an error and cannot be prepared, an error is returned and no statement with the given name exists. The scope of a prepared statement is the session within which it is created, which as several implications: o A prepared statement created in one session is not available to other sessions. o When a session ends, whether normally or abnormally, its prepared statements no longer exist. If auto-reconnect is enabled, the client is not notified that the connection was lost. For this reason, clients may wish to disable auto-reconnect. See http://dev.mysql.com/doc/refman/5.6/en/auto-reconnect.html. o A prepared statement created within a stored program continues to exist after the program finishes executing and can be executed outside the program later. o A statement prepared in stored program context cannot refer to stored procedure or function parameters or local variables because they go out of scope when the program ends and would be unavailable were the statement to be executed later outside the program. As a workaround, refer instead to user-defined variables, which also have session scope; see http://dev.mysql.com/doc/refman/5.6/en/user-variables.html. URL: http://dev.mysql.com/doc/refman/5.6/en/prepare.html ',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
string 'PMA_mimeDefaultFunction',
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 3,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#3086
Undefined index: hide_transformation

Backtrace

.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#5413
Undefined index: relational_display

Backtrace

.\libraries\DisplayResults.php#4053: PMA\libraries\DisplayResults->_getRowData(
string 'data grid_edit click2 not_null ',
boolean false,
array,
,
array,
string 'http://dev.mysql.com/doc/refman/5.6/en/prepare.html',
,
string 'PMA_mimeDefaultFunction',
string '',
string ' = \'http://dev.mysql.com/doc/refman/5.6/en/prepare.html\'',
array,
boolean false,
integer 0,
)
.\libraries\DisplayResults.php#3226: PMA\libraries\DisplayResults->_getDataCellForNonNumericColumns(
string 'http://dev.mysql.com/doc/refman/5.6/en/prepare.html',
string 'data grid_edit click2 not_null ',
,
array,
array,
boolean false,
,
string 'PMA_mimeDefaultFunction',
array,
boolean false,
array,
,
integer 5,
)
.\libraries\DisplayResults.php#2852: PMA\libraries\DisplayResults->_getRowValues(
,
array,
integer 24,
boolean false,
array,
string 'grid_edit click2',
boolean false,
string 'SELECT * FROM `help_topic`',
array,
)
.\libraries\DisplayResults.php#4438: PMA\libraries\DisplayResults->_getTableBody(
,
array,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#841
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#855
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#863
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#868
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#869
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#873
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#874
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1078
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#880: PMA\libraries\DisplayResults->_getMoveForwardButtonsForTableNavigation(
string 'SELECT * FROM `help_topic`',
integer 0,
boolean false,
)
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1080
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#880: PMA\libraries\DisplayResults->_getMoveForwardButtonsForTableNavigation(
string 'SELECT * FROM `help_topic`',
integer 0,
boolean false,
)
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1127
Undefined index: pos

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1132
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)
Notice in .\libraries\DisplayResults.php#1146
Undefined index: max_rows

Backtrace

.\libraries\DisplayResults.php#952: PMA\libraries\DisplayResults->_getAdditionalFieldsForTableNavigation(string 'SELECT * FROM `help_topic`')
.\libraries\DisplayResults.php#4935: PMA\libraries\DisplayResults->_getTableNavigation(
integer 0,
integer 0,
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\DisplayResults.php#4463: PMA\libraries\DisplayResults->_getPlacedTableNavigations(
integer 0,
integer 0,
string 'bottom_direction_dropdown',
boolean false,
string '<form action="sql.php" method="post" class="print_ignore"> <input type="hidden" name="db" value="mysql" /><input type="hidden" name="table" value="help_topic" /><input type="hidden" name="token" value="e49245e593ba3731be6bfbe53ee7b7aa" /><input type="hidden" name="sort_by_key" value="1" />Sort by key: <select name="sql_query" class="autosubmit"> <option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` ASC">PRIMARY (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `help_topic_id` DESC">PRIMARY (DESC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` ASC">name (ASC)</option><option value="SELECT * FROM `help_topic` ORDER BY `name` DESC">name (DESC)</option><option value="SELECT * FROM `help_topic` " selected="selected">None</option></select> </form> ',
)
.\libraries\sql.lib.php#1690: PMA\libraries\DisplayResults->getTable(
,
array,
array,
boolean false,
)
.\libraries\sql.lib.php#1981: PMA_getHtmlForSqlQueryResultsTable(
,
string './themes/pmahomme/img/',
NULL,
array,
boolean true,
string '529',
integer 25,
NULL,
,
array,
)
.\libraries\sql.lib.php#2200: PMA_getQueryResponseForResultsReturned(
,
array,
string 'mysql',
string 'help_topic',
NULL,
NULL,
,
string './themes/pmahomme/img/',
string '529',
integer 25,
NULL,
NULL,
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
)
.\libraries\sql.lib.php#2080: PMA_executeQueryAndGetQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\sql.php#222: PMA_executeQueryAndSendQueryResponse(
array,
boolean true,
string 'mysql',
string 'help_topic',
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
string '',
string './themes/pmahomme/img/',
NULL,
NULL,
NULL,
string 'SELECT * FROM `help_topic`',
NULL,
NULL,
)
.\tbl_recent_favorite.php#19: require(.\sql.php)