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

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

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 running PHP 5.0.3 and A

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

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

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

2003-11-11 Thread Nick Baker
Hi, I suspect you need to check one more configuration parameter in your PHP.ini - the 'extension_dir' parameter needs to point to the directory where the extension dll is located. I hope this helps. Nick -Original Message- From: S F Alim [mailto:[EMAIL PROTECTED] Sent: Wednesday, 12

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

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)
To answer the question in the subject line: use the HTML construction FORM. To answer the question in your mail body (below): First do you want the user to be able to transmit this file from the client side to the server, or do you just want to create a new file on the server? In order to creat

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

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

2003-06-05 Thread Cristian MARIN
If the primary key exist use an UPDATE tranzaction to rewrite all fields if not existing use INSERT: $sql="SELECT id FROM table1 WHERE name='old_name'"; $result = mysql_query($sql); if (There_is_no_id){ $sql="INSERT INTO table1 VALUES (...)"; }else{ $sql="UPDATE table1 SET ... WHERE id

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

2003-06-05 Thread toby z
good heavenz man lemme breath first ok > That sounds to be a strange approach to restore an back up. > What precisely are you trying to achieve? > > I assume you also are aware about that a backup mostly only saves > time points, and that you usually need to restore the latest full > back up and

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

2003-06-05 Thread Svensson, B.A.T. (HKG)
That sounds to be a strange approach to restore an back up. What precisely are you trying to achieve? I assume you also are aware about that a backup mostly only saves time points, and that you usually need to restore the latest full back up and then add on incremental changes until the last time

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 dll

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 mysq

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: [PHP-WIN] How do I redire

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
Use 4.2.1 or newer. 4.1.2 doesn't have support for apache 2. Use this line in httpd.conf: LoadModule php4_module c:/php/experimental/apache2filter.dll Change to your path, obviously. -Dash -Original Message- From: Dr. D. Wagner [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002

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

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

2002-05-13 Thread Jason Soza
Use $HTTP_GET_VARS['testVar'] or $_GET['testVar'] - $_GET[] is preferred as $HTTP_GET_VARS[] is deprecated. http://www.php.net/manual/fi/language.variables.predefined.php Jason Soza - Original Message - From: "R.S. Herhuth" <[EMAIL PROTECTED]> Date: Monday, May 13, 2002 9:16 am Subject

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
Look for trace_errors in php.ini and it'll tell you about itself. --- Scott Hurring Systems Programmer EAC Corporation [EMAIL PROTECTED] Voice: 201-462-2149 Fax: 201-288-1515 > -Original Message- > From: Mauricio [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 08, 2002 5:03 PM > To: [E

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
We'll charitably assume your frustration accounts for your rudeness shall we? To paraphrase "I have a problem that is not related to PHP, yet I will ask it here anyway, and please, don't waste my time with suggestions, just give me the damn answer". Try RTFM or asking politely on an apache forum

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