php-windows Digest 19 Jan 2003 03:33:27 -0000 Issue 1543

2003-01-18 Thread php-windows-digest-help
php-windows Digest 19 Jan 2003 03:33:27 - Issue 1543 Topics (messages 17962 through 17969): Re: cookies problem 17962 by: Chris Kranz Re: cookies problem (FIXED) 17963 by: Ed Re: Subject: cookies problem 17964 by: Neil Smith Re: Subject: Getting HTML Content as a v

Re: [PHP-WIN] arrays and nested arrays and loops and databases...

2003-01-18 Thread Dash McElroy
If I understand correctly, you want to have an array containing an array with people's email address and name from your db like this: $to[0]['address'] = [EMAIL PROTECTED] $to[0]['name'] = Bob Smith $to[1]['address'] = [EMAIL PROTECTED] $to[1]['name'] = John Jones (the above is obviously not vali

[PHP-WIN] arrays and nested arrays and loops and databases...

2003-01-18 Thread H Marc Bower
Well... I can usually puzzle myself through these things, but I figured it's time to ask the list. :) It may be a simple thing that I'm missing, but here's what I have. The structure that I'm trying to modify is as follows: $to = array( array(

[PHP-WIN] Re: Subject: cookies problem (FIXED)

2003-01-18 Thread Ed
It's not a browser problem, as I said in my post php wasn't saving the cookies. This seems to be a widespred problem after searching many mailing lists and seeing this problem on every one of them, with no fixes. I had already changed my path to c:\php\sessions, so that wasn't the problem either.

[PHP-WIN] PHP warning ... ???

2003-01-18 Thread SniperVegeta. \(SV\)
i got a little mix up now i get: [warn] Loaded DSO modules/php4apache.so uses plain Apache 1.3 API, this module might crash under EAPI! (please recompile it with -DEAPI) But it just works, maybe someone can help me whit this i got: Apache 1.3.27 (Win23) mod_SSL 2.8.12 OpenSSL 0.9.6h PHP 4.3.0

[PHP-WIN] Re: Subject: Getting HTML Content as a variable

2003-01-18 Thread Neil Smith
Hi Greg - dunno about (1) myself :-) Would be interested to hear, but I assume it involves appending these values to the hostname you are acquiring the data from. By analogy with the ftp:// url scheme, I imahine you can do it like this - try it and let us know if it worked for you : http://use

[PHP-WIN] Re: Subject: cookies problem

2003-01-18 Thread Neil Smith
Oddly enough I just had the same problem after messing with my php.ini - Check you have a valid drive and path for your cookie (session) save path : session.save_path = C:/temp Ought to do it. Or, do you mean *your browser* cookies aren't working? Can't help you with that, this is a PHP list, yo

[PHP-WIN] Re: cookies problem (FIXED)

2003-01-18 Thread Ed
I'm not sure why this worked and I noticed there were hundreds of others in various mailing lists with the same problem, but all I did was change this in the php.ini file: error_reporting = E_ALL To This: error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR Now cookis and sessions work just l

RE: [PHP-WIN] cookies problem

2003-01-18 Thread Chris Kranz
I've had the same problem myself. Seems to happen with a default install of IIS 5 etc. etc. I've changed the php.ini so it should create and save the cookies, but it just ignores them. Sorry, no solution, I just made workarounds :( chris kranz fatcuban.com -Original Message- From: Ed [

php-windows Digest 18 Jan 2003 15:13:13 -0000 Issue 1542

2003-01-18 Thread php-windows-digest-help
php-windows Digest 18 Jan 2003 15:13:13 - Issue 1542 Topics (messages 17955 through 17961): Re: SQL-query 17955 by: Sean Malloy 17956 by: Dash McElroy 17957 by: Sean Malloy mysql tools lost ... 17958 by: toby z 17959 by: Sean Malloy Getting HTML

[PHP-WIN] cookies problem

2003-01-18 Thread Ed
I seem to be having a problem with cookies not being saved and I'm using W2k, IIS 5.0, with php 4.3. I just upgraded from a previous version of php that worked fine. Anyone had this problem or know of a solution? Thanks, Ed -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, v

[PHP-WIN] Getting HTML Content as a variable

2003-01-18 Thread php
Hi, I've been directed to use file() or implode() to get the html content of a web page, like this: $html = implode ('', file ('http://192.168.1.100/PHP/index.php')); 1 ) How do I pass authentication to websites that require username & password? In Cold Fusion the CFHTTP tag allows you to pass