diff --git a/reference/mysql/functions/mysql-db-name.xml b/reference/mysql/functions/mysql-db-name.xml index 6938ab1b2f..be29932125 100644 --- a/reference/mysql/functions/mysql-db-name.xml +++ b/reference/mysql/functions/mysql-db-name.xml @@ -1,5 +1,5 @@ - + @@ -55,6 +55,11 @@ while ($i < $cnt) { For backward compatibility, mysql_dbname is also accepted. This is deprecated, however. + + See also + mysql_list_dbs, and + mysql_tablename. + diff --git a/reference/mysql/functions/mysql-get-server-info.xml b/reference/mysql/functions/mysql-get-server-info.xml index 394866007b..5bf963c9c6 100644 --- a/reference/mysql/functions/mysql-get-server-info.xml +++ b/reference/mysql/functions/mysql-get-server-info.xml @@ -1,5 +1,5 @@ - + @@ -46,8 +46,9 @@ MySQL server version: 4.0.1-alpha See also mysql_get_client_info, - mysql_get_host_info and - mysql_get_proto_info. + mysql_get_host_info, + mysql_get_proto_info, and + phpversion. diff --git a/reference/mysql/functions/mysql-info.xml b/reference/mysql/functions/mysql-info.xml index dee0d01bc2..c3314d5d36 100644 --- a/reference/mysql/functions/mysql-info.xml +++ b/reference/mysql/functions/mysql-info.xml @@ -1,5 +1,5 @@ - + @@ -54,7 +54,10 @@ String format: Rows matched: 65 Changed: 65 Warnings: 0 - See also mysql_affected_rows. + See also + mysql_affected_rows, + mysql_insert_id, and + mysql_stat. diff --git a/reference/mysql/functions/mysql-insert-id.xml b/reference/mysql/functions/mysql-insert-id.xml index 5e2b3d7baf..1627c301ff 100644 --- a/reference/mysql/functions/mysql-insert-id.xml +++ b/reference/mysql/functions/mysql-insert-id.xml @@ -1,5 +1,5 @@ - + @@ -70,7 +70,9 @@ printf("Last inserted record has id %d\n", mysql_insert_id()); - See also mysql_query. + See also + mysql_query and + mysql_info. diff --git a/reference/mysql/functions/mysql-list-dbs.xml b/reference/mysql/functions/mysql-list-dbs.xml index b8fa48098f..f09427caff 100644 --- a/reference/mysql/functions/mysql-list-dbs.xml +++ b/reference/mysql/functions/mysql-list-dbs.xml @@ -1,5 +1,5 @@ - + @@ -62,7 +62,10 @@ database3 also be used. This is deprecated however. - See also mysql_db_name. + See also + mysql_db_name, + mysql_select_db, and + mysql_list_tables. diff --git a/reference/mysql/functions/mysql-list-processes.xml b/reference/mysql/functions/mysql-list-processes.xml index 91ba70962e..644f5ef344 100644 --- a/reference/mysql/functions/mysql-list-processes.xml +++ b/reference/mysql/functions/mysql-list-processes.xml @@ -1,5 +1,5 @@ - + @@ -48,7 +48,8 @@ mysql_free_result($result); See also - mysql_thread_id. + mysql_thread_id and + mysql_stat. diff --git a/reference/mysql/functions/mysql-real-escape-string.xml b/reference/mysql/functions/mysql-real-escape-string.xml index 2b2c666eb2..89236508dc 100644 --- a/reference/mysql/functions/mysql-real-escape-string.xml +++ b/reference/mysql/functions/mysql-real-escape-string.xml @@ -1,5 +1,5 @@ - + @@ -55,8 +55,11 @@ Escaped string: Zak\'s and Derick\'s Laptop See also - mysql_escape_string and - mysql_client_encoding. + mysql_escape_string, + mysql_client_encoding, + addslashes, and the + magic_quotes_gpc + directive. diff --git a/reference/mysql/functions/mysql-stat.xml b/reference/mysql/functions/mysql-stat.xml index 0c27d85422..198281f752 100644 --- a/reference/mysql/functions/mysql-stat.xml +++ b/reference/mysql/functions/mysql-stat.xml @@ -1,5 +1,5 @@ - + @@ -55,6 +55,11 @@ Array + + See also + mysql_get_server_info and + mysql_list_processes. + diff --git a/reference/mysql/functions/mysql-tablename.xml b/reference/mysql/functions/mysql-tablename.xml index 416afb45cb..443abe378d 100644 --- a/reference/mysql/functions/mysql-tablename.xml +++ b/reference/mysql/functions/mysql-tablename.xml @@ -1,5 +1,5 @@ - + @@ -42,7 +42,9 @@ mysql_free_result($result); See also - mysql_list_tables. + mysql_list_tables, + mysql_field_table, and + mysql_db_name.