Re: [PHP] variables empty

2001-04-17 Thread Ulf Wendel
Dennis Haller schrieb: > I've got this problem with variables. In the code below I've got the > variables: $jaar and $vak, if I echo them they r displayed correctly, but if > the function unlink is called it doesnt seem to know what $jaar and $vak > are. If I do $the_path = "/home/H0RNET/ftp/jaa

Re: [PHP] variables empty

2001-04-17 Thread phpman
hey, try this... $the_path = "/home/H0RNET/ftp/" . $jaar . "/" . $vak . "/"; unlink ($the_path . $d); ""Dennis Haller"" <[EMAIL PROTECTED]> wrote in message 9bharm$1td$[EMAIL PROTECTED]">news:9bharm$1td$[EMAIL PROTECTED]... > Hi all, > I've got this problem with variables. In the code below

[PHP] variables empty

2001-04-17 Thread Dennis Haller
Hi all, I've got this problem with variables. In the code below I've got the variables: $jaar and $vak, if I echo them they r displayed correctly, but if the function unlink is called it doesnt seem to know what $jaar and $vak are. If I do $the_path = "/home/H0RNET/ftp/jaar1/PRO/"; then the funct