RE: [PHP] File upload !!!!

2001-05-13 Thread Arne Borkowski \(borko.net\)
Let us see the form code fragment in your HTML page and the PHP code that accesses the variables...in order to see where the problem is. -Arne > -Original Message- > From: Matthias Roggendorf [mailto:[EMAIL PROTECTED]] > Sent: Sunday, May 13, 2001 8:15 PM > To: [EMAIL PROTECTED] > Subje

RE: [PHP] if $index=1 how can I create a variable named $column_1

2001-05-11 Thread Arne Borkowski \(borko.net\)
and that's pretty cool ... do you also have a solution to access the name of this "dynamic" variable if I'd like to use it also (e.g. with WDDX functions)? That' would be great! TIA, Arne > -Original Message- > From: ..s.c.o.t.t.. [gts] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 1

RE: [PHP] something like a C "struct" or "union" in PHP?

2001-05-05 Thread Arne Borkowski \(borko.net\)
t; Subject: Re: [PHP] something like a C "struct" or "union" in PHP? > > > PHP does not have struct. You can do similar things with class or > array. You > probably interested in wddx serialize or serialize function to > make it work your > snippet. > > Regard

[PHP] something like a C "struct" or "union" in PHP?

2001-05-05 Thread Arne Borkowski \(borko.net\)
Hi Folks, I want to do the following: $f = fopen($filename", "r"); while( !feof($f) ) { $len=1; $RECSIZE=128 while($n=1;$n<=$len;$n++) $data = fread($f, $RECSIZE); $rectype = $data[4]; switch($rectype) {