Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Creating an GUI with PHP CLI

Is there anyway to recreate the following interface in PHP using the PHP CLI on a bash shell?

If anyone could point me in the right direction - I'd be very grateful.

enter image description here

like image 928
Andrew Phillips Avatar asked Dec 21 '22 01:12

Andrew Phillips


2 Answers

That type of thing is usually, afaik, done with ncurses

like image 159
Quentin Avatar answered Dec 24 '22 02:12

Quentin


ncurses is probably your best bet: http://www.php.net/manual/en/intro.ncurses.php

like image 29
troelskn Avatar answered Dec 24 '22 02:12

troelskn