[PHP-WIN] MinGW, building from source -- win32

2002-02-17 Thread John Moeller
Hello, Has anyone here tried building PHP from source for win32 with MinGW? If so, have you run into any trouble? Do you have any hints? Thanks, John

php-windows Digest 18 Feb 2002 03:15:27 -0000 Issue 1005

2002-02-17 Thread php-windows-digest-help
php-windows Digest 18 Feb 2002 03:15:27 - Issue 1005 Topics (messages 12116 through 12119): Re: access database over multiple pages 12116 by: Pac mon Re: MING 12117 by: Pac mon 12118 by: Josh Seward External command output 12119 by: Devon Knowles Administr

[PHP-WIN] External command output

2002-02-17 Thread Devon Knowles
I have a line of code that is supposed to get the current status / track from Winamp passthru("C:/htdocs/lib/winampinfo.exe"); the output when it is run from command prompt is Status: Winamp is rocking it! Time on Track: 6 seconds Currently: Injected - Faithless but PHP only returns Winamp is

Re: [PHP-WIN] MING

2002-02-17 Thread Josh Seward
I got the example below straight from the link you gave! I also have the line that you said would correct the problem already in the code. $img = new SWFBitmap($i); Thanks, - Original Message - From: "Pac mon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 17, 2002

Re: [PHP-WIN] MING

2002-02-17 Thread Pac mon
The SWFBitmap() function takes two parameters. One is optional. The first is a FILENAME the second is a file that acts as a alphamask. So to correct your problem do this: $img = new SWFBitmap($dram); Read more here: http://www.php.net/manual/en/function.swfbitmap.php Original Message Fol

Re: [PHP-WIN] Re: access database over multiple pages

2002-02-17 Thread Pac mon
You could use mysql_pconnect("server","username","password"). This will return a resource for a currently open connection if one is available otherwise it will establish a connection. i.e. --page1-- $link_id=mysql_pconnect($host,$username,$password); . //do stuff --page2-- $link_id=mysql_p