php array not returning on first load

前端 未结 1 345
无人共我
无人共我 2021-01-27 16:31

I\'m trying to debug a facebook script that loads a users profile into a form which you can then edit.

The problem is that the script does not return the $user_pro

1条回答
  •  清酒与你
    2021-01-27 16:37

    Maybe problem on the first line..

        $is_fb=false;
    

    when the page is redirecting this is this evaluating as false?

    If yes then this is not executing.

       if($is_fb) {
         //Your Code
         //Your Code   
        }
    

    0 讨论(0)
提交回复
热议问题