Guest User

Untitled

a guest
Jul 5th, 2018
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. //WRONG
  2. $customer_array = Array(
  3.    '1' => 'dbcrizzer@gmail.com', 'joe@ceceliasristorante.com',
  4. );
  5. //RIGHT
  6. $customer_array = Array(
  7.    '1' => 'dbcrizzer@gmail.com',
  8.    '2' => 'joe@ceceliasristorante.com'
  9. );
  10.  
  11. //REAL RIGHT IN YOUR CASE
  12. $customer_array = Array(
  13.    '1' => 'dbcrizzer@gmail.com, joe@ceceliasristorante.com'
  14. );
Add Comment
Please, Sign In to add comment