Okay so programmed a very simple batch file:
@echo off
set input=
set /P input=Enter Number Code: %=%
start http://myanimelist.net/anime/%input%
This will take them to the website with the code number they enter.
For example, I enter: 111
It goes to http://myanimelist.net/anime/111
How can this same thing be done in PHP, JavaScript, HTML basically through a webpage?
Where it asks to enter a number code then sends them to the URL?
Trivially simple using JavaScript, I’d even suggest jQuery…
Your web page (html file) needs a text input field where the user can type the code:
Then you attach a javascript event to the button that builds the URL and goes to it:
Here’s a working fiddle including markup.
http://jsfiddle.net/czX7R/1/