Saturday, 7 July 2018

Associate Array in PHP

<?php
$students = array();
$students[0] = array(
            'name' => 'Rahul',
            'course' => 'Dimplma in IT',
            'email' => "rahul@zixana.com"
            );

$students[1] = array(
            'name' => 'Priya',
            'course' => 'Dimplma in IT',
            'email' => "priya@zixana.com"
            );

foreach ($students as $key => $value) {
    echo $value['name'].' is enroled in '. $value['course'].' and has email id is '. $value['email'].'.';
    echo "<br>";
}

Thursday, 26 April 2018

Web Mp3 Player Part-1 Creating An Static Site With Mp3 Player

Hello guys, after a long time we are back with a new series name "Web Mp3 Player" using PHP, HTML, CSS and JS.

f

This is how the basic front will look.

Github - https://github.com/amankkcc/mp3web.git