Folks I am running php 5.0.1 on NT.
I have a small test script as shown below
<script language="php">
setcookie('cat','large',time()+3600);
setcookie('dog','small',time()+3600);
</script>
The outcome of this script is that only the LAST cookie is successfully stored.despite
having a different
name. Is this because they are both being set from within the same script and
therefore conflicting with
each other?
Mike

