Welcome Guest, Not a member yet? Register   Sign In
Join problem with two fields named the same
#2

It's not because of CI3, it's how PHP work. You can't have two item with the same key in an array or an object.

It's the same as doing this :

PHP Code:
$data = array('image_path' => 'aaa''image_path' => 'bbb'); 

You will end up with :

PHP Code:
Array
(
 
   [image_path] => bbb

CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply


Messages In This Thread
RE: Join problem with two fields named the same - by includebeer - 03-15-2015, 07:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB