Answers for "php add empty row to array"

PHP
0

adding data dynamically to empty array in php

$array[] = "item"; // for your $arr1 
$array[$key] = "item"; // for your $arr2
array_push($array, "item", "another item");
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language