[Solved] How To Register user Form with all dynamic fields name in php

// Logic One Using For Loop <?php error_reporting(0); $con=mysql_connect(‘localhost’,’root’,”) or die(‘Not Connect’); mysql_select_db(‘multiple’,$con); if (isset($_POST[“submit”])){ $field_name = $_POST[‘values’]; $values = “”; for ($i = 0; $i < sizeof($field_name); $i++) { $values .= “(‘”.$field_name[$i].”‘)”; if ($i != sizeof($field_name) – 1) { $values .= “, “; } } $sql = mysql_query(“INSERT INTO php_test VALUES (” . $values.”)”); … Read more

[Solved] CSS Grid or Columns? [closed]

put your picture and text in a div respectively and give that div below css .parent{ display:flex; justify-content:center; flex-wrap:wrap; } .parent div{ height:200px; width:300px;} .img img{ width:100%; height:100%; } <div class=”parent”> <div class=”image”> <img src=”https://cdn.colorlib.com/shapely/wp-content/uploads/sites/12/2016/03/photo-1447834353189-91c48abf20e1-1-1.jpg” alt=””> </div> <div class=”text”> <h2>About Us</h2> <p>Usage of the Internet is becoming more common due to rapid advancement of technology … Read more