Array

How to Pretty Print PHP Array

Submitted by nurhodelta_17 on
This tutorial tackles on how to beautifully display PHP array. In manipulating array with PHP, often times we use print_r() or var_dump() function to display data in an array but the presentation of data in this functions is not usually eye-friendly for developers. This tutorial will provide you a simple solution on how to prettify your PHP array display.

jQuery Raffle with PHP Array

Submitted by Mr.Niemand03 on
Jquery Raffle with PHP Array Simple random number generation in a loop to simulate a raffle draw. The code uses bootstrap as the main design and to produce modal to show who is the winner. Also it requires jquery to run. You may use Jquery CDN at https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js and Bootstrap CDN at https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css

ASP.NET Loops and Arrays

Submitted by rinvizle on
In this tutorial I will teach you how to make a loop statement and arrays in ASP.NET.

Included:

For Loops For Each Loops While Loops Arrays

Source Code

For Loops If you need to run the same statements repeatedly, you can make a program that loop. If you know how many times you want to loop, you can use a for loop.

Work with Files in Java: Searching and Replacing Elements of Array

Submitted by pavel7_7_7 on
This article is an example of a typical college assignment. This article describes the opening file processes, and resolves some problems relevant to array usage. Often, students are asked to implement some assignments that are connected with different array algorithms. Another popular task is the reading of data from file. In this article I'll describe an example of assignment, that is connected with files and arrays in Java.