php-windows Digest 2 Oct 2002 09:00:36 -0000 Issue 1367

Topics (messages 16107 through 16124):

Re: dynamic combo boxes
        16107 by: Luis Ferro
        16109 by: Scott Carr

Re: using exec on WIMP
        16108 by: J Wynia

Re: Any Squirrelmail users running on Windows NT 5 under IIS 5?
        16110 by: Scott Carr

What information would you like to see on PHP and Windows?
        16111 by: J Wynia
        16118 by: Manuel Lemos

i need help with an undefined variable
        16112 by: Anyang
        16114 by: Peter Houchin
        16115 by: Anyang
        16116 by: Peter Houchin

Apache 1.3.x PHP module and php.ini precedence
        16113 by: J Wynia

MS exchange mail function
        16117 by: CENGIZ SOYUKAN
        16119 by: Dash McElroy

Re: i have a problem,can hlep?
        16120 by: Seung Hwan Kang

Re: Unable to load dlls
        16121 by: Seung Hwan Kang

Re: Help with Java extension
        16122 by: Seung Hwan Kang

problems with ntext DB field in sql query
        16123 by: Gard Rødahl

exec() on WIMP systems
        16124 by: MWCT - Markus Weber

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 ---
The line

     echo "<br>";

has no effect except filling space in the file...

To get a value try

        echo "<option value='$optionval'>$optionval</option>";

Cheers...
Luis Ferro



Tim Blackwell wrote:

>okay, i figured out the combo thing--code is below.  it actually wasn't too
>difficult with some help!
>
>but, when i use tutname i get an undefined variable
>
>it works fine with the static combo that i was using?
>
>can you think of any reason for this?
>
>function load_combobox()
>{
>?>
><?
> @ $db = mysql_pconnect("localhost", "", "");
>  if (!$db)
>  {
>     echo "Error: Could not connect to database.  Please try again later.";
>     exit;
>  }
>
>  mysql_select_db("tutorial");
>  $options = "select distinct tutorialname from tutorial";
>  $optres = mysql_query($options);
>
>  $opt_results = mysql_num_rows($optres);
>  echo "<select name=tutname>";
>  for ($i=0; $i <$opt_results; $i++)
>  {
>     $optrow = mysql_fetch_array($optres);
>     $optionval = stripslashes($optrow["tutorialname"]);
>     echo "<option>$optionval</option>";
>     echo "<br>";
>  }
>     echo "</select>";
>?>
><?
>}
>
>
>tim
>"Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
>[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>  
>
>>hi--i'm having some trouble autoloading a combo box with a mysql column.
>>could someone help please
>>
>>thanks,
>>
>>tim
>>
>>
>>    
>>
>
>
>
>  
>



---
[This E-mail scanned for viruses by Declude Virus]

--- End Message ---
--- Begin Message ---
How are you trying to access the variable from the called page?

Make sure you use $_GET['tutname'] or $_POST['tutname'] to access the resulting
variable.  

Also, what does your form tag state as method and post attribs?
-- 
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org/


Quoting Tim Blackwell <[EMAIL PROTECTED]>:

> okay, i figured out the combo thing--code is below.  it actually wasn't too
> difficult with some help!
> 
> but, when i use tutname i get an undefined variable
> 
> it works fine with the static combo that i was using?
> 
> can you think of any reason for this?
> 
> function load_combobox()
> {
> ?>
> <?
>  @ $db = mysql_pconnect("localhost", "", "");
>   if (!$db)
>   {
>      echo "Error: Could not connect to database.  Please try again later.";
>      exit;
>   }
> 
>   mysql_select_db("tutorial");
>   $options = "select distinct tutorialname from tutorial";
>   $optres = mysql_query($options);
> 
>   $opt_results = mysql_num_rows($optres);
>   echo "<select name=tutname>";
>   for ($i=0; $i <$opt_results; $i++)
>   {
>      $optrow = mysql_fetch_array($optres);
>      $optionval = stripslashes($optrow["tutorialname"]);
>      echo "<option>$optionval</option>";
>      echo "<br>";
>   }
>      echo "</select>";
> ?>
> <?
> }
> 
> 
> tim
> "Tim Blackwell" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > hi--i'm having some trouble autoloading a combo box with a mysql column.
> > could someone help please
> >
> > thanks,
> >
> > tim
> >
> >
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
--- End Message ---
--- Begin Message ---
Mwct - Markus Weber wrote:
> Hi,
> 
> may be someone can help me:
> 
> I want to use the exec() function to run an executable as background
> process. This means my php script should not wait for the end of the
> background process. I tried a lot but without success. My script always wait
> for the end of the background process.
> 
> My php script contains this line:
> 
> exec(getenv("COMSPEC").' /c c:\mysql\bin\mysql.exe <
> E:/Inetpub/wwwroot/update/load_logs.sql >
> E:/Inetpub/wwwroot/update/load_logs.log');
> 
> Regarding to the online documentation on php.net all screen output is
> redirected to the file "load_logs.log".
> 
> When I type in this string via command line the execution is successful.
> 
> As I learned from the online documentation on php.net is that on LINUX
> systems something like "2>1&" or ">/dev/null" will help - but not on
> Windows.
> 
> Any ideas ?

If this script will only ever be run on Windows servers, you can use the 
Windows-specific shell capabilities through the COM interface.

$shell = new COM("WScript.Shell") or die("This thing requires Windows 
Scripting Host");
$shell -> Run($commandinquotes,$windowstate,$wait);

Replace $commandinquotes with your commandline that you want to run. Put 
it in single quotes. Replace $windowstate with 1, 2 or 3 for normal DOS 
window, minimized or maximized and $wait with 0 in your case because you 
don't want PHP to wait for the process to finish.

You could abstract it further by turning the COM "Run" into your own 
function. The below code hasn't been tested.

function win_exec($command, $windowstate, $wait) {
        $shell = new COM("WScript.Shell") or die("This thing requires Windows 
Scripting Host");
$shell -> Run($commandinquotes,$windowstate,$wait);
}

$command = getenv("COMSPEC").' /c c:\mysql\bin\mysql.exe <
 > E:/Inetpub/wwwroot/update/load_logs.sql >
 > E:/Inetpub/wwwroot/update/load_logs.log';

win_exec($command, "2", "0");

--- End Message ---
--- Begin Message ---
Actually, the only error you need to worry about is the first one that pops up
at the top of the page.  After that, the resulting errors are because of the
first error being displayed.

It may help.
-- 
Scott Carr
OpenOffice.org
Documentation Maintainer
http://documentation.openoffice.org/


Quoting "R.S. Herhuth" <[EMAIL PROTECTED]>:

> 
> I'm trying to get Squirrel Mail running under Windows NT 5 running IIS 5
> and I was wondering if someone might be able to give me a hand. 
> Specifically I'm getting a ton of "Warning: Cannot add header
> information - headers already sent..." errors.  I was wondering if there
> is a setting (or settings) that I might need to send to get this thing
> running.
> 
> Thanks,
> Ron
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 


-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
--- End Message ---
--- Begin Message ---
I'm looking for feedback on Windows-specific issues and PHP for 
inclusion in PHP articles and/or books. Since most of the information 
out there on PHP is targeted at Linux/BSD/Unix users, I'm looking to 
users of PHP on Windows to see what information YOU'D like to see 
written up that isn't just a rehash of the Linux PHP information or 
another copy of the same PHP/MS Word example that everyone publishes 
when explaining PHP and COM.

Feel free to respond to me privately.

J Wynia
[EMAIL PROTECTED]

--- End Message ---
--- Begin Message ---
Hello,

On 10/01/2002 06:31 PM, J Wynia wrote:
> I'm looking for feedback on Windows-specific issues and PHP for 
> inclusion in PHP articles and/or books. Since most of the information 
> out there on PHP is targeted at Linux/BSD/Unix users, I'm looking to 
> users of PHP on Windows to see what information YOU'D like to see 
> written up that isn't just a rehash of the Linux PHP information or 
> another copy of the same PHP/MS Word example that everyone publishes 
> when explaining PHP and COM.
> 
> Feel free to respond to me privately.

NTLM authentication is a frequent Windows issue.

-- 

Regards,
Manuel Lemos

--- End Message ---
--- Begin Message ---
I wrote a php script for a page that I hosted on a separate host and it
worked perfectly.  I recently installed php 4 onto my windows XP Pro build
2600 computer and it seems to work until I try to use varuables that look to
the address bar for reference.

I wanted to make it so that when somebody clicks "game" it would go to
www.mywebsite.com/index.php?game=example and that would merely replace the
body with the example page.  It worked on my other host but when I tried it
on my computer it says:

Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line 5

Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line 8

My script says:

<?php

include("head.html");

if (!$game) {
include("public.html");
}
if ($game != NULL && $op != NULL) {
include("http://mywebsite.com/example/"; . "$game" . ".html");
}


any ideas?  please help.  if there's any script i can type and have all the
pages require it so that this can be defined that would work great.


--- End Message ---
--- Begin Message ---
how r u getting $game? that's the undefind var.

> -----Original Message-----
> From: Anyang [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 2 October 2002 11:38 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] i need help with an undefined variable
>
>
> I wrote a php script for a page that I hosted on a separate host and it
> worked perfectly.  I recently installed php 4 onto my windows XP Pro build
> 2600 computer and it seems to work until I try to use varuables
> that look to
> the address bar for reference.
>
> I wanted to make it so that when somebody clicks "game" it would go to
> www.mywebsite.com/index.php?game=example and that would merely replace the
> body with the example page.  It worked on my other host but when
> I tried it
> on my computer it says:
>
> Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line 5
>
> Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line 8
>
> My script says:
>
> <?php
>
> include("head.html");
>
> if (!$game) {
> include("public.html");
> }
> if ($game != NULL && $op != NULL) {
> include("http://mywebsite.com/example/"; . "$game" . ".html");
> }
>
>
> any ideas?  please help.  if there's any script i can type and
> have all the
> pages require it so that this can be defined that would work great.
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
Like i said, the other server understood it at a function of the address bar
so if index.php?game=foobar then $game = foobar and it would refresh the
page with the foobar page in the center.  This is what I want to do.

"Peter Houchin" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> how r u getting $game? that's the undefind var.
>
> > -----Original Message-----
> > From: Anyang [mailto:[EMAIL PROTECTED]]
> > Sent: Wednesday, 2 October 2002 11:38 AM
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] i need help with an undefined variable
> >
> >
> > I wrote a php script for a page that I hosted on a separate host and it
> > worked perfectly.  I recently installed php 4 onto my windows XP Pro
build
> > 2600 computer and it seems to work until I try to use varuables
> > that look to
> > the address bar for reference.
> >
> > I wanted to make it so that when somebody clicks "game" it would go to
> > www.mywebsite.com/index.php?game=example and that would merely replace
the
> > body with the example page.  It worked on my other host but when
> > I tried it
> > on my computer it says:
> >
> > Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line
5
> >
> > Notice: Undefined variable: game in C:\Xitami\webpages\index.php on line
8
> >
> > My script says:
> >
> > <?php
> >
> > include("head.html");
> >
> > if (!$game) {
> > include("public.html");
> > }
> > if ($game != NULL && $op != NULL) {
> > include("http://mywebsite.com/example/"; . "$game" . ".html");
> > }
> >
> >
> > any ideas?  please help.  if there's any script i can type and
> > have all the
> > pages require it so that this can be defined that would work great.
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
>


--- End Message ---
--- Begin Message ---
have u tried using $_GET["game"] or $_POST["game"] ? so your code is

<?php
> > >
> > > include("head.html");
> > >
> > > if (!$_GET["game"]) {
> > > include("public.html");
> > > }
> > > if ($_GET["game"] != NULL && $op != NULL) {
> > > include("http://mywebsite.com/example/"; . "$game" . ".html");
> > > }

or post instead of get in there?

> -----Original Message-----
> From: Anyang [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 2 October 2002 1:43 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP-WIN] i need help with an undefined variable
>
>
> Like i said, the other server understood it at a function of the
> address bar
> so if index.php?game=foobar then $game = foobar and it would refresh the
> page with the foobar page in the center.  This is what I want to do.
>
> "Peter Houchin" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > how r u getting $game? that's the undefind var.
> >
> > > -----Original Message-----
> > > From: Anyang [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, 2 October 2002 11:38 AM
> > > To: [EMAIL PROTECTED]
> > > Subject: [PHP-WIN] i need help with an undefined variable
> > >
> > >
> > > I wrote a php script for a page that I hosted on a separate
> host and it
> > > worked perfectly.  I recently installed php 4 onto my windows XP Pro
> build
> > > 2600 computer and it seems to work until I try to use varuables
> > > that look to
> > > the address bar for reference.
> > >
> > > I wanted to make it so that when somebody clicks "game" it would go to
> > > www.mywebsite.com/index.php?game=example and that would merely replace
> the
> > > body with the example page.  It worked on my other host but when
> > > I tried it
> > > on my computer it says:
> > >
> > > Notice: Undefined variable: game in
> C:\Xitami\webpages\index.php on line
> 5
> > >
> > > Notice: Undefined variable: game in
> C:\Xitami\webpages\index.php on line
> 8
> > >
> > > My script says:
> > >
> > > <?php
> > >
> > > include("head.html");
> > >
> > > if (!$game) {
> > > include("public.html");
> > > }
> > > if ($game != NULL && $op != NULL) {
> > > include("http://mywebsite.com/example/"; . "$game" . ".html");
> > > }
> > >
> > >
> > > any ideas?  please help.  if there's any script i can type and
> > > have all the
> > > pages require it so that this can be defined that would work great.
> > >
> > >
> > >
> > > --
> > > 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 trying to figure out the rules that PHP uses when looking for a 
php.ini file. In what exact order does it check what specific places. 
I've got numerous php.ini files sitting outside my "PHP" setup and when 
Apache is launched it's picking up one that doesn't seem to be in the 
"path" that I would expect PHP to look.

If I need to dig in the PHP source, can someone give me a pointer as to 
where to start?

J Wynia
phpgeek.com

--- End Message ---
--- Begin Message ---
Hi,

I use ISS and PHP 4.2 . I can send an e-mail using mail function to intenal
users our domain user but if I try to send an e-mail to outside of the our
domain I got the following error message. 

Your message did not reach some or all of the intended recipients.

      Subject:  Blah Blah
      Sent:     02.10.2002 13:40

The following recipient(s) could not be reached:

      [EMAIL PROTECTED] on 02.10.2002 08:36
            The recipient name is not recognized
        The MTS-ID of the original message is: c=US;a=
;p=TEI;l=PRIORIS0210020535TCPTQPC7
            MSEXCH:IMS:TEI:MIS:PRIORIS 0 (000C05A6) Unknown Recipient

 
$header = "From: [EMAIL PROTECTED]";
$to = "[EMAIL PROTECTED]";   /*  if send to [EMAIL PROTECTED]  no
problem*/
$message = "Test!";
$subject = "Blah Blah";
mail( $to, $subject, $message, $header );



Thanks.

--- End Message ---
--- Begin Message ---
I've seen (and experienced) this problem before. I think that Exchange
does /not/ like it when you try to do that. I think it thinks you're
trying to use it as an open relay host (a very Bad Thing).

I have not tried to remedy the situation before, but you may be able to
use MS's instructions on how to lock down your open relay (I searched
Google for exchange open relay and I get lots of results) and set it so
that your webserver/php host can "relay" mail. Just be careful........

Here's the link I used to lock down my Exchange server:

  http://www.exchangeadmin.com/Articles/Index.cfm?ArticleID=7696

In theory, you'd just add your IIS server to this screen:

  http://www.exchangeadmin.com/Files/04/7696/Screen_04.gif

and restart your IMC service and you should be good to go.

Of course, this is in theory as I haven't tried it.

-Dash

Everybody wants to go to heaven, but nobody wants to die.

On Wed, 2 Oct 2002, CENGIZ SOYUKAN wrote:

> Hi,
>
> I use ISS and PHP 4.2 . I can send an e-mail using mail function to intenal
> users our domain user but if I try to send an e-mail to outside of the our
> domain I got the following error message.
>
> Your message did not reach some or all of the intended recipients.
>
>       Subject:        Blah Blah
>       Sent:   02.10.2002 13:40
>
> The following recipient(s) could not be reached:
>
>       [EMAIL PROTECTED] on 02.10.2002 08:36
>             The recipient name is not recognized
>       The MTS-ID of the original message is: c=US;a=
> ;p=TEI;l=PRIORIS0210020535TCPTQPC7
>             MSEXCH:IMS:TEI:MIS:PRIORIS 0 (000C05A6) Unknown Recipient
>
>
> $header = "From: [EMAIL PROTECTED]";
> $to = "[EMAIL PROTECTED]";   /*  if send to [EMAIL PROTECTED]  no
> problem*/
> $message = "Test!";
> $subject = "Blah Blah";
> mail( $to, $subject, $message, $header );
>
>
>
> Thanks.
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---
--- Begin Message ---
"Konchim" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I using windows apache 1.3
> php 4.2.3
> But when i using <?echo $var?>

if you use POST method

<? echo $_POST["var"]; ?>

if you use GET method

<? echo $_GET["var"]; ?>


> It can not be get a value,what happen?
> Is it my php install problem or aother problem
> Please help!
> Thank You
>
> Konchim
>
>


--- End Message ---
--- Begin Message ---
Let's say if you are using Aapche web server 2.0.42 and your XP is located
onto c:\windows

1. copy d:\php\php4ts.dll to c:\windows\system32
2. copy d:\php\php.ini-dist to c:\wiindows and rename it to php.ini
3. edit php.ini
...
extension_dir = c:/php/extensions
upload_tmp_dir = c:\temp
session.save_path = c:\temp

and then save it.

4. Once you installed your Apache web server. You still need to edit
httpd.conf file.

LoadModule php4_module c:/php/sapi/php4apache2.dll

DocumentRoot "D:/Apache2/htdocs"

DirectoryIndex index.html index.html.var index.php

# To use PHP scripts
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

5. create one sample php file called test.php

<?
  phpinfo();
?>

and put it in "D:/Apache2/htdocs/test.php"

6. Now, it's time to run it.  You your Internet brower and type it
"localhot/test.php".

Good luck

"Douglas F. Keim" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I have tried to install PHP on XP Pro - Installed on D:\PHP.
>
> tried the http://localhost/test.php but keep getting the error messages
that
> it was unable to load a whole bunch of dlls.
>
> This certainly is not a typical windows install.  Too much manual stuff to
> do apparently.
>
>


--- End Message ---
--- Begin Message ---
I'm not sure how to answer your question but I can show you my
configurations.  I'm happy to see someone like me.

Java SDK 1.4.1
PHP 4.2.4-dev
W2K Pro

Here is my configures.

php.ini

extension_dir = c:/php/extensions  # i know it looks strange but it works.
you can also use c:\php\extensions

extension=php_java.dll

[Java]
java.class.path = "c:\php\extensions\php_java.jar;d:\apache2\htdocs\classes"
java.home = "c:\j2sdk1.4.1\bin"
java.library = "c:\j2sdk1.4.1\jre\bin\client\jvm.dll"
java.library.path = "c:\php\extensions"

I place all java classes into d:\apache2\htdocs\classes so that it runs like
Javabeans.  Only problem is that JVM is not always working properly (somehow
?).  I found by myself JVM client is faster than server in java.library
configure.  In my opinion, Java and PHP is NOT yet stable.  My application
runs smoothly but it does not sometimes.

I hope this helps you.

"Luke Van Blerk" <[EMAIL PROTECTED]> wrote in message
news:004401c25bc3$d86a9850$0100a8c0@luke...
> Hi
>
> I'm having trouble getting my Java extension to work consistently with
> Apache. Everything works fine for a minute or 2 before it just dies and
says
> "Unable to create Java Virtual Machine...", etc. Also only one browser
> window will show the working PHP script at a time.
>
> My configuration is Windows XP, Apache 1.3.24, PHP 4.2.2, Sun JDK 1.3.1.
>
> My php.ini looks like this:
>
> extension_dir = "C:\windows\system32"
>
> [Java]
> java.class.path = "C:\php\extensions\php_java.jar;c:\php\classes;."
> java.home = "C:\jdk1.3.1\bin;C:\jdk1.3.1\jre\bin;c:\jdk1.3.1"
> java.library.path = "c:\windows\system32"
> java.library = "C:\jdk1.3.1\jre\bin\hotspot\jvm.dll"
>
> Any suggestions?
>
> Thanks in advance
> Luke
>


--- End Message ---
--- Begin Message ---
I get the following error:

Warning: MS SQL message: Unicode data in a Unicode-only collation or ntext
data cannot be sent to clients using DB-Library (such as ISQL) or ODBC
version 3.7 or earlier.

when running a query from the php script.
One of the fields in the table being queried is of a NTEXT type which it has
to be.
How can i work around this problem? I've tried to set the textsize and
textlimit to 65536 in the php.ini file, but I still
get the same error message.

Thanks
Gard


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.393 / Virus Database: 223 - Release Date: 30.09.2002


--- End Message ---
--- Begin Message ---
Hi,

may be someone can help me:

I want to use the exec() function to run an executable as background
process. This means my php script should not wait for the end of the
background process. I tried a lot but without success. My script always wait
for the end of the background process.

My php script contains this line:

exec(getenv("COMSPEC").' /c c:\mysql\bin\mysql.exe <
E:/Inetpub/wwwroot/update/load_logs.sql >
E:/Inetpub/wwwroot/update/load_logs.log');

Regarding to the online documentation on php.net all screen output is
redirected to the file "load_logs.log".

When I type in this string via command line the execution is successful.

As I learned from the online documentation on php.net is that on LINUX
systems something like "2>1&" or ">/dev/null" will help - but not on
Windows.

Any ideas ?

regards,
Markus Weber


--- End Message ---

Reply via email to