php-windows Digest 29 Apr 2002 13:52:46 -0000 Issue 1118

Topics (messages 13375 through 13384):

Running winamp thru php (was "executing an external program")
        13375 by: Ross Fleming
        13376 by: Ross Fleming

Re: [PHP-WINDOWS] why every page show "X-Powered-By: PHP/4.0RC1 Content-type:"
        13377 by: Robert Beenen

Re: executing an external program
        13378 by: rainer
        13379 by: rainer

PHP normal text to Unicode / UTF-16 (XML) -> Flash MX v6.0
        13380 by: Danny Asmussen

i'm stuck guys
        13381 by: Erik

php 4.1.2 / $_SESSION
        13382 by: Steff

Re: Showing a blob filed part II
        13383 by: Waldemar Brand Neto
        13384 by: George Nicolae

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 ---
Since giving Ranier advice on external programs, I've knocked up a simple
web-based interface for winamp that can be controlled over the internet
(useful in a networked flat where one PC is simply a music box, I can leave
apache running and remove the monitor/keyboard etc just to leave the box and
the speakers).  I'd started this project briefly a while ago (as some on the
list may remember) but gave up.  It works now, and I thought some people on
the list would appreciate a look at it.  (yes I know there are webbased
winamp controllers available, but where's the fun in that?.. ;)  )

Here's the php code for it

<<contents of index.php>>

<?
$directory = "D:/mp3s";   // Set the directory we're looking at..

if (isset($filename)) {
  $link = "d:\\mp3s\\";
  $link .= urldecode($filename);
  exec("COMMAND.COM /C START c:\progra~1\winamp\winamp.exe \"$link\" >NUL");
  header("Location:index.php?status=playing&arg=$filename");
}

if ($status=="playing") {
  $proper = urldecode($arg);
  echo "Now playing: <H3>$arg</H3>";
}

$count=0;
$handle=opendir($directory);
echo "Choose a song to play from <B>$directory</B>:<BR>";

while (false !== ($file = readdir($handle))) {
  if ($file != "." && $file != "..") {
    if (substr($file, -4)==".mp3"){
      // ignore any non-mp3 files
      $filelist[$count++] = $file;
    }
  }
}

closedir($handle);

sort ($filelist);  // alphabetize the files

for ($i=0; $i<$count; $i++) {
  $link = urlencode($filelist[$i]);
  echo "<A HREF=\"index.php?filename=$link\">$filelist[$i]</A><BR>";
}
?>

Ross

--- End Message ---
--- Begin Message ---
Apparently this doesn't work on win2k though, and replacing the line with
  exec("CMD /C START c:\progra~1\winamp\winamp.exe \"$link\" >NUL");
I'm told doesn't seem to work.

If anyone has suggestions, I'm open

R

-----Original Message-----
From: Ross Fleming [mailto:[EMAIL PROTECTED]]
Sent: 29 April 2002 03:53
To: PHP Windows mailing list
Subject: [PHP-WIN] Running winamp thru php (was "executing an external
program")


Since giving Ranier advice on external programs, I've knocked up a simple
web-based interface for winamp that can be controlled over the internet
(useful in a networked flat where one PC is simply a music box, I can leave
apache running and remove the monitor/keyboard etc just to leave the box and
the speakers).  I'd started this project briefly a while ago (as some on the
list may remember) but gave up.  It works now, and I thought some people on
the list would appreciate a look at it.  (yes I know there are webbased
winamp controllers available, but where's the fun in that?.. ;)  )

Here's the php code for it

<<contents of index.php>>

<?
$directory = "D:/mp3s";   // Set the directory we're looking at..

if (isset($filename)) {
  $link = "d:\\mp3s\\";
  $link .= urldecode($filename);
  exec("COMMAND.COM /C START c:\progra~1\winamp\winamp.exe \"$link\" >NUL");
  header("Location:index.php?status=playing&arg=$filename");
}

if ($status=="playing") {
  $proper = urldecode($arg);
  echo "Now playing: <H3>$arg</H3>";
}

$count=0;
$handle=opendir($directory);
echo "Choose a song to play from <B>$directory</B>:<BR>";

while (false !== ($file = readdir($handle))) {
  if ($file != "." && $file != "..") {
    if (substr($file, -4)==".mp3"){
      // ignore any non-mp3 files
      $filelist[$count++] = $file;
    }
  }
}

closedir($handle);

sort ($filelist);  // alphabetize the files

for ($i=0; $i<$count; $i++) {
  $link = urlencode($filelist[$i]);
  echo "<A HREF=\"index.php?filename=$link\">$filelist[$i]</A><BR>";
}
?>

Ross


--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
Make sure that all the paths in php.ini exist.
Had this same problem when using sessions, because the directory where the 
session data should be saved didn't exist.

Greetings,
  Robert

[EMAIL PROTECTED] (Jim Hearn) wrote in news:8ghnk3$6c5$[EMAIL PROTECTED]:

> Can you provide detailed instructions on how you got php4+apache+98
> running. Every time I try to load a .php page I get "fault caused by
> php4ts.dll." 
> 
> Running Win982ndEd + Apache1.3.12 with no problems (ColdFusion, Zope,
> etc., ok)
> 
> thanks
> Jim
> 
--- End Message ---
--- Begin Message ---
hey ross,
your suggested code
- exec("COMMAND.COM /C START c:\progra~1\micros~1\office\winword.exe
>NUL"); -
is trying to do something (starting winword?) without a result. the apache
hangs up!
i've heard that it makes a difference whether you have installed apache as
cgi or as a module.
i have it running as a module on win 2k!

a ) before reinstalling apache as cgi-version: do you have any idea if this
is true?
b) or do i have to configure apache (httpd.conf) and/or php.ini with special
parameters?

by the way: any html and/or php coded webpages are running without problems
on my installed localhost!

regards
Rainer

"Ross Fleming" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> OK, I've just found a way to do it (in the comments for exec() on the php
> webpage), however I DON'T know if it will work on Win2000, I'll let you
try,
> it works on win98 anyway:
>
> <?
> exec("COMMAND.COM /C START c:\progra~1\micros~1\office\winword.exe >NUL");
> ?>
>
> This opens winword and keeps it running and completes the web page too.
>
> If this doesn't work in win2K, maybe someone on this list may know an
> alternative?..
>
> Ross
>
> -----Original Message-----
> From: Rainer Bruch [mailto:[EMAIL PROTECTED]]
> Sent: 28 April 2002 23:30
> To: [EMAIL PROTECTED]
> Subject: AW: [PHP-WIN] Re: executing an external program
>
>
> hey ross,
> thanks for your help by sending this e-mail.
> maybe you have a solution for my problem described below?
> since you have kindly e-mailed to me i feel free to inform you as
following
> about the the e-mail
> conversation concerning this matter between mike flynn and myself.
> if you read this you can find that you are right, the server hangs up!
>
>
> "Rainer Bruch" <[EMAIL PROTECTED]> schreef in bericht
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > i am new in using and understanding php. need help in following issue:
> > opening (executing) an external program (not a file) like "winword.exe"
> with
> > php4.
> > my system-configuration:
> > - windows 2000
> > - php4 1.1.1
> > - winword execution program-path is:
> > "c:\programme\micosoft office\office\winword.exe"
> >
> > please, will somebody out there will help me with the complete php-code
> > like:
> > <?
> > "code to execute the winword-program";
> > ?>
> >
> > i have asked a so called specialist who gave the following (not
> functioning,
> > no error message) code:
> > <?
> > shell_exec("c:\programme\microsoft office\office\winword.exe");
> > ?>
> >
> > thanks to all who will help me
> > rainer
> >
> >
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>
>


--- End Message ---
--- Begin Message ---
hey ross,
the code i mentioned in the e-mail before is wrong. i tried. as you
suggested:
- exec("CMD /C START c:\progra~1\micros~1\office\winword.exe >NUL"); -
sorry for this wrong information by mistake.

Rainer


"Rainer" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> hey ross,
> your suggested code
> - exec("COMMAND.COM /C START c:\progra~1\micros~1\office\winword.exe
> >NUL"); -
> is trying to do something (starting winword?) without a result. the apache
> hangs up!
> i've heard that it makes a difference whether you have installed apache as
> cgi or as a module.
> i have it running as a module on win 2k!
>
> a ) before reinstalling apache as cgi-version: do you have any idea if
this
> is true?
> b) or do i have to configure apache (httpd.conf) and/or php.ini with
special
> parameters?
>
> by the way: any html and/or php coded webpages are running without
problems
> on my installed localhost!
>
> regards
> Rainer
>
> "Ross Fleming" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > OK, I've just found a way to do it (in the comments for exec() on the
php
> > webpage), however I DON'T know if it will work on Win2000, I'll let you
> try,
> > it works on win98 anyway:
> >
> > <?
> > exec("COMMAND.COM /C START c:\progra~1\micros~1\office\winword.exe
>NUL");
> > ?>
> >
> > This opens winword and keeps it running and completes the web page too.
> >
> > If this doesn't work in win2K, maybe someone on this list may know an
> > alternative?..
> >
> > Ross
> >
> > -----Original Message-----
> > From: Rainer Bruch [mailto:[EMAIL PROTECTED]]
> > Sent: 28 April 2002 23:30
> > To: [EMAIL PROTECTED]
> > Subject: AW: [PHP-WIN] Re: executing an external program
> >
> >
> > hey ross,
> > thanks for your help by sending this e-mail.
> > maybe you have a solution for my problem described below?
> > since you have kindly e-mailed to me i feel free to inform you as
> following
> > about the the e-mail
> > conversation concerning this matter between mike flynn and myself.
> > if you read this you can find that you are right, the server hangs up!
> >
> >
> > "Rainer Bruch" <[EMAIL PROTECTED]> schreef in bericht
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > i am new in using and understanding php. need help in following issue:
> > > opening (executing) an external program (not a file) like
"winword.exe"
> > with
> > > php4.
> > > my system-configuration:
> > > - windows 2000
> > > - php4 1.1.1
> > > - winword execution program-path is:
> > > "c:\programme\micosoft office\office\winword.exe"
> > >
> > > please, will somebody out there will help me with the complete
php-code
> > > like:
> > > <?
> > > "code to execute the winword-program";
> > > ?>
> > >
> > > i have asked a so called specialist who gave the following (not
> > functioning,
> > > no error message) code:
> > > <?
> > > shell_exec("c:\programme\microsoft office\office\winword.exe");
> > > ?>
> > >
> > > thanks to all who will help me
> > > rainer
> > >
> > >
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >
> >
> >
>
>


--- End Message ---
--- Begin Message ---
Hey there ...
 
I'm having a major problem, I have to generate a XML file encoded in
UTF-16
so Flash can read the XML file and decode it - and would be able to show
the
correct chars in every language (or atleast Lithuania, Czech and other
normal
language english).
 
I've tried so many things, mb_string extension seems to work fine but it
doesn't
generate "real" UTF-16 encoding. If I check a XML file in notepad and
save it as
unicode it works really great - but PHP just doesn't seem to do this.
 
Notepad creates a "header" like (2 bytes) a 0x0FFh and 0x0FEh in the
beginning
and some of the "wierd" chars is encoded a different way than PHP does
it.
 
I've tried the Iconv extension, which was a bitch to make it work - but
when PHP
didn't say any more errors it seemed to work, but again with small
errors ...
 
Anyone know how to make some normal chars (UTF-8 or normal string type)
to
UTF-16 in PHP.
 
Thanks :)
 
__________________________________________________________________
 
Danny Asmussen - Web developer
Emerge A/S
Gothersgade 14, 4
DK-1123 København K.

(+45) 333 66 555
__________________________________________________________________

 
--- End Message ---
--- Begin Message ---
hi,

that error indeed disapperars but now i cannot use  the html buttons anymore
when i click submit it keeps on showing me the same page over and over again
i created the script if the form is correctly fill in it should display a
message like
print "hi $name your message has been sended to me thank you ."; or
incompplete fields
print "oeps you forgot some requierd fields go back and fill in the complete
form please .";
but that doesn't happen anymore it shows the same page al the time........
info:
os:windows 2000 pro
server:Apache
phpversion 4.2.0
browser:internet explorer 6.0
daimned windows computers :-) i will buy mandrake linux soon so php runs
normal i think there is nothing wrong with php only windows and php doesn't
like eachother  haha :-)

the http 500 error is gone now ........ "see above"

regards from belgium
Erik


--- End Message ---
--- Begin Message ---
hi folks

i'm just about to experiment with the new handling of session vars 
($_SESSION[...]). now if i start with

session_start();
$_SESSION["remember_me"] = "steff";
session_save_close(); // tested with and without this function call

, the var value won't be set correctly. on a following page

print($_SESSION["remember_me"]);

doesn't print anything. even a

print_r($_SESSION);

only shows Array (). i admit i am fairly confused by information on 
register_globals (which is set to on in my php.ini) etc.

up to now i have worked with

session_start();
$remember_me = "steff";
session_register("remember_me");

which still works great. i'm working on w2k/php4.1.2/apache1.3.22. the 
session.[...] settings in my php.ini correspond those in 
php.ini-recommended.

i read about a bug(?) in connection with php4.1.2. and IIS5 
(http://www.php.net/manual/en/ref.session.php, posted on 01-Apr-2002). 
any known problems with apache (or php itself)? updating to 4.2 is no 
alternative (as posted on 07-Apr-2002 on the same page) since i have to 
respect some provicer-side dependencies ;-)

TIA for your comments

steff

--- End Message ---
--- Begin Message ---
Dear George thank´s again but  I don´t know how to save the image in another
file. I tryed this way. But my question is: This is the best way to do that?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
 <title>Upload.php</title>
</head>
<BODY BGCOLOR=#3366FF>
<CENTER>
   <?php
      echo "<FORM ENCTYPE=multipart/form-data ACTION=Upload1.php
METHOD=POST>";
         echo "<h1> Kompatscher & Cia Ltda </h1>";
         echo "<hr>";
         $con = mysql_connect("*************************) or die ("Erro ao
conectar!");
         mysql_select_db("***********", $con) or die ("Erro ao selecionar a
database!");
        $comando="SELECT
codigo,nome,material,temperatura,pressao,fluido,descricao,foto FROM cadgrupo
WHERE codigo=010";
        $res = mysql_query($comando,$con);
        $linha = mysql_fetch_array($res);
        echo "<TABLE ALIGN=CENTER>";
           echo "<tr>";
              echo "<td>";
              echo "Foto";
          echo "</td>";
          echo "<td>";
             $i= $linha['foto'] ;
            $num=rand(0,9999);
            $nome='temp'.$num.'.jpg';
            $myfile = fopen($nome,"w");
            $fp = fwrite($myfile,$i);
            fclose($myfile);
            $len=strlen($i);
            echo "<input type=image src=$nome border=0>";
          echo "</td>";
         echo "</tr>";
   echo "</TABLE>";
   mysql_close($con);
   ?>
   </FORM>
</CENTER>
</BODY>
</html>
----- Original Message -----
From: "George Nicolae" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 27, 2002 2:10 PM
Subject: [PHP-WIN] Re: Showing a blob filed part II


> My mistake. The correct code is:
> "<input type=image src=image.php border=0>";
>
> --
>
>
> Best regards,
> George Nicolae
> IT Manager
> ___________________
> PaginiWeb.com  - Professional Web Design
> www.PaginiWeb.com
>
>
> "George Nicolae" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > try to echo $i  in a separate file (lets say image.php) and in the main
> file
> > do
> > echo "<input type=image src=".image.php." border=0>";
> >
> > --
> >
> >
> > Best regards,
> > George Nicolae
> > IT Manager
> > ___________________
> > PaginiWeb.com  - Professional Web Design
> > www.PaginiWeb.com
> >
> >
> > "Waldemar Brand Neto" <[EMAIL PROTECTED]> wrote in message
> > 005f01c1edf9$7ca7dce0$[EMAIL PROTECTED]">news:005f01c1edf9$7ca7dce0$[EMAIL PROTECTED]...
> > Thank you for the help. I put the header in the top ot the document and
> now
> > it works.
> > I need one more tip. The result is not the image itself, but the content
> of
> > the Blob Field, how can I fix that?
> >
> > Thanks.
> > Waldemar
> >  The source code:
> > <?php
> > header("Content-type: image/jpeg");
> > header("Content-Disposition: inline; filename=temp.jpg");
> > ?>
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <html>
> > <head>
> > <title>Teste.php</title>
> > </head>
> > <BODY BGCOLOR=#3366FF>
> > <CENTER>
> > <FORM>
> > <h1> Kompatscher & Cia Ltda </h1>
> > <hr>
> > <?php
> > $con = mysql_connect("**************************) or die ("Erro ao
> > conectar!");
> > mysql_select_db("***********", $con) or die ("Erro ao selecionar a
> > database!");
> > $comando="SELECT
> > codigo,nome,material,temperatura,pressao,fluido,descricao,foto FROM
> cadgrupo
> > WHERE codigo=010";
> > $res = mysql_query($comando,$con);
> > $linha = mysql_fetch_array($res);
> > echo "<TABLE ALIGN=CENTER>";
> > echo "<tr>";
> > echo "<td>";
> > echo "Foto";
> > echo "</td>";
> > echo "<td>";
> > $i= $linha['foto'] ;
> > echo "<input type=image src=$i border=0>";
> > echo "</td>";
> > echo "</tr>";
> > echo "</TABLE>";
> > mysql_close($con);
> > ?>
> > </FORM>
> > </CENTER>
> > </BODY>
> > </html>
> >
> >
> >
> >
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>


--- End Message ---
--- Begin Message ---
If this implementation work I think is a good way.

--


Best regards,
George Nicolae
IT Manager
___________________
PaginiWeb.com  - Professional Web Design
www.PaginiWeb.com


"Waldemar Brand Neto" <[EMAIL PROTECTED]> wrote in message
006901c1ef7b$5580ba00$[EMAIL PROTECTED]">news:006901c1ef7b$5580ba00$[EMAIL PROTECTED]...
> Dear George thank´s again but  I don´t know how to save the image in
another
> file. I tryed this way. But my question is: This is the best way to do
that?
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <html>
> <head>
>  <title>Upload.php</title>
> </head>
> <BODY BGCOLOR=#3366FF>
> <CENTER>
>    <?php
>       echo "<FORM ENCTYPE=multipart/form-data ACTION=Upload1.php
> METHOD=POST>";
>          echo "<h1> Kompatscher & Cia Ltda </h1>";
>          echo "<hr>";
>          $con = mysql_connect("*************************) or die ("Erro ao
> conectar!");
>          mysql_select_db("***********", $con) or die ("Erro ao selecionar
a
> database!");
>         $comando="SELECT
> codigo,nome,material,temperatura,pressao,fluido,descricao,foto FROM
cadgrupo
> WHERE codigo=010";
>         $res = mysql_query($comando,$con);
>         $linha = mysql_fetch_array($res);
>         echo "<TABLE ALIGN=CENTER>";
>            echo "<tr>";
>               echo "<td>";
>               echo "Foto";
>           echo "</td>";
>           echo "<td>";
>              $i= $linha['foto'] ;
>             $num=rand(0,9999);
>             $nome='temp'.$num.'.jpg';
>             $myfile = fopen($nome,"w");
>             $fp = fwrite($myfile,$i);
>             fclose($myfile);
>             $len=strlen($i);
>             echo "<input type=image src=$nome border=0>";
>           echo "</td>";
>          echo "</tr>";
>    echo "</TABLE>";
>    mysql_close($con);
>    ?>
>    </FORM>
> </CENTER>
> </BODY>
> </html>
> ----- Original Message -----
> From: "George Nicolae" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, April 27, 2002 2:10 PM
> Subject: [PHP-WIN] Re: Showing a blob filed part II
>
>
> > My mistake. The correct code is:
> > "<input type=image src=image.php border=0>";
> >
> > --
> >
> >
> > Best regards,
> > George Nicolae
> > IT Manager
> > ___________________
> > PaginiWeb.com  - Professional Web Design
> > www.PaginiWeb.com
> >
> >
> > "George Nicolae" <[EMAIL PROTECTED]> wrote in message
> > [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > try to echo $i  in a separate file (lets say image.php) and in the
main
> > file
> > > do
> > > echo "<input type=image src=".image.php." border=0>";
> > >
> > > --
> > >
> > >
> > > Best regards,
> > > George Nicolae
> > > IT Manager
> > > ___________________
> > > PaginiWeb.com  - Professional Web Design
> > > www.PaginiWeb.com
> > >
> > >
> > > "Waldemar Brand Neto" <[EMAIL PROTECTED]> wrote in message
> > > 005f01c1edf9$7ca7dce0$[EMAIL PROTECTED]">news:005f01c1edf9$7ca7dce0$[EMAIL PROTECTED]...
> > > Thank you for the help. I put the header in the top ot the document
and
> > now
> > > it works.
> > > I need one more tip. The result is not the image itself, but the
content
> > of
> > > the Blob Field, how can I fix that?
> > >
> > > Thanks.
> > > Waldemar
> > >  The source code:
> > > <?php
> > > header("Content-type: image/jpeg");
> > > header("Content-Disposition: inline; filename=temp.jpg");
> > > ?>
> > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > > <html>
> > > <head>
> > > <title>Teste.php</title>
> > > </head>
> > > <BODY BGCOLOR=#3366FF>
> > > <CENTER>
> > > <FORM>
> > > <h1> Kompatscher & Cia Ltda </h1>
> > > <hr>
> > > <?php
> > > $con = mysql_connect("**************************) or die ("Erro ao
> > > conectar!");
> > > mysql_select_db("***********", $con) or die ("Erro ao selecionar a
> > > database!");
> > > $comando="SELECT
> > > codigo,nome,material,temperatura,pressao,fluido,descricao,foto FROM
> > cadgrupo
> > > WHERE codigo=010";
> > > $res = mysql_query($comando,$con);
> > > $linha = mysql_fetch_array($res);
> > > echo "<TABLE ALIGN=CENTER>";
> > > echo "<tr>";
> > > echo "<td>";
> > > echo "Foto";
> > > echo "</td>";
> > > echo "<td>";
> > > $i= $linha['foto'] ;
> > > echo "<input type=image src=$i border=0>";
> > > echo "</td>";
> > > echo "</tr>";
> > > echo "</TABLE>";
> > > mysql_close($con);
> > > ?>
> > > </FORM>
> > > </CENTER>
> > > </BODY>
> > > </html>
> > >
> > >
> > >
> > >
> >
> >
> >
> > --
> > PHP Windows Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
>
>


--- End Message ---

Reply via email to