Skip to content

Instantly share code, notes, and snippets.

@aurorapar
Last active December 28, 2017 01:20
Show Gist options
  • Save aurorapar/79ba47026b995eeb5a97077fc8627866 to your computer and use it in GitHub Desktop.
Save aurorapar/79ba47026b995eeb5a97077fc8627866 to your computer and use it in GitHub Desktop.
<?php
$songs = ('Song1', 'Song2');
$artists = ('Artist1', 'Artist2');
for($x = 0; $x < sizeof($songs); $x++)
{
echo $songs[x] . ' by ' $artists[x] . '\n';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment