I am trying to create a table and , insert some values in database with help of PHP script. While inserting only 1 row , it works fine. An when I try to enter more number of row
Use mysqli_multi_query instead of mysqli_query, that should do it.
mysqli_multi_query
mysqli_query
$query = mysqli_multi_query($db_conx,$sqlCommand) or die(mysqli_error($db_conx));
http://php.net/manual/en/mysqli.multi-query.php