Array Diff not finding array

129 Views Asked by At

Ive got a function that is supposed to compare 2 arrays. Array diff is sending a warning that the first argument isn't an array.... also open to any better ways to write this function. I was just kind of winging it on this one. Thanks!

function changeLog(){
include('../includes/conn.inc.php'); 
//select object and make an array with each current value 
    $stmt = $mysql->prepare ("SELECT * FROM table WHERE id=?");
    $stmt->bind_param("i", $_POST['id']);
    $OK = $stmt->execute();
    $stmt->bind_result(
        $id,
        $name,
        $created,
        $edited,
        $owner
    );
while($row = $stmt->fetch()) {
    $array1 = array(
        'name' => $name,
        'owner' => $owner 
        );}
    $stmt->close(); 

//$array1 now holds current values for each field
//now grab the post values from the update and stick them into array2

        $name= $_POST['name'];
        $owner= $owner;

    $array2 = array(
        'name' => $name,
        'owner' => $owner 
        );

//$array2 now holds post values for each field in the update
//check the arrays and spit out the differences

    $result = array_diff($array1, $array2);
//strip the values and just output the array keys

$dbInput =(array_keys($result));

        foreach($dbInput as $i){
            $owner=  'use'.$_SESSION['i'];
            $sql = 'INSERT INTO history (id, created, edited, owner, parent, body) 
                    VALUES (NULL,NOW(),NOW(),?,?,?)';
            $stmt = $mysql->stmt_init();
            if ($stmt->prepare($sql)) { 
                $stmt->bind_param('sss', $owner, $_POST['id'], $i);
                $OK = $stmt->execute();}
                $stmt->close(); 

        }
}// end changeLog
1

There are 1 best solutions below

2
On BEST ANSWER

Try coding it a bit more like this and see if it tells you anything:

if($row = $stmt->fetch()) {
   $array1 = array('name' => $name, 'owner' => $owner);
   //$array1 now holds current values for each field 
   //now grab the post values from the update and stick them into array2
   $name= $_POST['name'];
   $owner= $owner;
   $array2 = array('name' => $name,         'owner' => $owner          );
  //$array2 now holds post values for each field in the update 
  //check the arrays and spit out the differences
  $result = array_diff($array1, $array2); 
 // ...
} else {
      echo "no result returned";
}