php input value code example
Example 1: php input field
Name: <input type="text" name="name" value="<?php echo $name;?>">
Example 2: how to get input value in php variable
$info = array('Doina', 'brown', 'long');
// Listing all the variables
list($she, $color, $hear) = $info;
echo "$she has $color eyes color and $hear black hair.\n";