php-windows Digest 5 Jun 2003 09:12:12 -0000 Issue 1762

Topics (messages 20192 through 20199):

Display  new Page after Form is processed
        20192 by: Oliver Steimer
        20193 by: Mike Brum
        20197 by: Cristian MARIN

Re: Unable to get php pages to load
        20194 by: Gustavo Andrade
        20195 by: B Hodge

Re: Installation problems...
        20196 by: Bobo Wieland

PHP, COM and Excel
        20198 by: N.A.Morgan.bton.ac.uk
        20199 by: Sven Schnitzke

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 ---
HI ,

after pressing "submit" on my form page and puting the data in my database i
wish to display a new html page. How can i do this ?

thanks for helping
Oliver



--- End Message ---
--- Begin Message ---
In the script that you use to actually enter the information into your
DB simply output HTML headers and print what you want to the screen.

A basic example:


<?php

[all DB code up top]

print "<html><body>Thank you for your submission...</body></html>";

?>

-M

-----Original Message-----
From: Oliver Steimer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2003 4:40 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Display new Page after Form is processed

HI ,

after pressing "submit" on my form page and puting the data in my
database i
wish to display a new html page. How can i do this ?

thanks for helping
Oliver



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





--- End Message ---
--- Begin Message ---
Put header("Location: my_second_page.php"); after the script which enter the data in 
the db


-- 
-------------------------------------------------
Cristian MARIN
InterAKT Online (www.interakt.ro)
+4021 411 2610 
[EMAIL PROTECTED]

  "Oliver Steimer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
  HI ,

  after pressing "submit" on my form page and puting the data in my database i
  wish to display a new html page. How can i do this ?

  thanks for helping
  Oliver



--- End Message ---
--- Begin Message ---
Do you have the apache installed?


"B Hodge" <[EMAIL PROTECTED]> escreveu na mensagem
news:[EMAIL PROTECTED]
> I have installed php and configured it per the install manual.
> I associated .php extensions to run php scripts via the php interpreter
and
> ran the test.php script successfully.
> I then configured my Netscape 3.63 server mime-types to support php as
> magnus-internal/shellcgi
> Then I enabled php extensions to run on  Netscape 3.63.
> When I first ran test.php via webserver I got the security alert about
> accessing php cgi's directly so I modified the php.ini file
> cgi.force_redirect = 0 and now all I get is "No input file specified" when
I
> try to load the same test.php script.
> Can someone help me with this please.
>
>



--- End Message ---
--- Begin Message ---
No I have just Netscape servers running on Windows 2000 machine. I can not,
at this time, investigate installing apache servers due to the learning
curve. I have configured the Netscape servers to run Perl using the exact
same procedure and they are running perl just fine. The problem I am having
is that I have no idea where to look. Is the problem in the way I associated
the .php extension? Is it not reading the %1 %* parameters and therefor
cannot see the filename to process? I would appreciate any help you can give
me on this.

"Gustavo Andrade" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Do you have the apache installed?
>
>
> "B Hodge" <[EMAIL PROTECTED]> escreveu na mensagem
> news:[EMAIL PROTECTED]
> > I have installed php and configured it per the install manual.
> > I associated .php extensions to run php scripts via the php interpreter
> and
> > ran the test.php script successfully.
> > I then configured my Netscape 3.63 server mime-types to support php as
> > magnus-internal/shellcgi
> > Then I enabled php extensions to run on  Netscape 3.63.
> > When I first ran test.php via webserver I got the security alert about
> > accessing php cgi's directly so I modified the php.ini file
> > cgi.force_redirect = 0 and now all I get is "No input file specified"
when
> I
> > try to load the same test.php script.
> > Can someone help me with this please.
> >
> >
>
>



--- End Message ---
--- Begin Message ---
Hi!

To all that helped me before; Thanks! It works now! I didn't install
phpMyAdmin, but MySQL Front, though...



--- End Message ---
--- Begin Message ---
Dear All,

Does anyone have any information on using COM in PHP to build Excel
spreadsheets?  I have a potential need and can't find any sites specific to
this task.

Regards,

Neil Morgan MSc
Admin Computing, University of Brighton, 01273 643930
http://www.brighton.ac.uk/


--- End Message ---
--- Begin Message ---
Hi Neill,
don't wonder 'bout the lack of sites. You are entering
commercial area with using Excel.

If you are heading for heavy use you might want to take
look at BiffWriter

http://www.web-aware.com/biff/

It does write Excel files directly without the overhead of 
COM (and Excel itself, for that matter). BiffWriter is a
PHP class free for strictly personal use. Any other use
is subject to a license agreement.

There are some heavy limits using COM with Excel data,
mainly the lack of support for multidimensional variant
arrays by PHP COM. These are heavily used by the
Excel object to expose various things, namely cell ranges.

If COM is essential for any reason I can send you an
example script reading and writing excel spreadsheet 
data.

Regards,
-- 
Sven

> -----Ursprüngliche Nachricht-----
> Von:  [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]
> Gesendet am:  Donnerstag, 5. Juni 2003 09:56
> An:   [EMAIL PROTECTED]
> Betreff:      [PHP-WIN] PHP, COM and Excel
> 
> Dear All,
> 
> Does anyone have any information on using COM in PHP to build Excel
> spreadsheets?  I have a potential need and can't find any sites specific to
> this task.
> 
> Regards,
> 
> Neil Morgan MSc
> Admin Computing, University of Brighton, 01273 643930
> http://www.brighton.ac.uk/
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---

Reply via email to