This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bootstrap 101 Template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link href="../assets/css/bootstrap.min.css" rel="stylesheet"> | |
| <script src="../assets/js/jquery.js"></script> | |
| <script src="../assets/js/bootstrap.min.js"></script> | |
| <script src="dist/jquery.paging.min.js"></script> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dsn = 'mysql:host=localhost; dbname=test'; | |
| $username = 'root'; | |
| $password = ''; | |
| try { | |
| $conn = new PDO( $dsn, $username, $password); | |
| $conn->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION ); | |
| } catch ( PDOException $e ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $dsn = 'mysql:host=localhost; dbname=test'; | |
| $username = 'root'; | |
| $password = ''; | |
| try { | |
| $conn = new PDO( $dsn, $username, $password); | |
| $conn->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION ); | |
| } catch ( PDOException $e ) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bootstrap 101 Template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Bootstrap --> | |
| <link href="../assets/css/bootstrap.min.css" rel="stylesheet"> | |
| <script src="../assets/js/jquery.js"></script> | |
| <script src="../assets/js/bootstrap.min.js"></script> | |
| <!-- ladda --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var pictureSource; | |
| var destinationType; | |
| var camera; | |
| var app = { | |
| init: function () | |
| { | |
| document.addEventListener( | |
| "deviceready", | |
| this.onDeviceReady, | |
| false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bootstrap Template</title> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- Bootstrap --> | |
| <link href="css/bootstrap.min.css" rel="stylesheet" media=“screen"> | |
| <script src="//code.jquery.com/jquery.js"></script> | |
| <script src=“bootstrap.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a class="btn btn-danger" href="#"> | |
| <i class="fa fa-trash-o fa-lg"></i> Delete | |
| </a> | |
| <a class="btn btn-default btn-sm" href="#"> | |
| <i class="fa fa-cog"></i> Settings | |
| </a> | |
| <a class="btn btn-lg btn-success" href="#"> | |
| <i class="fa fa-flag fa-2x pull-left"></i> | |
| Font Awesome<br>Version 4.0.3 | |
| </a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Bootstrap 101 Template</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link href="../assets/css/bootstrap.min.css" rel="stylesheet"> | |
| <script src="../assets/js/jquery.js"></script> | |
| <script src="../assets/js/bootstrap.min.js"></script> | |
| <script src="dist/select2.min.js"></script> | |
| <script src="dist/select2.locale.th.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> | |
| <ol class="carousel-indicators"> | |
| <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> | |
| <li data-target="#carousel-example-generic" data-slide-to="1"></li> | |
| <li data-target="#carousel-example-generic" data-slide-to="2"></li> | |
| </ol> | |
| <div class="carousel-inner"> | |
| <div class="item active"> | |
| <img src="holder.js/900x500/auto/#777:#555/text:DevelMate.com" alt="DevelMate.com"> | |
| <div class="carousel-caption"> |