help me with string error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    help me with string error

    can any body please solve this code
    Warning: copy() expects parameter 1 to be string, array given in

    #2
    You are using copy(array(...), $var2); or copy(array(..),' fathpath1'); which is wrong.


    Use copy($var1, $var2); or copy('filepath',' fathpath1');
    Last edited by rukiya; 27.11.11, 19:58.

    Comment

    Working...
    X