I've got an upload script that generates some stuff in relation to uploads eg

File foo.jpg uploaded succesfully<br />
File bar.tiff failed to upload!
...

This is all part of a variable called $message. How could I pass this to another php script?
Thanks for any help

Recommended Answers

All 4 Replies

Can you unset one session variable without destroying the session?

<?php
session_start();
if(isset($_SESSION['views']))
  unset($_SESSION['views']);
?>

Thanks!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.