Skip to content

Instantly share code, notes, and snippets.

@KnowTheCodePro
Created March 1, 2016 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KnowTheCodePro/9f60c474fb7085aeddc5 to your computer and use it in GitHub Desktop.
Save KnowTheCodePro/9f60c474fb7085aeddc5 to your computer and use it in GitHub Desktop.
PHP end - In Action
<?php
namespace KnowTheCode;
$members = array(
array(
'first_name' => 'Tonya',
'Twitter' => 'hellofromTonya',
'email' => 'hellofromtonya@knowthecode.io',
),
array(
'first_name' => 'Bob',
'Twitter' => 'boblovescode',
'email' => 'bob@gmail.com',
),
array(
'first_name' => 'Sally',
'Twitter' => 'msally',
'email' => 'sally@gmail.com',
),
array(
'first_name' => 'John',
'Twitter' => 'johnthompson',
'email' => 'john@gmail.com',
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment