Skip to content

Commit 7776c8c

Browse files
author
Muhammad Umer Farooq
authored
Update index.php
1 parent 01b30a6 commit 7776c8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
//Encrypt the message
88
$encrypt = $encryption->encrypt("This is a text");
99

10-
echo $encrypt;
10+
echo "Encrypted text: ".$encrypt;
1111
echo "<br\>";
1212

1313
//Decrypt the message
1414
$decrypt = $encryption->decrypt($encrypt);
15-
echo $decrypt;
15+
echo "Decrypted/plain text: ".$decrypt;

0 commit comments

Comments
 (0)