script php buat penjumlahan data yang ada di textfield1 dan textfield2 dan hasilnya ada di textfield3 apa ?
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
misal
di form dengan method post maka di proses.php akan proses
if(empty($_POST)){
$1 = $_POST['text1'];
$2 = $_POST['text2'];
$hasil = $1+$2;
echo "<input type='text' vaulue='$hasil' disabled>";
}