Advertisement
Guest User

Untitled

a guest
Jul 31st, 2017
493
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. DEPARTMENT_ID_FK | EMAIL_ADDRESS
  2. 001 | a@example.com
  3. 002 | b@example.com
  4. 001 | c@example.com
  5.  
  6. while($dData = oci_fetch_array($q))
  7. {
  8. $email = $dData['EMAIL_ADDRESS']; // I know when I echoing this variable, it will be like : a@example.comb@example.comc@example.com
  9. }
  10.  
  11. DEPARTMENT_ID_FK | EMAIL_ADDRESS
  12. 001 | a@example.com, c@example.com
  13. 002 | b@example.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement