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 | |
| // Sets up our arrays | |
| $array1 = [1, 3, 5, 7, 9]; | |
| $array2 = [2, 4, 6, 8, 10]; | |
| $array3 = []; | |
| // Determines how many items we have in each array | |
| $array1_count = count($array1); | |
| $array2_count = count($array2); |
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
| tinymce.init({ | |
| selector: 'textarea', // change this value according to your HTML | |
| theme: "modern", | |
| paste_data_images: true, | |
| plugins: [ | |
| "advlist autolink lists link image charmap print preview hr anchor pagebreak", | |
| "searchreplace wordcount visualblocks visualchars code fullscreen", | |
| "insertdatetime nonbreaking save table contextmenu directionality", |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
NewerOlder