eriche
Member
Hello,
 
I am extending the Datawriter - User.php
Works good so far.
 
My Problem only is that I don`t know how to Access Array fields in PHP
 
	
	
	
		
 
I can Access with
	
	
	
		
 
 
BUT how to Access a custom userfield (Array of Array)
	
	
	
		
 
how to get the "Facebook" Content?
 
thanks very much!
 
Erich
				
			I am extending the Datawriter - User.php
Works good so far.
My Problem only is that I don`t know how to Access Array fields in PHP
		PHP:
	
	  ["_POST"] => array(48) {
    ["username"] => string(7) "tester1"
	I can Access with
		PHP:
	
	$this->get('username')
	BUT how to Access a custom userfield (Array of Array)
		PHP:
	
	  ["_POST"] => array(48) {
    ["custom_fields"] => array(8) {
      ["facebook"] => string(0) "1234567890"
	how to get the "Facebook" Content?
thanks very much!
Erich