You need value for $new_customer
.
<?php
$new_customer = $_POST[search];
?>
Unless you assign value to $new_customer
, you can’t print it in html.
3
solved Why is my textbox not populating?
You need value for $new_customer
.
<?php
$new_customer = $_POST[search];
?>
Unless you assign value to $new_customer
, you can’t print it in html.
3
solved Why is my textbox not populating?