Created
September 24, 2018 04:44
-
-
Save ydhnwb/03454452296f37c997fb0d96334e1a72 to your computer and use it in GitHub Desktop.
milik crudoopphp
This file contains 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
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<title>MDB OOP CRUD - Prieyudha Akadita S</title> | |
<!-- Font Awesome --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<!-- Bootstrap core CSS --> | |
<link href="res/style/css/bootstrap.min.css" rel="stylesheet"> | |
<!-- Material Design Bootstrap --> | |
<link href="res/style/css/mdb.min.css" rel="stylesheet"> | |
<!-- Your custom styles (optional) --> | |
<link href="res/style/css/style.css" rel="stylesheet"> | |
<script type="text/javascript"> | |
function ChangeColor(tableRow, highLight) { | |
if (highLight) { | |
tableRow.style.backgroundColor = '#B2EBF2'; | |
}else { | |
tableRow.style.backgroundColor = 'white'; | |
} | |
} | |
function DoNav(theUrl){ | |
document.location.href = theUrl; | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment