It looks like you're new here. If you want to get involved, click one of these buttons!
smokinaces said:Your script looks ok to me - but it will save '222' in the session, not the filename.
Try
$_SESSION['data'][] = $_FILES['Filename']['name'];
This will store each file uploaded in your $_SESSION['data'];
lperry65 said:The session is not being passed as Uploadify is flash based and does not pass cookies along with the request. I'm looking for a solution to this issue also, my javascript is in an external file so I cant use php hacks to add the session to the url etc, which is just nasty anyway. If I cant use sessions the I will be forced to look else where for this functionality.