php-windows Digest 15 Jan 2003 23:16:42 -0000 Issue 1537

Topics (messages 17874 through 17895):

create ranking
        17874 by: Rico Derks
        17876 by: Ignatius Reilly

Using "./" in paths in Windows/IIS
        17875 by: Dan Mullen
        17892 by: Christoph Grottolo

importing access db to mysql
        17877 by: toby z

Re: How to allow ~user/xxx.php on Windows XP
        17878 by: Neil Smith
        17888 by: Gang Wang
        17889 by: Frank M. Kromann

Developer List
        17879 by: Henning Heil

PHP/PWS 3.0
        17880 by: Lewis J Hannah

Non-thread safe Win32 builds
        17881 by: Victor Medina
        17884 by: Frank M. Kromann

Problem w/ generating png on Linux with more than 250 objects on a single graphic
        17882 by: Robert Trembath

Links to samples from Problem w/ generating png on Linux
        17883 by: Robert Trembath

Reading in text file characters
        17885 by: Nichols, Mark A.
        17886 by: Mikey
        17887 by: Nichols, Mark A.
        17890 by: Dash McElroy

PHP/CGI Reliability
        17891 by: Pearson, Gregory
        17893 by: Christoph Grottolo
        17894 by: Pearson, Gregory

Re: Looking for something simple
        17895 by: Cam Dunstan

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,

I'am trying to create a ranking from a mysql database. My problem is that I don't know how to determine exaequo ranking!! Exaequo means that two teams with the same amount of points get the same rank.

Wrong:
Rank Team Points
1 Team1 10
2 Team2 9
3 Team3 9
4 Team4 7

Correct:
Rank Team Points
1 Team1 10
2 Team2 9
2 Team3 9
4 Team4 7

Can anyone help me with this problem.

Cheers, RICO.


--- End Message ---
--- Begin Message ---
You can create an auxiliary table, that holds the number of teams for each
points amount:

CREATE TEMPORARY TABLE T
SELECT Points, MIN( Rank ) AS SmallerRank
FROM myTable
GROUP BY Points

You get:

Points SmallerRank
10        1
9            2
7            4

Now you join this table to the original table on Points. You get SmallerRank
instead of Rank.

HTH
Ignatius
____________________________________________
----- Original Message -----
From: "Rico Derks" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, January 15, 2003 10:53 AM
Subject: [PHP-WIN] create ranking


> Hi,
>
> I'am trying to create a ranking from a mysql database. My problem is that
I
> don't know how to determine exaequo ranking!! Exaequo means that two teams
> with the same amount of points get the same rank.
>
> Wrong:
> Rank Team Points
> 1 Team1 10
> 2 Team2 9
> 3 Team3 9
> 4 Team4 7
>
> Correct:
> Rank Team Points
> 1 Team1 10
> 2 Team2 9
> 2 Team3 9
> 4 Team4 7
>
> Can anyone help me with this problem.
>
> Cheers, RICO.
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

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

I have a problem getting a server set up correctly.  I'm using PHP 4.3.0
(CGI) and IIS 4.  After initial set up and configuration of php.ini, the
server is running OK.  I put phpMyAdmin on there and got loads of errors,
basically along the lines of "file not found" on include statements.
Looking at the code, all the lines failing have links to files that begin
with "./".  Taking this off the path fixes the error.

The include path in the php.ini file is set to ".;c:\php\includes".  I have
tried adding the root of the web server to the include path but this made no
difference.

Does anyone know if there is some setting I should be changing in either PHP
or IIS to get this to work?  I don't want to have to find and replace every
link in every file that I'm about to upload, plus I don't have control over
files that other people put on the server.

Any help would be much appreciated.

Cheers,
Dan Mullen


--- End Message ---
--- Begin Message ---
[EMAIL PROTECTED] (Dan Mullen) wrote:

>I have a problem getting a server set up correctly.  I'm using PHP 4.3.0
>(CGI) and IIS 4.  After initial set up and configuration of php.ini, the
>server is running OK.  I put phpMyAdmin on there and got loads of errors,
>basically along the lines of "file not found" on include statements.
>Looking at the code, all the lines failing have links to files that begin
>with "./".  Taking this off the path fixes the error.
>
>The include path in the php.ini file is set to ".;c:\php\includes".  I have
>tried adding the root of the web server to the include path but this made no
>difference.

./ is the working directory in Unix. Try to add ./ to your
include_path in php.ini, maybe it works.

There are some (minor) changes in file handling on windows with the
introduction of the new streams code in 4.3.0.

While with 4.2.3

        $path = "c:/somedirectory/";
        include ($path."/include.php");

worked, it stopped to do so with 4.3.0.

Christoph
--- End Message ---
--- Begin Message ---
hi guys

is there any tool to import an access db to mysql ????


thnx a mill

toby ....

__________________________________________________
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--- End Message ---
--- Begin Message --- "It doesn't work" : Err, what error message do you get ?

A 404? 500 error ? or something else.... do you see HTML or PHP source or binary mush or nothing ? Does this only happen with PHP files or can you view HTML files just fine ?

http://httpd.apache.org/docs-2.0/howto/public_html.html

Cheers,
Neil Smith,

At 09:03 15/01/2003 +0000, you wrote:
Message-ID: <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
From: "Gang Wang" <[EMAIL PROTECTED]>
Date: Tue, 14 Jan 2003 21:49:40 -0800
Subject: How to allow ~user/xxx.php on Windows XP

Hello, everyone:

I am new to PHP on windows. I could not get
http://localhost/~username/my.php work on Windows XP. Here is what I have:
Windows XP Pro + Appache 2.0.40 for Windows + Php 4.3
I followed tutorial posted at http://internetmaster.com/installtutorial/.

It works fine when .php file is in the DocumentRoot directory. In my case,
it is the default one Apache uses: c:\program files\apache group\...\htdocs

However, if I copy the working php file to a user's Apache web directory, it
stops working. In other word, http://localhost/test.php works while
http://localhost/~myusername/test.php does not work.

Any one can help out here?

-- Gang Wang

--- End Message ---
--- Begin Message ---
Hi, Neil:

Thanks for the response.
When I go http://localhost/~myusername/test.php, I got a page just with just
"No input file specified. " in it. Whether it only happens to PHP or also to
HTML seems to be depending on the AddType setting in my Apache configuration
file. If .html is associated with php, any html file on the user's web
directory can not be correctly displayed just as the .php file, while things
are fine when the same file is located at the DocumentRoot directory of
Apache.

I must be missing something here. Any insight?

-- Gang Wang


"Neil Smith" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> "It doesn't work" : Err, what error message do you get ?
>
> A 404? 500 error ? or something else.... do you see HTML or PHP source or
> binary mush or nothing ? Does this only happen with PHP files or can you
> view HTML files just fine ?
>
> http://httpd.apache.org/docs-2.0/howto/public_html.html
>
> Cheers,
> Neil Smith,
>
> At 09:03 15/01/2003 +0000, you wrote:
> >Message-ID: <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED]
> >From: "Gang Wang" <[EMAIL PROTECTED]>
> >Date: Tue, 14 Jan 2003 21:49:40 -0800
> >Subject: How to allow ~user/xxx.php on Windows XP
> >
> >Hello, everyone:
> >
> >I am new to PHP on windows. I could not get
> >http://localhost/~username/my.php work on Windows XP. Here is what I
have:
> >Windows XP Pro + Appache 2.0.40 for Windows + Php 4.3
> >I followed tutorial posted at http://internetmaster.com/installtutorial/.
> >
> >It works fine when .php file is in the DocumentRoot directory. In my
case,
> >it is the default one Apache uses: c:\program files\apache
group\...\htdocs
> >
> >However, if I copy the working php file to a user's Apache web directory,
it
> >stops working. In other word, http://localhost/test.php works while
> >http://localhost/~myusername/test.php does not work.
> >
> >Any one can help out here?
> >
> >-- Gang Wang
>


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

>From the httpd.conf (apache 1.3.x)

# Under Win32, we do not currently try to determine the home directory of
# a Windows login, so a format such as that below needs to be used.  See
# the UserDir documentation for details.
#
<IfModule mod_userdir.c>
    UserDir "C:/Program Files/Apache Group/Apache/users/"
</IfModule>

I'm not sure if the same goes for apache 2.0 though.

- Frank

> Hi, Neil:
> 
> Thanks for the response.
> When I go http://localhost/~myusername/test.php, I got a page just with
just
> "No input file specified. " in it. Whether it only happens to PHP or
also to
> HTML seems to be depending on the AddType setting in my Apache
configuration
> file. If .html is associated with php, any html file on the user's web
> directory can not be correctly displayed just as the .php file, while
things
> are fine when the same file is located at the DocumentRoot directory of
> Apache.
> 
> I must be missing something here. Any insight?
> 
> -- Gang Wang
> 
> 
> "Neil Smith" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > "It doesn't work" : Err, what error message do you get ?
> >
> > A 404? 500 error ? or something else.... do you see HTML or PHP source
or
> > binary mush or nothing ? Does this only happen with PHP files or can
you
> > view HTML files just fine ?
> >
> > http://httpd.apache.org/docs-2.0/howto/public_html.html
> >
> > Cheers,
> > Neil Smith,
> >
> > At 09:03 15/01/2003 +0000, you wrote:
> > >Message-ID: <[EMAIL PROTECTED]>
> > >To: [EMAIL PROTECTED]
> > >From: "Gang Wang" <[EMAIL PROTECTED]>
> > >Date: Tue, 14 Jan 2003 21:49:40 -0800
> > >Subject: How to allow ~user/xxx.php on Windows XP
> > >
> > >Hello, everyone:
> > >
> > >I am new to PHP on windows. I could not get
> > >http://localhost/~username/my.php work on Windows XP. Here is what I
> have:
> > >Windows XP Pro + Appache 2.0.40 for Windows + Php 4.3
> > >I followed tutorial posted at
http://internetmaster.com/installtutorial/.
> > >
> > >It works fine when .php file is in the DocumentRoot directory. In my
> case,
> > >it is the default one Apache uses: c:\program files\apache
> group\...\htdocs
> > >
> > >However, if I copy the working php file to a user's Apache web
directory,
> it
> > >stops working. In other word, http://localhost/test.php works while
> > >http://localhost/~myusername/test.php does not work.
> > >
> > >Any one can help out here?
> > >
> > >-- Gang Wang
> >
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 



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

This seems to be a list concering php system integration, I was looking for a developer list (german if possible?). Can anyone recommend one?

Thanks for your help,

Henning


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

I am trying to get PHP to work under PWS 3.0/WinMe. However, every time
I try to access a virtual directory on the localhost, I receive an error
message stating that the server cannot be found, or DNS error. I check
all the configuration settings in the php.ini file and in the Registry,
and they seem to be correct. I don't know what else could be wrong.

Thanks,

Lewis J Hannah

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

first, my name is Victor Medina I am a php and java developer from venezuela , and i am the maintainer of a small project on sourceforge, named Ikirux that include Apache 2 and php4 on windows, it is mostly an installer.

http://sourceforge.net/projects/ikirux

Enough!

Now straight to the point.

I am concerned about this I read on the Zend.com :


"TLK: Non-thread safe Win32 builds

It looks like the above version of PHP has been slipping more and more out of sync with the standard Windows version. There may well be the possibility of dropping support for a non-thread safe PHP soon. If you are building from source under Windows and there is any reason why these should stick around, now would be the time to e-mail the list. "

What does it means for people like us, that actively develop and support php on the windows platform? I am currently working on the next release of the Ikirux server, and wanted it to support PHP4.3 and PEAR.

What are my options?

Thnaxs in advance, pardon my english

Victor Medina




--- End Message ---
--- Begin Message ---
The non-thread safe version for windows can only be used with CGI (or CLI)
if you are using ISAPI or mod_apache you have to use the thread safe
version.

You can use the thread safe version to everything (this is the version
included in all distributions) w/o problems.

- Frank

> Hi guys!
> 
> first, my name is Victor Medina I am a php and java developer from 
> venezuela , and i am the maintainer of a small project on sourceforge, 
> named Ikirux that include Apache 2 and php4 on windows, it is mostly an

> installer.
> 
> http://sourceforge.net/projects/ikirux
> 
> Enough!
> 
> Now straight to the point.
> 
> I am concerned about this I read on the Zend.com :
> 
> 
> "TLK: Non-thread safe Win32 builds
> 
> It looks like the above version of PHP has been slipping more and more
out 
> of sync with the standard Windows version. There may well be the 
> possibility of dropping support for a non-thread safe PHP soon. If you
are 
> building from source under Windows and there is any reason why these
should 
> stick around, now would be the time to e-mail the list. "
> 
> What does it means for people like us, that actively develop and support

> php on the windows platform? I am currently working on the next release
of 
> the Ikirux server, and wanted it to support PHP4.3 and PEAR.
> 
> What are my options?
> 
> Thnaxs in advance, pardon my english
> 
> Victor Medina
> 
> 
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 



--- End Message ---
--- Begin Message --- I have an application that records DNA fingerprints(gel images) in digital form in a MySQL Database. Each fingerprint consists of an array of 2000 values between 0-255 that represent a grayscale color. I use the code below to create an image or fingerprint from the data.

code
---------------------------------------------------------------------------
$y3 = array( <2000 values from MySQL resulta formatted> );
//set positions and draw image
$pos1 = 225;
$pos2 = 226;
$pic=ImageCreate(2290,50);
$col1=ImageColorAllocate($pic,200,200,200);
foreach ($y3 as $val)
{
unset( $color );
$color = ( 255 - $val);
//$color = $value;
$col=ImageColorAllocate($pic,$color,$color,$color);
Imageline($pic,$pos1,6,$pos1,44,$col);
$pos1++;
}
ImagePNG($pic,"../images/bar$ID.png");
ImageDestroy($pic);

I've check the array for min,max and number of values and the array data is great. It starts drwing the image which consists of a gray background and a line being drawn for each value as it loop though the 2000 values in the array, each having a different color value and a position that places the each line next to the last generates the correct Imageline() statement on the fly.

Here's the problem, after about drawing 250 or so line objects, it stops drawing the values and I get nothing but gray or white for the rest of the image. I reduced the dataset to 400 values to test this and I get the same result.

Is there a limitation in GD or PHP that would cause this or is there an error in my code. I've attached copies of the images that PHP is generating so you can see what is happening. These images contain the curve and two images PHP draws, the first is a line graph from JPGraph showing the curve and the second is the gel image below the graph. The gel image in the fingerprint I am having trouble with. Both example stop generating line objects after about 250 lines as seen in the examples.

Attachments:
sample1.gif --> zoom in of first 400 points of sample in sample2.gif containing only 400 values
sample2.gif --> entire DNA fingerprint of 2000 values

My configuration is:
Red Hat 7.3 with all current updates for that release apache 1.3 and PHP 4.1.2

Any ideas on how to get this to work properly?

Thanks in advance for your help and advise!
Robert Trembath
CSE
e| [EMAIL PROTECTED]
Bacterial BarCodes, Inc.
Houston, TX

--- End Message ---
--- Begin Message --- The images were stripped on my post but here's an external link to the images I refer to:

Sample1 : http://linux.diversilab.com/sample1.gif
Sample2 : http://linux.diversilab.com/sample2.gif

Thanks,
Robert


--- End Message ---
--- Begin Message ---
The following code reads in a text file one line at a time.

 

for ($k=0; $k<=count($readfile)-1; $k++) {

            $fields = split("\t",$readfile[$k]);

            echo nl2br("$fields[0]<br>");

            

}

 

The problem is that it seems to strip the empty spaces out.

 

My text file is formatted by lengths.  I need to read the first 25
characters from the text file.  Then read 50 more... And so on. 

 

Can anyone give my the code for reading in a certain number of
characters from a text file.

 

Thank you in advance.

--- End Message ---
--- Begin Message ---
You could try using the substr() function, it will take any number of chars
from any place in a string.  However, I think you could have found this had
you been bothered to look in the manual first...

HTH,

Mikey


> -----Original Message-----
> From: Nichols, Mark A. [mailto:[EMAIL PROTECTED]]
> Sent: 15 January 2003 15:17
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Reading in text file characters
>
>
> The following code reads in a text file one line at a time.
>
>
>
> for ($k=0; $k<=count($readfile)-1; $k++) {
>
>             $fields = split("\t",$readfile[$k]);
>
>             echo nl2br("$fields[0]<br>");
>
>
>
> }
>
>
>
> The problem is that it seems to strip the empty spaces out.
>
>
>
> My text file is formatted by lengths.  I need to read the first 25
> characters from the text file.  Then read 50 more... And so on.
>
>
>
> Can anyone give my the code for reading in a certain number of
> characters from a text file.
>
>
>
> Thank you in advance.
>
>


--- End Message ---
--- Begin Message ---
I always look in the manual first.  I guess I missed it.

Thanks


-----Original Message-----
From: Mikey [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, January 15, 2003 10:42 AM
To: [EMAIL PROTECTED]
Subject: RE: [PHP-WIN] Reading in text file characters

You could try using the substr() function, it will take any number of
chars
from any place in a string.  However, I think you could have found this
had
you been bothered to look in the manual first...

HTH,

Mikey


> -----Original Message-----
> From: Nichols, Mark A. [mailto:[EMAIL PROTECTED]]
> Sent: 15 January 2003 15:17
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] Reading in text file characters
>
>
> The following code reads in a text file one line at a time.
>
>
>
> for ($k=0; $k<=count($readfile)-1; $k++) {
>
>             $fields = split("\t",$readfile[$k]);
>
>             echo nl2br("$fields[0]<br>");
>
>
>
> }
>
>
>
> The problem is that it seems to strip the empty spaces out.
>
>
>
> My text file is formatted by lengths.  I need to read the first 25
> characters from the text file.  Then read 50 more... And so on.
>
>
>
> Can anyone give my the code for reading in a certain number of
> characters from a text file.
>
>
>
> Thank you in advance.
>
>



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

--- End Message ---
--- Begin Message ---
You could also do this:

$fp = fopen($filename, "r");
while(!feof($fp)) {
    $string = fgets($fp, 25); //25 specifies how many chars to read in
    //process string here
}
fclose($fp);

The above code has not been tested, but it should give you an idea.

One thing I have noticed is that reading an entire file into PHP's memory
can make PHP use a /lot/ of memory. The above method reads it 25 chars at
a time. You could also just use fgets($fp) and it would read until the end
of the line (depending on what verison of PHP you are using). See
$mirror.php.net/fgets for more info.

-Dash

Ginsberg's Theorem:
        (1) You can't win.
        (2) You can't break even.
        (3) You can't even quit the game.

Freeman's Commentary on Ginsberg's theorem:
        Every major philosophy that attempts to make life seem
        meaningful is based on the negation of one part of Ginsberg's
        Theorem.  To wit:

        (1) Capitalism is based on the assumption that you can win.
        (2) Socialism is based on the assumption that you can break
            even.
        (3) Mysticism is based on the assumption that you can quit the
            game.

On Wed, 15 Jan 2003, Nichols, Mark A. wrote:

> I always look in the manual first.  I guess I missed it.
>
> Thanks
>
>
> -----Original Message-----
> From: Mikey [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 15, 2003 10:42 AM
> To: [EMAIL PROTECTED]
> Subject: RE: [PHP-WIN] Reading in text file characters
>
> You could try using the substr() function, it will take any number of
> chars
> from any place in a string.  However, I think you could have found this
> had
> you been bothered to look in the manual first...
>
> HTH,
>
> Mikey
>
>
> > -----Original Message-----
> > From: Nichols, Mark A. [mailto:[EMAIL PROTECTED]]
> > Sent: 15 January 2003 15:17
> > To: [EMAIL PROTECTED]
> > Subject: [PHP-WIN] Reading in text file characters
> >
> >
> > The following code reads in a text file one line at a time.
> >
> >
> >
> > for ($k=0; $k<=count($readfile)-1; $k++) {
> >
> >             $fields = split("\t",$readfile[$k]);
> >
> >             echo nl2br("$fields[0]<br>");
> >
> >
> >
> > }
> >
> >
> >
> > The problem is that it seems to strip the empty spaces out.
> >
> >
> >
> > My text file is formatted by lengths.  I need to read the first 25
> > characters from the text file.  Then read 50 more... And so on.
> >
> >
> >
> > Can anyone give my the code for reading in a certain number of
> > characters from a text file.
> >
> >
> >
> > Thank you in advance.
> >
> >
>
>
>
> --
> 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 ---
Has anyone - using the PHP CGI module - had reliability issues under IIS
4/5? I'm trying to hunt down an intermittent problem we may have with POSTs
to the server.


_______________________________ 

This message and any attachments are intended only for the use of the
addressee and may contain information that is privileged and confidential. 

If the reader of the message is not the intended recipient or an authorized
representative of the intended recipient, you are hereby notified that any
dissemination of this communication is strictly prohibited. If you have
received this communication in error, please notify us immediately by e-mail
and delete the message and any attachments from your system. 


--- End Message ---
--- Begin Message ---
[EMAIL PROTECTED] (Gregory Pearson) wrote:

>Has anyone - using the PHP CGI module - had reliability issues under IIS
>4/5? I'm trying to hunt down an intermittent problem we may have with POSTs
>to the server.

We too have some intermittent performance problems. We could not yet
track them down either because of incomplete access to the server in
question (W2K Adv., IIS 5).

Sometimes the site runs like a charm, sometimes it's extremely slow
with response times up to 15 secs for easy-to-perform scripts. 

We don't experience these problems on IIS 4 in our Intranet.

Christoph
--- End Message ---
--- Begin Message ---
Anything is possible, but I doubt it is a globals problem. I'll consider
that, though, as I review the code.

The problem: We have a script that posts an XML string to a CGI exe on the
web server and receives another XML string as a reply from the server. Most
of the time this works fine. But occasionally, it does not and the XML
string received is truncated. It seems to happen only when the reply string
is ~12k or more.

The code that does the post was inherited from an external developer and is
the least understood by me. So that's where I've started to look for
problems.

BTW, we're running PHP 4.2.3 on Windows 2K/SP2.

-----Original Message-----
From: Asendorf, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 15, 2003 3:08 PM
To: Pearson, Gregory
Subject: RE: [PHP-WIN] PHP/CGI Reliability


What is your posting problem... I've had nothing but stellar results iwth
the CGI implementation under IIS4...  perhaps it could be a globals problem?

---------------------
John Asendorf - [EMAIL PROTECTED]
Web Applications Developer
http://www.lcounty.com - NEW FEATURES ADDED DAILY!
Licking County, Ohio, USA
740-349-3631
Nullum magnum ingenium sine mixtura dementiae fuit


> -----Original Message-----
> From: Pearson, Gregory [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, January 15, 2003 3:09 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] PHP/CGI Reliability
> 
> 
> Has anyone - using the PHP CGI module - had reliability 
> issues under IIS
> 4/5? I'm trying to hunt down an intermittent problem we may 
> have with POSTs
> to the server.
> 
> 
> _______________________________ 
> 
> This message and any attachments are intended only for the use of the
> addressee and may contain information that is privileged and 
> confidential. 
> 
> If the reader of the message is not the intended recipient or 
> an authorized
> representative of the intended recipient, you are hereby 
> notified that any
> dissemination of this communication is strictly prohibited. 
> If you have
> received this communication in error, please notify us 
> immediately by e-mail
> and delete the message and any attachments from your system. 
> 
> 
> 
> -- 
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


_______________________________ 

This message and any attachments are intended only for the use of the
addressee and may contain information that is privileged and confidential. 

If the reader of the message is not the intended recipient or an authorized
representative of the intended recipient, you are hereby notified that any
dissemination of this communication is strictly prohibited. If you have
received this communication in error, please notify us immediately by e-mail
and delete the message and any attachments from your system. 


--- End Message ---
--- Begin Message ---
john,
Some time ago I sent via the list a lump of code that did this, but it was
fairly highly customised to my weird way of doing things.
You really should have a go at doing this yourself to suit your own style of
programming, however if you get stuck mail me back and I shall send you
something.
Cheers CD






----- Original Message -----
From: "Asendorf, John" <[EMAIL PROTECTED]>
To: "Php-Windows (E-mail)" <[EMAIL PROTECTED]>
Sent: Wednesday, January 15, 2003 1:09 AM
Subject: [PHP-WIN] Looking for something simple


> I miss the old days of PHP when all you could find were little snippets of
> code instead of "huge suites for working with everything"...
>
> I'm looking for a simple script that just writes html.  ALl I want is
> something that will look at the fields in a MySQL database and spits out a
> form that can be used to insert data...
>
> Anyone know of anything like that without a bunch of bells and whistles?
If
> not, I may just create one myself...
>
> Thanks,  John
>
> ---------------------
> John Asendorf - [EMAIL PROTECTED]
> Web Applications Developer
> http://www.lcounty.com - NEW FEATURES ADDED DAILY!
> Licking County, Ohio, USA
> 740-349-3631
> Nullum magnum ingenium sine mixtura dementiae fuit
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>

--- End Message ---

Reply via email to