php-windows Digest 26 Sep 2003 02:26:02 -0000 Issue 1928
Topics (messages 21550 through 21568):
PHP PDF Support...
21550 by: Brian M McGarvie
21551 by: Francesco
Re: Last Critical Upgrade
21552 by: Svensson, B.A.T. (HKG)
Time validation - urgent
21553 by: karthikeyan
Re: [PHP] Re: PHP PDF Support...
21554 by: Jay Blanchard
Looping problem
21555 by: Gerardo Rojas
21556 by: Gerardo Rojas
21557 by: Mike Brum
21558 by: Croskerry, Dan
21559 by: Croskerry, Dan
21560 by: Gerardo Rojas
21563 by: Luis Moreira
Upgrading problems
21561 by: Brad Harriger
Re: Refresh php section
21562 by: Ryan Vesely
Writing to a file
21564 by: Gerardo Rojas
21566 by: Mike Brum
21567 by: Gerardo Rojas
Any way to override use of TEMP folder for Windows function 'tmpfile()'.
21565 by: Paul Menard
problems with fopen
21568 by: Rob Hermann
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
I have successfuly been creating PDF files... however it is required that
the files are printed Automatically - i.e. no need to hit print icon etc
etc...
Anyone know how to achieve this or atleast point me in the right direction?
--- End Message ---
--- Begin Message ---
In the current issue of php|architect - an electronically distributed
magazine, which you can find here http://www.phparch.com/ there is an
article on printing with php. The magazine is not free, but is good value
anyway.
HTH
Francesco
"Brian M McGarvie" <[EMAIL PROTECTED]> ha scritto nel
messaggio news:[EMAIL PROTECTED]
> I have successfuly been creating PDF files... however it is required that
> the files are printed Automatically - i.e. no need to hit print icon etc
> etc...
>
> Anyone know how to achieve this or atleast point me in the right
direction?
--- End Message ---
--- Begin Message ---
And /you/ are thinking for us then? ;)
Thanks for your good intention, but stay on track please,
e.g. on topic, this is a php programming forum and virus
warning announcements is even far remote of topic than
discussing MySQL internals.
//Anders - "I am a self learning machine" :)
On Wed, 2003-09-24 at 20:48, Shadow wrote:
> Its important that those that are less savvy understand the importance of
> being aware...it is why some of these virii proliferated....people don't
> think......and just open things....and there is a new virus based on PHP
> called PHP.Virdrus [KAV]....so that should fulfill your requirements...why
> don't you just ignore this conversation?
> Shadow
--- End Message ---
--- Begin Message ---
hi guys,
I need to validate time my time shd be of format 1230. (HHMM)
from 0000 to 1259
Pls get me some idea
JAI SAIRAM
Thanks
Karthikeyan.S
--- End Message ---
--- Begin Message ---
[snip]
In the current issue of php|architect - an electronically distributed
magazine, which you can find here http://www.phparch.com/ there is an
article on printing with php. The magazine is not free, but is good
value
anyway.
[/snip]
and props to John Holmes who so frequently provides solutions on this
list...he is one of the regular columnists for php|architect.
*sniff* I knew him when .... *sniff* :)
--- End Message ---
--- Begin Message ---
I'm looping through a file, parsing each line of text. I have a global array that i
append each line to. When my criteria is met. I mark that line. This line will
begin an array that I will later write out. After writing out the array I zap it and
reuse it for the next time my criteria is met. The problem I'm having is the first
time my criteria is met, I don't want to write out the array, only the subsequent
times my criteria is met; do I want to write out the array. Any suggestions?
----------------------
function parse_qnas($string, $path, $start_flag )
{
global $aNEW;
$Pat1 = "Q";
$Pat2 = "?";
$aTmp = array();
$ret1 = gsr_match_case_sensitive($string, $Pat1);
$ret2 = gsr_match($string, $Pat2);
if( $ret1 && $ret2 )
{
if( $start_flag == false )
{
echo "<P>First QnA found! Don't write array!";
$start_flag = true;
}
if( $start_flag == true )
{
echo "<P>Second QnA found! Write array!";
write_array( $aNEW );
$aNEW = zero_array( $aNEW );
}
}
$aNEW[] = $string;
return;
}
--- End Message ---
--- Begin Message ---
I don't want to break from the loop. I want to loop the entire file. The problem is:
the first time i find a match = i do nothing, append to array.
the second, third, fourth, .... and so on = I write the array, clear it and append to
it.
-----Original Message-----
From: Herhuth, Ron [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:08 AM
To: Gerardo Rojas
Subject: Re: [PHP-WIN] Looping problem
Can't you just insert a "Break;" when condition are met? This will break
out of the loop.
Ron
>From: Gerardo Rojas
>To: [EMAIL PROTECTED]
>Sent: 09/25/2003 10:04 AM
>I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria
is met. The problem I'm having is the first time my criteria is met, I
don't want to write out the array, only the subsequent times my criteria
is met; do I want to write out the array. Any suggestions?
>
>----------------------
>
>function parse_qnas($string, $path, $start_flag )
>{
> global $aNEW;
>
> $Pat1 = "Q";
> $Pat2 = "?";
> $aTmp = array();
>
> $ret1 = gsr_match_case_sensitive($string, $Pat1);
> $ret2 = gsr_match($string, $Pat2);
>
> if( $ret1 && $ret2 )
> {
> if( $start_flag == false )
> {
> echo "<P>First QnA found! Don't write array!";
> $start_flag = true;
> }
>
> if( $start_flag == true )
> {
> echo "<P>Second QnA found! Write array!";
> write_array( $aNEW );
> $aNEW = zero_array( $aNEW );
> }
> }
>
> $aNEW[] = $string;
>
> return;
>}
>
>
>
--- End Message ---
--- Begin Message ---
Here's something I'd do:
$tmp = 1;
for(loopconditions){
[do stuff];
if($tmp > 1){
iterations is not the first time through
} else {
this is the first iteration of the loop
}
$tmp++;
}
-M
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 10:04 AM
To: Herhuth, Ron; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
I don't want to break from the loop. I want to loop the entire file. The
problem is: the first time i find a match = i do nothing, append to array.
the second, third, fourth, .... and so on = I write the array, clear it and
append to it.
-----Original Message-----
From: Herhuth, Ron [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:08 AM
To: Gerardo Rojas
Subject: Re: [PHP-WIN] Looping problem
Can't you just insert a "Break;" when condition are met? This will break
out of the loop.
Ron
>From: Gerardo Rojas
>To: [EMAIL PROTECTED]
>Sent: 09/25/2003 10:04 AM
>I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria is
met. The problem I'm having is the first time my criteria is met, I don't
want to write out the array, only the subsequent times my criteria is met;
do I want to write out the array. Any suggestions?
>
>----------------------
>
>function parse_qnas($string, $path, $start_flag )
>{
> global $aNEW;
>
> $Pat1 = "Q";
> $Pat2 = "?";
> $aTmp = array();
>
> $ret1 = gsr_match_case_sensitive($string, $Pat1);
> $ret2 = gsr_match($string, $Pat2);
>
> if( $ret1 && $ret2 )
> {
> if( $start_flag == false )
> {
> echo "<P>First QnA found! Don't write array!";
> $start_flag = true;
> }
>
> if( $start_flag == true )
> {
> echo "<P>Second QnA found! Write array!";
> write_array( $aNEW );
> $aNEW = zero_array( $aNEW );
> }
> }
>
> $aNEW[] = $string;
>
> return;
>}
>
>
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Instead of testing whether or not it is the first time through the loop
every time why not just enter the loop after the first read?
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 10:04 AM
To: Herhuth, Ron; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
I don't want to break from the loop. I want to loop the entire file. The
problem is: the first time i find a match = i do nothing, append to array.
the second, third, fourth, .... and so on = I write the array, clear it and
append to it.
-----Original Message-----
From: Herhuth, Ron [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:08 AM
To: Gerardo Rojas
Subject: Re: [PHP-WIN] Looping problem
Can't you just insert a "Break;" when condition are met? This will break
out of the loop.
Ron
>From: Gerardo Rojas
>To: [EMAIL PROTECTED]
>Sent: 09/25/2003 10:04 AM
>I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria is
met. The problem I'm having is the first time my criteria is met, I don't
want to write out the array, only the subsequent times my criteria is met;
do I want to write out the array. Any suggestions?
>
>----------------------
>
>function parse_qnas($string, $path, $start_flag )
>{
> global $aNEW;
>
> $Pat1 = "Q";
> $Pat2 = "?";
> $aTmp = array();
>
> $ret1 = gsr_match_case_sensitive($string, $Pat1);
> $ret2 = gsr_match($string, $Pat2);
>
> if( $ret1 && $ret2 )
> {
> if( $start_flag == false )
> {
> echo "<P>First QnA found! Don't write array!";
> $start_flag = true;
> }
>
> if( $start_flag == true )
> {
> echo "<P>Second QnA found! Write array!";
> write_array( $aNEW );
> $aNEW = zero_array( $aNEW );
> }
> }
>
> $aNEW[] = $string;
>
> return;
>}
>
>
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Forget my previous response, I misread your post...
-----Original Message-----
From: Croskerry, Dan [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 10:22 AM
To: [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
Instead of testing whether or not it is the first time through the loop
every time why not just enter the loop after the first read?
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 10:04 AM
To: Herhuth, Ron; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
I don't want to break from the loop. I want to loop the entire file. The
problem is: the first time i find a match = i do nothing, append to array.
the second, third, fourth, .... and so on = I write the array, clear it and
append to it.
-----Original Message-----
From: Herhuth, Ron [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:08 AM
To: Gerardo Rojas
Subject: Re: [PHP-WIN] Looping problem
Can't you just insert a "Break;" when condition are met? This will break
out of the loop.
Ron
>From: Gerardo Rojas
>To: [EMAIL PROTECTED]
>Sent: 09/25/2003 10:04 AM
>I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria is
met. The problem I'm having is the first time my criteria is met, I don't
want to write out the array, only the subsequent times my criteria is met;
do I want to write out the array. Any suggestions?
>
>----------------------
>
>function parse_qnas($string, $path, $start_flag )
>{
> global $aNEW;
>
> $Pat1 = "Q";
> $Pat2 = "?";
> $aTmp = array();
>
> $ret1 = gsr_match_case_sensitive($string, $Pat1);
> $ret2 = gsr_match($string, $Pat2);
>
> if( $ret1 && $ret2 )
> {
> if( $start_flag == false )
> {
> echo "<P>First QnA found! Don't write array!";
> $start_flag = true;
> }
>
> if( $start_flag == true )
> {
> echo "<P>Second QnA found! Write array!";
> write_array( $aNEW );
> $aNEW = zero_array( $aNEW );
> }
> }
>
> $aNEW[] = $string;
>
> return;
>}
>
>
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Mike,
thanks, I was passing in a variable, which somehow would get reset. this simple
structure makes it plain to see!
-----Original Message-----
From: Mike Brum [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:12 AM
To: Gerardo Rojas; 'Herhuth, Ron'; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
Here's something I'd do:
$tmp = 1;
for(loopconditions){
[do stuff];
if($tmp > 1){
iterations is not the first time through
} else {
this is the first iteration of the loop
}
$tmp++;
}
-M
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 10:04 AM
To: Herhuth, Ron; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Looping problem
I don't want to break from the loop. I want to loop the entire file. The
problem is: the first time i find a match = i do nothing, append to array.
the second, third, fourth, .... and so on = I write the array, clear it and
append to it.
-----Original Message-----
From: Herhuth, Ron [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 9:08 AM
To: Gerardo Rojas
Subject: Re: [PHP-WIN] Looping problem
Can't you just insert a "Break;" when condition are met? This will break
out of the loop.
Ron
>From: Gerardo Rojas
>To: [EMAIL PROTECTED]
>Sent: 09/25/2003 10:04 AM
>I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria is
met. The problem I'm having is the first time my criteria is met, I don't
want to write out the array, only the subsequent times my criteria is met;
do I want to write out the array. Any suggestions?
>
>----------------------
>
>function parse_qnas($string, $path, $start_flag )
>{
> global $aNEW;
>
> $Pat1 = "Q";
> $Pat2 = "?";
> $aTmp = array();
>
> $ret1 = gsr_match_case_sensitive($string, $Pat1);
> $ret2 = gsr_match($string, $Pat2);
>
> if( $ret1 && $ret2 )
> {
> if( $start_flag == false )
> {
> echo "<P>First QnA found! Don't write array!";
> $start_flag = true;
> }
>
> if( $start_flag == true )
> {
> echo "<P>Second QnA found! Write array!";
> write_array( $aNEW );
> $aNEW = zero_array( $aNEW );
> }
> }
>
> $aNEW[] = $string;
>
> return;
>}
>
>
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I'm not sure I understand what you want.
You mean you write out what you find between each two times your criteria is
met ?
Luis
----- Original Message -----
From: "Gerardo Rojas" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, September 25, 2003 2:57 PM
Subject: [PHP-WIN] Looping problem
I'm looping through a file, parsing each line of text. I have a global
array that i append each line to. When my criteria is met. I mark that
line. This line will begin an array that I will later write out. After
writing out the array I zap it and reuse it for the next time my criteria is
met. The problem I'm having is the first time my criteria is met, I don't
want to write out the array, only the subsequent times my criteria is met;
do I want to write out the array. Any suggestions?
----------------------
function parse_qnas($string, $path, $start_flag )
{
global $aNEW;
$Pat1 = "Q";
$Pat2 = "?";
$aTmp = array();
$ret1 = gsr_match_case_sensitive($string, $Pat1);
$ret2 = gsr_match($string, $Pat2);
if( $ret1 && $ret2 )
{
if( $start_flag == false )
{
echo "<P>First QnA found! Don't write array!";
$start_flag = true;
}
if( $start_flag == true )
{
echo "<P>Second QnA found! Write array!";
write_array( $aNEW );
$aNEW = zero_array( $aNEW );
}
}
$aNEW[] = $string;
return;
}
--- End Message ---
--- Begin Message ---
I'm trying to upgrade from PHP 4.0x to 4.3.3. I get the following error
when trying to run a script in my browser:
The procedure entry point_persist_alloc could not be located in the
dynamic link library php4ts.dll.
I'm running Apache 1.3.x (CGI) on Win 2k. I've copied php.ini-dist and
all dll's to the same locations as the original (4.0.x) files and made
the suggested changes to the .ini files. I'm not sure what I may have
misses. Any suggestions would be appreciated.
--- End Message ---
--- Begin Message ---
try using php includes for each section, and have the refresh rate set on
each individual source page.
----------------------------------------------------------------
Ryan Vesely
Sales Engineer
Pinnacor
685 Market Street, Suite 500
San Francisco, CA 94105
tel 415.369.4762
fax 415.512.2085
www.pinnacor.com <http://www.pinnacor.com/>
The preceding e-mail message contains privileged, confidential information.
Intended conveyance is only to designated and named recipient(s). If you
feel that you may have received this message in error or if you are not the
named recipient, please notify Pinnacor at once at the sender's email
address, or call 212.691.7900. Unauthorized use, dissemination, distribution
or reproduction of this message is strictly prohibited and may be unlawful.
-----Original Message-----
From: ascll [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 1:48 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Refresh php section
===== start Test.php =====
// Section-A
<?php
...
?>
// Section-B
<?php
...
?>
// Section-C
<?php
...
?>
// Section-D
<?php
...
?>
===== end Test.php =====
Greetings,
It that a way for me to reload Section-A's php codes every 1-second and
Section-D's php codes every 5-second, that belongs to the SAME php file, say
"test.php"?
Thanks in advance.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
I'm am able to open the file read and write to it. The problem is that I want to
replace a line of text with another line. My function is actually writing my new line
after the line I wanted to change. Can we do arithmetic on the $fd (file handle or
file descriptor)? To tell PHP to write where ( $fd - 1 ) points to?
--
Gerardo S. Rojas
mailto: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
I guess this all depends on how you're writing to the file. Without code,
I'm not sure what the specific problem is.
One way to do this would be to read the file into an array and replace the
line in that array. Then, write the newly constructed array to file. This
way, at write time, the former data no longer exists.
-M
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 2:09 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Writing to a file
I'm am able to open the file read and write to it. The problem is that I
want to replace a line of text with another line. My function is actually
writing my new line after the line I wanted to change. Can we do arithmetic
on the $fd (file handle or file descriptor)? To tell PHP to write where (
$fd - 1 ) points to?
--
Gerardo S. Rojas
mailto: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
I can't write the entire file. The page has Design Time Controls. If I rewrite the
entire page this controls get messed up. I only want to search for the CSS link in
the html header and change it to the correct CSS link.
Here is a snippet of the code
---
// loop through the file
while( ! feof ($fd) )
{
$buffer = fgets($fd);
$aRetVal = parse_css($buffer, $path, $css, $aRetVal);
if( sizeof($aRetVal) == 2 )
{
fwrite( $fd, $aRetVal[0] );
break;
}
--
-----Original Message-----
From: Mike Brum [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 3:11 PM
To: Gerardo Rojas; [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Writing to a file
I guess this all depends on how you're writing to the file. Without code,
I'm not sure what the specific problem is.
One way to do this would be to read the file into an array and replace the
line in that array. Then, write the newly constructed array to file. This
way, at write time, the former data no longer exists.
-M
-----Original Message-----
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 25, 2003 2:09 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Writing to a file
I'm am able to open the file read and write to it. The problem is that I
want to replace a line of text with another line. My function is actually
writing my new line after the line I wanted to change. Can we do arithmetic
on the $fd (file handle or file descriptor)? To tell PHP to write where (
$fd - 1 ) points to?
--
Gerardo S. Rojas
mailto: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Hello all,
I have a strange problem request.
I manage an FTP only server. This server is a Windows
2003 Advanced server. On it I run IIS 5.0 and PHP
4.3.2 for Win32. I am also using Windows
authentication. This is I think what is causing the
issue. This and the Windows function ‘tmpfile()’.
I have a Web page that will allow certain users once
they connect on my network to perform a pass-thru FTP
to a remote system on the Internet. I did this because
my company does not allow direct FTP through the
firewall. So now I can control the users access to
certain hosts. From what I understand about PHP it
will perform the FTP task like say a directory listing
and write this to a temp file then PHP will build the
output based on the contents of the temp file.
Normally this works great. What I mean is for a user
that actually logs onto the server via the console or
Term services this works. But since the users are
actual account but not ever connecting via the console
their temp folder and various other environments under
their %USERPROFILE% are never created. To be even most
specific I have an admin level account that has a TEMP
environment variable defined as ‘%USERPROFILE%/Local
Settings/Temp’. The ‘%USERPROFILE%’ variable is
usually something like ‘C:\Documents and
Settings\<User name>\’. I have over 1800 accounts on
the server and most of these accounts need this
ability. I have tried setting the ENV variables TMP
and TEMP to point to another folder and can not figure
out how to override the ‘tmpfile()’
In an old version of PHP (4.3.0RC2) I actually
downloaded the complete source and built my own
php.exe. I then traced through to the section in
‘ext/ftp.c’ where the PHP function ‘ftp_rawlist()’ was
handled. Found that this function called another
function, ‘ftp_genlist()’. It is inside this function
where the call was bring made to ‘tmpfile()’. If the
call to ‘tmpfile()’ aborts and returns NULL.
I put in logic to provide an override to this.
Basically, if the parameter ‘FORCE_TMP_DIR’ was
defined in the php.ini configuration file and the path
was valid the parser would use this as the temp folder
instead of the call to ‘tmpfile()’.
This seemed to work. Problem is being able to upgrade.
I know this is a MS issue and not particularly a PHP
problem or bug.
I would like to see if anyone has more insight into
this issue or other suggestions. If not I would like
to get code modification into the general source
distribution.
Paul
__________________________________
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
--- End Message ---
--- Begin Message ---
I running a php script on Linux box and I'm having problems with permissions
...
I can upload a file to the same directory ... I just can't get php to open a
file.
here is my code ..
$profilename="/home/jwd/html/HeadHunter/".$FIRSTNAME."_".$LASTNAME."_MemberP
rofile.html";
$htmlfile=fopen($profilename,"w+b");
any ideas ??
Thanks !
Rob Hermann
[EMAIL PROTECTED]
--- End Message ---