Re: [PHP-WIN] RE:[newbie]session problem

2003-03-17 Thread Bob Hall
On Tue, Mar 18, 2003 at 01:00:08AM +, Bobby Rahman wrote: > > > Hiya, > > Im running php4.2.3 on Win98 and apache 2.0.43. > I am having troubles passing variables from page to page. > I try to use: > > session_start(); > session_register("test"); > > > when echo $test on a different page

[PHP-WIN] RE:[newbie]session problem

2003-03-17 Thread Bobby Rahman
Hiya, Im running php4.2.3 on Win98 and apache 2.0.43. I am having troubles passing variables from page to page. I try to use: session_start(); session_register("test"); when echo $test on a different page it seems to be empty when not called from within the page originally created. I have sessio

php-windows Digest 17 Mar 2003 21:39:54 -0000 Issue 1639

2003-03-17 Thread php-windows-digest-help
php-windows Digest 17 Mar 2003 21:39:54 - Issue 1639 Topics (messages 19033 through 19039): Re: IDE's 19033 by: Luis Ferro Re: GIF handling problem... 19034 by: Jill.Ramonsky.Aculab.com 19036 by: Thomas Smart 19038 by: Luis Ferro Re: Win32 API - NT Auth

[PHP-WIN] Re: PHP 4.3.1 and Curl

2003-03-17 Thread Robert Smith
More information on below. I added the Curl_Verbose statement to my test script and this is what it displayed. SSL: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed* Closing connection #0 "Robert Smith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED

Re: [PHP-WIN] GIF handling problem...

2003-03-17 Thread Luis Ferro
1. Gif format has a "patent" in it's compression algoritm, which is registered in several countries where such "patents" exist... 2. There is no "free" and "legal" way to do anything with gif in php if you belong to one of those countries... So... Before anyone can help you out, "Where are you

[PHP-WIN] PHP 4.3.1 and Curl

2003-03-17 Thread Robert Smith
Windows 2000 IIS 5 I recently upgraded to php 4.3.1 from 4.2. Curl was working before the upgrade. I do have the curl extension uncommented in php.ini. php_info says that curl is enabled. I wrote a simple script to test curl. I do not get any errors when I run the script. Simply a blank pag

Re: [PHP-WIN] GIF handling problem...

2003-03-17 Thread Thomas Smart
I totally agree with you, bannermakers should burn in silicon hell >:-D "Jill Ramonsky" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I confess I have an idiological difficulty with the idea of helping out > someone who openly admits that they're going to use the information to

[PHP-WIN] FW: Win32 API - NT Auth

2003-03-17 Thread Kyle Williamson
Hello, Has anyone got any example code for using the Win32 API to do NT Authentication? - Kyle == Kyle M. Williamson Solent Educational Limited Solent House, Roman Road, Dibden Purlieu, Southampton, Hampshire, SO45 4RQ Tel: (023) 80 848319 Fax: (023) 80 848715 -- PHP Windows Mailing Lis

RE: [PHP-WIN] GIF handling problem...

2003-03-17 Thread Jill . Ramonsky
I confess I have an idiological difficulty with the idea of helping out someone who openly admits that they're going to use the information to put even more adverts on the internet - particularly as the only thing you appear to be "selling" is more adverts. (I do have SOME morals, you know). I mea

Re: [PHP-WIN] RE: IDE's

2003-03-17 Thread Luis Ferro
For coders that program in more then php, i would recomend Eclipse... http://www.eclipse.org There are plug-ins for php programming available... (p.s.- it isn't wysiwyg...) Cheers, Luis Ferro Teladigital.net -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

php-windows Digest 17 Mar 2003 08:46:28 -0000 Issue 1638

2003-03-17 Thread php-windows-digest-help
php-windows Digest 17 Mar 2003 08:46:28 - Issue 1638 Topics (messages 19032 through 19032): Re: ODBC Query max() 19032 by: Svensson, B.A.T. (HKG) Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PRO

RE: [PHP-WIN] ODBC Query max()

2003-03-17 Thread Svensson, B.A.T. (HKG)
First of all it looks strange to have a assign condition in the SELECT part of the query, e.g "ID = max(ID)". You might like to do it this way instead: SELECT ID,Date,TimeIn,TimeOut,StationIP FROM Clocks WHERE ID = ( SELECT MAX(ID) FROM Clocks) -Original Message- From: Gene