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