COOKIE in handle

See all posts See thread Reply

Re: COOKIE in handle new!
by colin, 16 years, 2 months ago
This has nothing to do with the class. You have a syntax error while setting up your parameters:
$handle->file_new_name_body = '".$_COOKIE["xxxxxxxxx"]."3';

should be:
$handle->file_new_name_body = $_COOKIE["xxxxxxxxx"]."3";
Reply