From e52d1c7151594e3fa455fe343224f73014d45c57 Mon Sep 17 00:00:00 2001 From: Egon Schmid Date: Tue, 17 Oct 2000 19:57:22 +0000 Subject: [PATCH] The < character isn't allowed in XML. Only for elements. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@34016 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/mhash.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/mhash.xml b/functions/mhash.xml index 1514eec12f..293e413f48 100644 --- a/functions/mhash.xml +++ b/functions/mhash.xml @@ -29,9 +29,9 @@ <?php $input = "what do ya want for nothing?"; $hash = mhash (MHASH_MD5, $input); -print "The hash is ".bin2hex ($hash)."\n
"; +print "The hash is ".bin2hex ($hash)."\n<br>"; $hash = mhash (MHASH_MD5, $input, "Jefe"); -print "The hmac is ".bin2hex ($hash)."\n
"; +print "The hmac is ".bin2hex ($hash)."\n<br>"; ?>