I am trying to flush ouput cookies using the flush function. I have seen several different ways that people have used to flush their output buffers. None have seemed to work on my system. Output buffering is turned on in my php.ini. Here is a part of a code I am using that shows the output buffering. Can anyone suggest a better method of immediately flUshing the cookies?
ob_start();
setcookie("filedone1",$_FILES['upload1']['name'],"0","","www.crescendomusiconline.com","");
ob_flush();
ob_end_flush();
sleep(3);
Thanks in advance for any help that can be provided.