php-windows Digest 7 Oct 2002 11:48:05 -0000 Issue 1375

Topics (messages 16209 through 16213):

Re: PHP 4.2.3 and Apache 2.0.36
        16209 by: Miguel A. Charneco

IIS 5 - ASP & PHP dev enviorment
        16210 by: JGreening
        16212 by: Luis Ferro

Sending data to a script from a form
        16211 by: R Strang

Auto-submit form
        16213 by: H Marc Bower

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 ---
Thanks to everybody, now I have PHP 4.4.0-dev with Apache 2.0.43 and it's
working perfectly after installing Win Xp Service Pack 1 too...

"Miguel A. Charneco" <[EMAIL PROTECTED]> escribió en el mensaje
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I've changed form php 4.2.1 to 4.2.3 and when i try to run Apache i get an
> error when loading php4apache2.dll but everything seems correct when using
> the old file php4apache.dll from php 4.2.1... is there something wrong
with
> this file?
>
>


--- End Message ---
--- Begin Message ---
I have done a little searching and haven't really had a good solid answer
for my question.

I mainly use ASP for development (and will continue to), but I wanted to
dabble in a little PHP for my own curiosity. I am using IIS 5 on Win XP Pro
for my dev machine. I have a few ASP applications going and I am looking for
some questions as to what to expect to happen if I set up IIS 5 to also run
PHP. Am I putting my ASP projects in harms way, buy setting up IIS to use
ASP and PHP?

Any help would be appreciated, links to information would be just fine.

Thanks.




--- End Message ---
--- Begin Message ---
Not dificult at all...

They run nicelly side by site... and you can either use the installer 
which will setup php to run as CGI in the IIS or, a better option,
get the full, zipped version and intall by hand...

The ASP code and PHP code can run very well side by side... including in 
the same site... just don't expect sessions between the two and they 
will run ok...

The instructions are very simple... and it will work better then as a CGI...

Cheers...
Luis Ferro



JGreening wrote:

>I have done a little searching and haven't really had a good solid answer
>for my question.
>
>I mainly use ASP for development (and will continue to), but I wanted to
>dabble in a little PHP for my own curiosity. I am using IIS 5 on Win XP Pro
>for my dev machine. I have a few ASP applications going and I am looking for
>some questions as to what to expect to happen if I set up IIS 5 to also run
>PHP. Am I putting my ASP projects in harms way, buy setting up IIS to use
>ASP and PHP?
>
>Any help would be appreciated, links to information would be just fine.
>
>Thanks.
>
>
>
>
>
>  
>



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

--- End Message ---
--- Begin Message ---
hi im having problems with running PHP4 and MySQL on Windows 98 with PWS

im using this simple script to input an name and dysplay it on another page it was 
taken from a book example but i get an error

PHP Notice: Undefined variable: user in c:\Inetpub\wwwroot\output.php on line 7 PHP    
                     Notice:Undefined variable: address in 
c:\Inetpub\wwwroot\output.php on line 8 


input.php

    <html>
    <head>
    <title></title>
    </head>
    <body>
    <form action="output.php" method="get">
    <input type="text" name="user">
    <br>
    <textarea name="address rows="5" cols="40">
    </textarea>
    <br>
    <input type="submit" value="hit it!">
    </form>
    </body>
    </html>


output.php

    <html>
    <head>
    <title></title>
    </head>
    <body>
    <?php
    print "welcome <b>$user</b><p>\n\n";
    print "your address is:<p>\n\n<b>$address</b>";
    ?>
    </body>
    </html>
--- End Message ---
--- Begin Message ---
Is there a way (preferrably using php... but if javascript is necessary and some kind 
soul knows how I will use it) to have a form auto-submit when a field is 'full'?  I 
want to be able to scan barcodes of a set length and have a form be automatically 
submitted to store the information in the database when the barcode field is scanned.  
Since I'm asking potentially off-topic question anyway, how do I make the fields 
advance without using the tab key when one field is 'full'?  For instance, I want to 
scan a library card barcode, have the focus shift to the piece barcode field, scan the 
book barcode, then be auto-submitted once the book barcode is scanned.

TIA,

(V)

-=-=-=-=-
No testimony is sufficient to establish a miracle unless the testimony be of such a 
kind that its falsehood would be more miraculous than the fact which it endeavours to 
establish. - David Hume
-=-=-=-=-


--- End Message ---

Reply via email to