Simple ChatBot in PHP/CMD
Hi!
In this tutorial I will teach you how to make a simple chat bot in CMD/PHP!
Open a File in Notepad
Open a new file in notepad and write:
The Code
@echo off
:start
echo ChatBot
echo.
echo.
echo.
echo Hello there!
echo.
echo What's your name?
echo.
set /p name=
echo.
echo Hello %name%!
echo.
echo My name is Terminator
echo.
echo How are you?
echo.
set /p health= echo.
echo I am ok.
echo What's your favorite food?
echo.
set /p food=
echo.
echo My favorite food is also %food%!
pause
cls
goto:start
Now save the this file as ChatBot.bat
It's Ready!
I hope you like this project!
Here is the code: