Re: [PHP-WIN] How do I...

2010-11-08 Thread Phansys Corp
Hi ROBIN KOPETZKY. You can try with the KTaglibextension. Best regards! 2010/11/8 ROBIN KOPETZKY > > I'm writing a php program that will read a file's properties but I haven't > a clue on how to go about it. > > Basically, I want to read th

[PHP-WIN] How do I...

2010-11-08 Thread ROBIN KOPETZKY
I'm writing a php program that will read a file's properties but I haven't a clue on how to go about it. Basically, I want to read the time value from a mp3 file. (00:00:00) Help!! Robin Kopetzky

[PHP-WIN] How Do I Display a table description (PHP/MySQL question)

2008-01-06 Thread none
How do you display a table description that is part of a MySQL (v. 5.0) database via PHP (v. 5.2) web page? Thanks -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] How do I get php to repeat and action every day?

2005-04-21 Thread Mike
> Hello, > > I wish to have a php file repeat every day at a certain time, > is there any way to do this? > Yes and no. PHP by itself can't do this. But you can easily set up a crontab (http://www.google.com/search?hl=en&lr=&q=crontab&btnG=Search) or a windows scheduled task pending on your ser

[PHP-WIN] How do I get php to repeat and action every day?

2005-04-21 Thread Maxwell Brodie
Hello, I wish to have a php file repeat every day at a certain time, is there any way to do this? Thank you! -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] How do I enable QDBM dba handler for windows?

2005-03-22 Thread Justin Tan
Hi Edin, Indeed that may be the case! However, there is a Win32 port for QDBM that I downloaded from qdbm.sourceforge.net which includes dlls, header files to compile qdbm support into win apps, and comes with DOS apps that can create, access and test qdbm files. This may be a new addition to t

Re: [PHP-WIN] How do I enable QDBM dba handler for windows?

2005-03-22 Thread Edin Kadribasic
QDBM is currently not supported on Windows. The demand was all but non-existant :) Edin - Original Message - From: "Justin Tan" <[EMAIL PROTECTED]> To: Sent: Tuesday, March 22, 2005 2:22 AM Subject: [PHP-WIN] How do I enable QDBM dba handler for windows? > I am ru

[PHP-WIN] How do I enable QDBM dba handler for windows?

2005-03-21 Thread Justin Tan
I am running PHP 5.0.3 and Apache/2.0.53(Win32) on WinXP Pro. I have enabled the DBA extention (php_dba.dll) in php.ini. I have downloaded qdbm-1.8.21-win32 and copied the required dlls into the PHP directory (and C:\WINDOWS to be doubly sure they are in the path). How do I enable the QDBM as a

[PHP-WIN] how do I enable php to support DBA handlers?

2005-01-19 Thread Patrick Roane
I need some help configuring php on win XP to use DBA handlers. Does anyone have experience with this? I looked at the php manual and it says to download and install one of several types of DBM systems like: db4 and gdbm. The manual also says to install by: ... using the --enable-dba=shared co

Re: [PHP-WIN] How do I access the value of PHP_OS?

2004-04-12 Thread simon
well someone is confused ;) , PHP_OS is a PHP constant , simply Simon Wheeler firepages "Luis Moreira" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > David Scott wrote: > > > In the PHP on Windows chapter of Programming PHP, there is mention of > > a constant, PHP_OS, that can

Re: [PHP-WIN] How do I access the value of PHP_OS?

2004-04-08 Thread Luis Moreira
David Scott wrote: In the PHP on Windows chapter of Programming PHP, there is mention of a constant, PHP_OS, that can be used to determine the OS running the server that PHP is on. The example code is as follows, However, rather than checking this value, I'd like to see if flat out. I tried

[PHP-WIN] How do I access the value of PHP_OS?

2004-04-07 Thread David Scott
In the PHP on Windows chapter of Programming PHP, there is mention of a constant, PHP_OS, that can be used to determine the OS running the server that PHP is on. The example code is as follows, However, rather than checking this value, I'd like to see if flat out. I tried this, But it didn'

Re: [PHP-WIN] How do I compile the GD2 extension under Windows

2003-12-31 Thread Frank M. Kromann
Hi, In the FreeType2 directory structure you will find 'freetype-2.1.4\builds\win32\visualc\freetype.dsp' and freetype.dsw. These files can be used with Visual studio to create the lib neded for php. - Frank > Hello, fellow Windows/PHP power users, > > I'm running PHP4 (either 4.3.4 or latest

[PHP-WIN] How do I compile the GD2 extension under Windows

2003-12-30 Thread choinet
Hello, fellow Windows/PHP power users, I'm running PHP4 (either 4.3.4 or latest STABLE CVS) on Apache2 and Windows XP. I have been encountering enormous difficulty in figuring out how to obtain/compile the required freetype2.lib for the compilation of the php_gd2.dll file. Just for your infor

RE: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread Nick Baker
Wednesday, 12 November 2003 03:31 To: 'PHP Help Desk' Subject: FW: [PHP-WIN] HOW DO I FIND GD LIB ENABLED Hi, Ok I couldn't find it in my phpinfo() output. I did find the file in "c:\php\..." and also I found extension=php_d2.dll syntax in php.ini but there is semi

Re: FW: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread toby z
From: Frank M. Kromann [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 11, 2003 2:35 AM > To: 'PHP Help Desk' > Subject: Re: [PHP-WIN] HOW DO I FIND GD LIB ENABLED > > Hi, > > The GD librarry is included in a DLL on Win32. You need to load the > library f

FW: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-11 Thread S F Alim
d help quick on this one... faisal -Original Message- From: Frank M. Kromann [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 2:35 AM To: 'PHP Help Desk' Subject: Re: [PHP-WIN] HOW DO I FIND GD LIB ENABLED Hi, The GD librarry is included in a DLL on Win32. You need

Re: [PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-10 Thread Frank M. Kromann
Hi, The GD librarry is included in a DLL on Win32. You need to load the library from php.ini with extension=php_gd2.dll or from the script with dl("php_gd2.dll"); You can check the output from phpinfo(); to see if the GD has been loaded. - Frank > Hi, > > Can I find that my php version suppor

[PHP-WIN] HOW DO I FIND GD LIB ENABLED

2003-11-10 Thread S F Alim
Hi, Can I find that my php version support gd library, My php version is 4.3.3 and server is IIS 5.0 and I want to configure it for JPGraph. Thnx in advanced. Faisal

[PHP-WIN] How do I prevent double posts? > Using CURL + Authorize.NET

2003-07-10 Thread Matt Babineau
I have a CURL+Authorize.net solution in place, how can I prevent double posts to authorize.net when I post the payment info to the page? What are some good solutions you have in place? Thanks, Matt Babineau www.criticalcode.com e:: [EMAIL PROTECTED] p:: 603.943.4237

Re: Re: [PHP-WIN] how do i send a request by pressing a button

2003-06-12 Thread Neil Smith
nsfer when an ActiveX object has initialised. Cheers - Neil Smith. Subject: Re: [PHP-WIN] how do i send a request by pressing a button You have a load of options but all depend on either frames, iframes or url's or anything that has the ability to call a file from the server like flas

RE: [PHP-WIN] how do i send a request by pressing a button

2003-06-12 Thread Svensson, B.A.T. (HKG)
at is more complicated than an iron stick tends to break apart by time. That's why Einstein (I think it was) once, sort of said: Keep it simple, but not to simple. -Original Message- From: Luis Ferro To: [EMAIL PROTECTED] Sent: 11-6-03 17:56 Subject: Re: [PHP-WIN] how do i send a

RE: [PHP-WIN] how do i send a request by pressing a button

2003-06-12 Thread Svensson, B.A.T. (HKG)
er to your php files that will (on the server side) handle the task you need to performe. -Original Message- From: itai To: [EMAIL PROTECTED] Sent: 11-6-03 18:54 Subject: [PHP-WIN] how do i send a request by pressing a button hi i want to place a button on my home page which will create a fi

Re: [PHP-WIN] how do i send a request by pressing a button

2003-06-11 Thread erythros
you don't need frames to do this with php. just have the form submit to the current page. that'll reload the page and trigger the php. depending on how big a script your talking this can be done very easily with minimal distraction the user. "Luis Ferro" <[EMAIL PROTECTED]> wrote in message news:[

Re: [PHP-WIN] how do i send a request by pressing a button

2003-06-11 Thread Luis Ferro
You have a load of options but all depend on either frames, iframes or url's or anything that has the ability to call a file from the server like flash, java and the like... You need a technology that allows you to transpose from the client-side - the browser - to the server side - the php page

[PHP-WIN] how do i send a request by pressing a button

2003-06-11 Thread itai
hi i want to place a button on my home page which will create a file on the server when pressed, how can i do it? the button should call a php file or something but no new windows should open and no refresh shuld be done on the site. thanks -- +Email: [EMAIL PROTECTED] -- PHP Windows Mailing L

Re: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread Cristian MARIN
can sum1 plz help > And by the way what kind of RDBMS are you trying to restore and > what kind of back up system are you using? mysql :) > //Anders > > > -Original Message- > > From: toby z [mailto:[EMAIL PROTECTED] > > Sent: Thursday

RE: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread toby z
elp > And by the way what kind of RDBMS are you trying to restore and > what kind of back up system are you using? mysql :) > //Anders > > > -Original Message- > > From: toby z [mailto:[EMAIL PROTECTED] > > Sent: Thursday, June 05, 2003 1:50 PM >

RE: [PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread Svensson, B.A.T. (HKG)
3 1:50 PM > To: php hlp list > Subject: [PHP-WIN] how do i skip primary keyz > > > hay guyz > > im a bit stuck > im restoring backup data and i need to fetch all fields of tables > except for the primary key > is there anyway to do that ? > i ve been searc

[PHP-WIN] how do i skip primary keyz ????

2003-06-05 Thread toby z
hay guyz im a bit stuck im restoring backup data and i need to fetch all fields of tables except for the primary key is there anyway to do that ? i ve been searchin fo a biultin function but couldnt find any im sorry if this is off the list :$ thnx a mill toby ___

RE: [PHP-WIN] How do i load my new activex dll?

2003-01-28 Thread Sean Malloy
Why would you use a com object to do an md5 hash? php has an inbuilt md5() function. -Original Message- From: Wayne [mailto:[EMAIL PROTECTED]] Sent: Monday, 27 January 2003 8:37 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] How do i load my new activex dll? hey ya, I have made a new

[PHP-WIN] How do i load my new activex dll?

2003-01-27 Thread Wayne
hey ya, I have made a new dll "prjMD5.dll" in visual basic's, so i can use the same MD 5 hash for my website, and my chat server passwords. anyhow. Now i have my new DLL How do i load the function in my dll? My function's Name is "MD5Encrypt" and only has 1 value: "password" ie: $hased = md5

[PHP-WIN] How do I review previous FAQs?

2003-01-19 Thread Marlene Burckhalter
I lost some of my e-mails due to a computer problem. My initial e-mail from lists.php.net was in the batch lost. Can someone please tell me how I can search the old FAQs? I need to do some research. Thanks, Marlene

RE: [PHP-WIN] How do I access a mysql result array?

2002-12-09 Thread Svensson, B.A.T. (HKG)
Result sets are row based, not column based. Hence you need to itterate through the entire resultset and load it into a index array of proper type in order to do that. -Original Message- From: Matt Babineau To: [EMAIL PROTECTED] Sent: 9-12-02 2:17 Subject: [PHP-WIN] How do I access a

[PHP-WIN] How do I access a mysql result array?

2002-12-08 Thread Matt Babineau
How can I access a mysql result array numerically? Like: $result[0][0]; $result[1][0]; I want to be able to access one whole column at a time. Any ideas? Thx- Matt -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] How do I redirect to another page using PHP?

2002-06-13 Thread brother
> -Original Message- > From: Blaine Dinsmore [mailto:[EMAIL PROTECTED]] > > How can I redirect to another web page based on a condition? if ($statement) { echo ""; } else { echo "bla bla"; } for instance. /brother -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP-WIN] How do I redirect to another page using PHP?

2002-06-13 Thread Jason Soza
Use an if() statement and header() function. Look at the manual entry for header() here: http://www.php.net/manual/en/function.header.php Jason Soza - Original Message - From: "Blaine Dinsmore" <[EMAIL PROTECTED]> Date: Thursday, June 13, 2002 9:34 am Subject: [P

[PHP-WIN] How do I redirect to another page using PHP?

2002-06-13 Thread Blaine Dinsmore
How can I redirect to another web page based on a condition? Thanks, Blaine -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-05 Thread Dr. D. Wagner
On Monday, 03 June 2002 at 20:34, Stuart Dallas scribbled "Re: [PHP-WIN] How do I get PHP 4.1.2 to work with": > On Monday, June 3, 2002 at 2:13:03 PM, you wrote: > > I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 > > Apache 2.0.36 installation.

Re: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Stuart Dallas
On Monday, June 3, 2002 at 2:13:03 PM, you wrote: > I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 > Apache 2.0.36 installation. Apache is working flawlessly ortherwise, > but If I try and add/uncomment the "LoadModule" line for > php4apache.dll then Apache doesn't even loa

RE: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Dash McElroy
ne 03, 2002 6:13 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32? Howzit, I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 Apache 2.0.36 installation. Apache is working flawlessly ortherwise, but If I try and add/unc

[PHP-WIN] How do I get PHP 4.1.2 to work with Apache 2.0.36 on win32?

2002-06-03 Thread Dr. D. Wagner
Howzit, I'm having a little trouble setting up PHP 4.1.2 to run on my Win32 Apache 2.0.36 installation. Apache is working flawlessly ortherwise, but If I try and add/uncomment the "LoadModule" line for php4apache.dll then Apache doesn't even load, just exits. I've tried on both Win98SE and W

RE: [PHP-WIN] how do I get a user name?

2002-05-14 Thread Shrock, Court
I have been using $_SERVER['AUTH_USER'] and $_SERVER['AUTH_PASSWORD'] IIS 4 > -Original Message- > From: toby z [mailto:[EMAIL PROTECTED]] > Sent: Monday, May 13, 2002 10:50 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject:

Re: [PHP-WIN] how do I get a user name?

2002-05-13 Thread toby z
anyone know how to do that for iis ? or does the same thing works for it too ? plz do let me know thnx a billion toby. On 13 May 2002 at 17:21, Mauricio wrote: > I am using apaches' authentication. > How do i do for get user name and password in PHP? > PHP 4

Re: [PHP-WIN] how do I get a user name?

2002-05-13 Thread Stuart Dallas
On 13 May 2002 at 17:21, Mauricio wrote: > I am using apaches' authentication. > How do i do for get user name and password in PHP? PHP 4.1.x or later: $_SERVER['PHP_AUTH_USER'] and $_SERVER['PHP_AUTH_PW'] Earlier PHP: $PHP_AUTH_USER and $PHP_AUTH_PW -- Stuart -- PHP Windows Mailing List (ht

[PHP-WIN] how do I get a user name?

2002-05-13 Thread Mauricio
I am using apaches' authentication. How do i do for get user name and password in PHP? Thanks for all. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] how do I access variables passed in a URL?

2002-05-13 Thread Jason Soza
; Date: Monday, May 13, 2002 9:16 am Subject: [PHP-WIN] how do I access variables passed in a URL? > > I have the Globals turned off and I'm trying to figure out which array > will alow me to access varibales passed in the URL: > > Example: > > next page > > >

[PHP-WIN] how do I access variables passed in a URL?

2002-05-13 Thread R.S. Herhuth
I have the Globals turned off and I'm trying to figure out which array will alow me to access varibales passed in the URL: Example: next page What array with the variable "testVar" show up in? Thanks, Ron -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

RE: [PHP-WIN] how do i split text on multi linez .... ????

2002-05-09 Thread Scott Hurring
ilto:[EMAIL PROTECTED]] > Sent: Thursday, May 09, 2002 1:55 PM > To: toby z; php hlp list; [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] how do i split text on multi linez > > > Better yet, use the nl2br function to convert newline > characters (\n) into > tags..

RE: [PHP-WIN] how do i display errors

2002-05-09 Thread Scott Hurring
2 5:03 PM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] how do i display errors > > > Hi for all. > I configured my php.ini using: > > display_errors = On > log_erros = On > > but, my browser don't show erros yet. > > Could Anyone help me? > > Th

Re: [PHP-WIN] how do i split text on multi linez .... ????

2002-05-09 Thread Mike Flynn
Better yet, use the nl2br function to convert newline characters (\n) into tags.. see: http://www.php.net/manual/en/function.nl2br.php At 05:56 PM 5/9/02 +0100, toby z wrote: >guyz ... im stuck yet again . > >this time it is . > >im taking input from user a whole article and i

RE: [PHP-WIN] How do i get SSI (Server Side Include) to work

2002-05-05 Thread Ross Fleming
ur request Your cheerfully R -Original Message- From: jerico [mailto:[EMAIL PROTECTED]] Sent: 28 April 2002 20:56 To: [EMAIL PROTECTED] Subject: [PHP-WIN] How do i get SSI (Server Side Include) to work I've tried everything - and I'm desperate and frustrated I'm using:

[PHP-WIN] How do i get SSI (Server Side Include) to work

2002-05-05 Thread jerico
I've tried everything - and I'm desperate and frustrated I'm using: Windows XP Apache 2.035 PHP 4.2.0 installed as Apache module (/experimental/apache2filter.dll) ...using a VIRTUAL HOST in httpd.conf ServerName localhost DocumentRoot "c:/web" DirectoryIndex index.htm

[PHP-WIN] How do I create a win app that incorporates php's functionality?

2001-11-05 Thread nobody
Hi - I've been searching www.php.net, www.zend.com, and just about everywhere else on the net for about 2 weeks looking for the answer to this maybe I'm just missing the obvious, but I'm going nuts looking so I figured I'd ask this newsgroup. I need a programmable interface for C++/VB progra

Re: [PHP-WIN] How do I obtain the client's IP?

2001-10-13 Thread DL Neil
> How can I obtain the client's IP address in PHP? I'm trying to migrate from > IIS/ASP to Apache & PHP and need something similar to ASP's servervariables' > collection? (HTTP_REMOTE_ADDR) Chris, PHP's environment variables offer a "REMOTE_ADDR" value and "HTTP_SERVER_VARS["REMOTE_ADDR"]". Th

[PHP-WIN] How do I obtain the client's IP?

2001-10-13 Thread ChriS
How can I obtain the client's IP address in PHP? I'm trying to migrate from IIS/ASP to Apache & PHP and need something similar to ASP's servervariables' collection? (HTTP_REMOTE_ADDR) Chris [EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

[PHP-WIN] How do I get information from a URL?

2001-08-21 Thread Jeff Howard
I'm trying to get information from a URL in a way similar to utilizing GET in ASP. I know how to get information by submitting a form and going to a new page, but how can I use the form to stay on the same page, yet be able to retrieve the information? For example: I start on http://www.mypage.

[PHP-WIN] How do I know if my Apache is crushing or not?

2001-03-29 Thread Yasuo Ohgaki
Under UNIX, there will be core file and can use gdb what program creates core file. What about under Windows 2000? How do I know if my Apache is crushed or not? Thanks in advance. -- Yasuo Ohgaki -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For