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.blur { | |
-webkit-filter: blur(5px); | |
-moz-filter: blur(5px); | |
-o-filter: blur(5px); | |
-ms-filter: blur(5px); | |
filter: blur(5px); | |
width: 100px; | |
height: 100px; | |
background-color: #ccc; | |
} |
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
<!-- | |
1. Add button that will be named as Display Details, will toggling secret message on and | |
off | |
2. paragraph will display the secret if the secret havent display yet, and | |
vise versa | |
3. Will display count of the evertime the button is click (Timestamp stored into an array), and save the timestamp to an array using loop | |
4. if the content is more than five. index wise, it will give blue background color and white as its font | |
--> | |
<div class="container"> |
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
<!-- | |
ASSIGNMENT FOR DATABINDING | |
1. input, that use two way binding to | |
2. paragraph that will detect the update in name using string interpolation | |
3. button only clickable if the name is not empty, if its empty if will disable (use property binding) | |
4. button that can reset the string for variable, name | |
--> | |
<div class="container"> |
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 | |
if (isset($_POST['submit'])) { | |
// Displaying the array detail of that files | |
// echo "<pre>"; | |
// print_r($_FILES['file_upload']); | |
// echo "</pre>"; | |
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 | |
// constructor is use to make PHP run the function automatically | |
// without instantied the function of a class. | |
class Cars { | |
public $wheel_count = 4; | |
static $door_count = 4; | |
// this is how to use constructor | |
function __construct(){ |
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 | |
// English (Default) translation for registration page | |
const _REGISTER = "Register"; | |
const _USERNAME = "Enter your username"; | |
const _EMAIL = "Enter your email"; | |
const _PASSWORD = "Enter your password"; | |
?> |
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 | |
//============== DATABASE HELPER FUNCTION ==============// | |
// ----------------------------------------------------------// | |
// Function that wil redirect user to a specified path // | |
// ----------------------------------------------------------// | |
function redirect($location) | |
{ |
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 | |
if(isset($_POST['submit'])) | |
{ | |
$firstName = $_POST['firstName']; | |
$lastName = $_POST['lastName']; | |
$email = $_POST['email']; | |
$subject= $_POST['subject']; | |
$message = $_POST['message']; |
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
import java.util.Scanner; | |
import java.lang.String; | |
public class Covid | |
{ | |
public static void main (String[] args) | |
{ | |
double temperature = 0.0; | |
String[] name = new String[20]; |
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 class="form-row" > | |
<div class="form-group col-sm-4"> | |
<label class="font-weight-bold" for="pstatus">Estimated Start Date</label> | |
<input type="date" class="form-control form-control-sm" name="estStart" id="estStart" data-group="section-b1"> | |
</div> | |
<div class="form-group col-sm-4"> | |
<label class="font-weight-bold" for="ptype">Estimated End Date</label> | |
<input type="date" class="form-control form-control-sm" data-group="section-b1" name="estEnd" id="estEnd" placeholder="Please enter the estimated end date"> | |
</div> |
NewerOlder