Skip to main content

Posts

Showing posts with the label Duc

Dùng FORM nhập số dòng, số cột & Dùng mảng in ra số dòng số cột đó.

  <!doctype html> <html> <head> <meta charset="utf-8"> <title>Untitled Document</title> </head> <body> <form method="post" id="form1" name="form1" action="">    <label>Nhập số dòng: </label>      <input name="dong" type="text" id="dong" > <label>Nhập số cột: </label> <input name="cot" type="text" id="cot" > <input name="submit" type="submit" id="submit" value="Thực hiện" > </form> <?php if(isset($_POST['dong'],$_POST['cot'])) { $d=$_POST['dong']; $c=$_POST['cot']; $a=array(); for($tr=0;$tr<$d;$tr++) for($td=0;$td<$c;$td++) $a[$tr][$td]=rand($d,$c); echo "<table width='600' border='1'>"; for($tr=0;$tr<$d;$tr++) { echo "<tr>...