Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
About Me

easily hurt, always playing volleyball. willing to learn programming like php html css bootstrap.

Interests
Learning PHP, HTML, CSS , BOOSTRAP
PC Specs
processor intel(R) Core(TM) i3 CPU. RAM 4.00 GB. windows 8
Favorite Forums
Favorite Tags
Member Avatar for abim usman

function EnableDisableTextBox(chkPassport) { var txtPassportNumber = document.getElementById("txtPassportNumber"); txtPassportNumber.disabled = chkPassport.checked ? false : true; if (!txtPassportNumber.disabled) { txtPassportNumber.focus(); } } <html> <body> <label for="chkPassport"> <input type="checkbox" id="chkPassport" onclick="EnableDisableTextBox(this)" /> Tab? </label>Tab Quantity: <input type="text" id="txtPassportNumber" disabled="disabled" /> <br> <script type="text/javascript"></script> <label for="shoes"> <input type="checkbox" id="shoes" onclick="EnableDisableTextBox(this)" /> Shoes? Shoes Quantity: …

Member Avatar for kgweb
0
1K
Member Avatar for abim usman

$mysql_hostname = "localhost"; $mysql_user = "root"; $mysql_password = ""; $mysql_database = "loan"; $connect = mysql_connect($mysql_hostname, $mysql_user, $mysql_password) or die("Something went wrong..."); mysql_select_db($mysql_database, $connect) or die("Something went wrong..."); if(isset($_POST['btn_submit'])) { $datess = $_POST['datess']; $control = $_POST['control']; $payee = $_POST['payee']; if(!empty($datess) && !empty($control) && !empty($payee)) { mysql_query("INSERT INTO `sales`(`datess`, `control`, `payee`) VALUES …

Member Avatar for klemme
0
291
Member Avatar for abim usman

<h4>Both Product fix price. if checkbox is check and chose quantity automaticaly total</h4> <p class="one">Product            Quantity</p> <div class = "checkbox"> <input type="checkbox" name="abim[]" id="tab_price" value="100" onkeyup="AutoCalc(this)">Samsung TV    <input type="number" id="tab_quantity" value="0" onkeyup="AutoCalc(this)"><br/> <input type="checkbox" id="mineral_price" name="abim[]" value="200" onkeyup="AutoCalc(this)">SonyVaio TV   <input type="number" id="mineral_qunatity" value="0" onkeyup="AutoCalc(this)"><br/><br/> Total <input …

0
82
Member Avatar for abim usman

<html> <body> <form action="#" method="post"> Addition 1: <input type="text" id="add1" name="add1" onkeyup="AutoCalc(this)" /> Subtraction 1: <input type="text" id="sub1" name="sub1" onkeyup="AutoCalc(this)" /> Addition 2: <input type="text" id="add2" name="add1" onkeyup="AutoCalc(this)" /> Subtraction 2: <input type="text" id="sub2" name="sub1" onkeyup="AutoCalc(this)" /> <label> Total</label> <input type="text" id="total" name="total" disabled="disabled" /> </div> </body> </html> <script> function …

Member Avatar for rubberman
0
179
Member Avatar for abim usman

<html> <head> <title>Help Me</title> <html lang="en"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> </head> <body><br><br> <center> <h1> Additon</h1><br> <form action="" method="post"> <label>Enter Num1:</label> <input type="text" name="num1" /><br> <label>Enter Num2:</label> <input type="text" name="num2" /><br><br> </form> <div class="container"> <!-- Trigger the modal with a button --> …

Member Avatar for rubberman
0
305