Make tabel input

http://dpboss.net/main-ratan-penal-chart.php want to make something like this but the problem is i have to put each digits Individually.any other way to input 1st column in one sole text box second in one and third in one text box

you could make an input where you enter the digits followd by a hyphen. e.g. 1-2-3-4 and use php’s explode function to get the digits in an array.

Or you use an textarea where you type the digits followed by a [Enter] and parse that to an array with

$array = explode("\n", str_replace("\r", "", $input));
1 Like

Thank you …Forfor the help

Sponsor our Newsletter | Privacy Policy | Terms of Service