<?php session_start(); include("include/database.php"); include("include/function.php"); $myyear = $_POST['myyear']; if (strlen($myyear) == 0) {$myyear = date('Y');} ?> <!-- /** Author: XuDing Email: [email protected] Website: http://www.startutorial.com Post on: Onextrapixel - http://www.onextrapixel.com **/ --> <html> <head> <style> body{ width:100%; margin:0px; padding:0px; } #container{ font-family: Arial, serif; font-size:12px; padding-top:20px; width:700px; margin: auto; } form{ width:300px; padding: 0px; margin: 0px; } form textarea{ font-family: Arial, serif; font-size:12px; width:270px; margin:5px; height:40px; overflow: hidden; } iframe{ border:1px solid #DDD; } #generator{ width: 300px; float:left; } #generator fieldset{ border:1px solid #DDD; } #result{ padding-top:7px; margin-left:340px; width: 350px; } </style> </head> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#txtIdsubject").change(function(){ $.ajax({ url: "returnCustomerqrcode.php", type: "POST", data: 'sCusID=' +$("#txtIdsubject").val() }) .success(function(result) { var obj = jQuery.parseJSON(result); if(obj == '') { if(confirm("ไม่พบข้อมูล !! \nไปยังหน้าข้อมูลรายวิชา")){ window.location='subject2.php'; }else{ return false; } } else { $.each(obj, function(key, inval) { $("#txtIdsubject").val(inval["Idsubject"]); // $("#txtNamesubject").val(inval["Namesubject"]); $("#txtIdteacher").val(inval["Idteacher"]); $("#txtDatasubject").val(inval["Daysubject"]); }); } }); }); }); </script> <body> <div id="container"> <h1>สร้าง QR Code </h1> <div id="generator"> <form target="Check_txt" action="gen.php" method="post"> <fieldset> <legend>ขนาด:</legend> <input type="radio" name="size" value="150x150" checked>150x150<br> <input type="radio" name="size" value="200x200">200x200<br> <input type="radio" name="size" value="250x250">250x250<br> <input type="radio" name="size" value="300x300">300x300<br> </fieldset> <fieldset> <legend>การเข้ารหัส:</legend> <input type="radio" name="encoding" value="UTF-8" checked>UTF-8<br> <input type="radio" name="encoding" value="Shift_JIS">Shift_JIS<br> <input type="radio" name="encoding" value="ISO-8859-1">ISO-8859-1<br> </fieldset> <fieldset> <legend>รายละเอียด:</legend> <p> <input name='txtIdsubject' id='txtIdsubject' type='text' placeholder="ระบุรหัสวิชา" size='10' maxlength="7" onKeyUp="if(this.value*1!=this.value) this.value='' ;"> </p> <p> <input name='txtIdteacher' id='txtIdteacher' type='text' placeholder="ระบุรหัสอาจารย์" size='10' maxlength="9" onKeyUp="if(this.value*1!=this.value) this.value='' ;"> </p> <p> <select name='txtDatasubject' id='txtDatasubject'> <option value=''>เลือกวันเรียน</option> <? $rstTemp=mysql_query('select * from day'); while($arr_2=mysql_fetch_array($rstTemp)){ ?> <option value="<?=$arr_2['Day1']?>"><?=$arr_2['Day1']?></option> <? }?> </select> </p> <p> <select name='Number' id='Number'> <option value=''>เลือกครั้งที่สอน</option> <? $rstTemp=mysql_query('select * from number'); while($arr_2=mysql_fetch_array($rstTemp)){ ?> <option value="<?=$arr_2['Num']?>"><?=$arr_2['Num']?></option> <? }?> </select> </p> </fieldset> <fieldset> <legend>Error correction:</legend> <select name="correction"> <option value="L" selected>L</option> <option value="M">M</option> <option value="Q">Q</option> <option value="H">H</option> </select> </fieldset> <input type="submit" value="สร้าง QR Code"></input> <input type='reset' name='Submit2' value='ล้างข้อมูล'> <input type='button' name='Submit222' value=' ยกเลิก ' onClick="document.location.href='index.php'"> </form> </div> <div id="result"> <iframe name="Check_txt" frameborder="0" id="qrcode" src="gen.php" height="315px;" width="350px"></iframe> </div> </div> </body> </html>
<?php /** *@author XuDing *@email [email protected] *@website http://www.startutorial.com **/ //process only if data is posted if(isset($_REQUEST['txtIdsubject'])){ if(isset($_REQUEST['txtIdteacher'])){ if(isset($_REQUEST['txtDatasubject'])){ if(isset($_REQUEST['Number'])){ //capture from the form $size = $_REQUEST['size']; $txtIdsubject = $_REQUEST['txtIdsubject']; $txtIdteacher = $_REQUEST['txtIdteacher']; $txtDatasubject = $_REQUEST['txtDatasubject']; $Number = $_REQUEST['Number']; $correction = strtoupper($_REQUEST['correction']); $encoding = $_REQUEST['encoding']; //form google chart api link $rootUrl = "https://chart.googleapis.com/chart?cht=qr&chs=$size&chl=$txtIdsubject$txtIdteacher$txtDatasubject$Number&choe=$encoding&chld=$correction"; //print out the image echo '<img src="'.$rootUrl.'">'; } } } } ?>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง