Hello I am a student and new to web developing so i need your help,
I need to put a word filter to my chatbot so it will echo only what the user wrote after the echo. So if the user types "echo Hello" the bot will echo "Hello".
Here is my code
<?php
echo $_REQUEST['msg'];
?>
Thanks in advance

