diff --git a/reference/math/functions/bindec.xml b/reference/math/functions/bindec.xml
index ac2c65e838..27a388d3ab 100644
--- a/reference/math/functions/bindec.xml
+++ b/reference/math/functions/bindec.xml
@@ -1,5 +1,5 @@
-
+
@@ -22,7 +22,10 @@
31 bits of 1's or 2147483647 in decimal.
- See also: decbin.
+ See also decbin,
+ octdec,
+ hexdec and
+ base_convert.
diff --git a/reference/math/functions/decbin.xml b/reference/math/functions/decbin.xml
index c3e1356cef..746478eb69 100644
--- a/reference/math/functions/decbin.xml
+++ b/reference/math/functions/decbin.xml
@@ -1,5 +1,5 @@
-
+
@@ -18,7 +18,10 @@
4294967295 in decimal resulting to a string of 32 1's.
- See also: bindec.
+ See also bindec,
+ decoct,
+ dechex and
+ base_convert.
diff --git a/reference/math/functions/dechex.xml b/reference/math/functions/dechex.xml
index 9c139c4a39..55179ed380 100644
--- a/reference/math/functions/dechex.xml
+++ b/reference/math/functions/dechex.xml
@@ -1,5 +1,5 @@
-
+
@@ -18,7 +18,10 @@
be converted is 2147483647 in decimal resulting to "7fffffff".
- See also hexdec.
+ See also hexdec,
+ decbin,
+ decoct and
+ base_convert.
diff --git a/reference/math/functions/decoct.xml b/reference/math/functions/decoct.xml
index d47eef2fb2..e09ac2079f 100644
--- a/reference/math/functions/decoct.xml
+++ b/reference/math/functions/decoct.xml
@@ -1,5 +1,5 @@
-
+
@@ -18,7 +18,10 @@
2147483647 in decimal resulting to "17777777777".
- See also octdec.
+ See also octdec,
+ decbin,
+ dechex and
+ base_convert.
diff --git a/reference/math/functions/hexdec.xml b/reference/math/functions/hexdec.xml
index 5d15b9cad4..7dfbe8fbb3 100644
--- a/reference/math/functions/hexdec.xml
+++ b/reference/math/functions/hexdec.xml
@@ -1,5 +1,5 @@
-
+
@@ -41,7 +41,10 @@ var_dump(hexdec("a0"));
- See also dechex.
+ See also dechex,
+ bindec,
+ octdec and
+ base_convert.
diff --git a/reference/math/functions/octdec.xml b/reference/math/functions/octdec.xml
index a02b8f3a4a..d822c28ed9 100644
--- a/reference/math/functions/octdec.xml
+++ b/reference/math/functions/octdec.xml
@@ -1,5 +1,5 @@
-
+
@@ -19,7 +19,10 @@
decimal.
- See also decoct.
+ See also decoct,
+ bindec,
+ hexdec and
+ base_convert.