[PHP] PHP Redhat 7.1 - apache issues

2002-05-13 Thread Bradley Goldsmith
Hi, Has anyone managed to get RedHat 7.1 and php 4.1.2 working together? I am trying to get away with using the stock rpm version of apache that comes with RH (for reasons beyond logic) - but I need to recomile php to support various other bits and pieces When I enable

[PHP] Oracle ORA_ functions and blobs / clobs

2002-03-20 Thread Bradley Goldsmith
Hi All, Is it possible to store/fetch blobs/clobs with the oracle (ORA not OCI8) functions? Cheers, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Add associative element to an an array

2002-03-07 Thread Bradley Goldsmith
I'll answer my own question. $keyarray[$item[0]] = $node; *duh* How embarrasing is it that this thread will end up on google :) -bcg -Original Message- From: Bradley Goldsmith [mailto:[EMAIL PROTECTED]] Sent: Friday, 8 March 2002 9:50 AM To: [EMAIL PROTECTED] Subject: [PHP

[PHP] Add associative element to an an array

2002-03-07 Thread Bradley Goldsmith
Hi, Ive got an array of associations like this: [1]=>2 [2]=>3 [3]=>4 etc I want to add a new element [8]=>6. How do I do this? I have tried several ways: pushing the element, merging arrays, etc with no luck (it either increments the key or doesn't work at all).

RE: [PHP] A good PHP Shop

2002-03-07 Thread Bradley Goldsmith
Dunno, Havn't looked at it. What's the Url? -bcg -Original Message- From: Jaxon [mailto:[EMAIL PROTECTED]] Sent: Friday, 8 March 2002 8:49 AM To: Bradley Goldsmith; 'Peter Haywood'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] A good PHP Shop hi ho

RE: [PHP] A good PHP Shop

2002-03-07 Thread Bradley Goldsmith
Check out phpshop.org. It's base implimentation is a little dry (but extremely functional). You can view a heavily modified version in the wild at my shop: www.artsupplies.com.au All the best, Brad -Original Message- From: Peter Haywood [mailto:[EMAIL PROTECTED]] Sent: Thursday, 7 Ma

[PHP] Spruce Tree???

2002-03-06 Thread Bradley Goldsmith
Hi All, Below is a bit of a post that I found in the archives... Is the Spruce tree implimentation available somewhere? Cheers, Brad From: Spruce Weber ([EMAIL PROTECTED]) Date: 09/21/00 I've created from scratch a tree class that utilizes templates. What makes thi

[PHP] Binary Tree Implimentation???

2002-03-06 Thread Bradley Goldsmith
Hi, Are there any binary tree implimentations avaliable for php4? Cheers, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Referencing a parent class' variables

2002-02-21 Thread Bradley Goldsmith
How about I answer my own question :) Same as you reference a member variable when its declared within the child. I had another problem that was causing me to think differently. Amazing what a little RTFM time can do. Sorry to annoy. Cheers, Brad -Original Message- From: Bradley

[PHP] Referencing a parent class' variables

2002-02-21 Thread Bradley Goldsmith
Hi All, I am able to call parent functions ok, but can't seem to be able to reference its variables from a child class. How does a child call a member variable of it's parent in php? Cheers, Brad -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

RE: [PHP] building dynamic pdf files?

2002-02-17 Thread Bradley Goldsmith
Adobe distiller can do this (see abobe.com) - but there are cost/server requirements. -bcg -Original Message- From: Jeff D. Hamann [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 3:39 PM To: [EMAIL PROTECTED] Subject: [PHP] building dynamic pdf files? I'm currently working

[PHP] HELP: php4.1.1, oci8 functions, Oracle 9i and VARCHAR2 selects not working

2002-02-17 Thread Bradley Goldsmith
Hi All, I have seen a lot of discussion about this - but no real solutions :) I am getting a two task communication error whenever I try to select a varchar2 element in a query in php4. I seem to be able to select any other kinds of data without hassle. All of my environ

[PHP] session_register and class variables

2002-01-21 Thread Bradley Goldsmith
Hi All, I am having problems with a class and session_register(). I define a class (parital implimentation below) with some variables and call session_register at the top of each page. After I change pages, I end up with all three variables containing the data from szAff

[PHP] RE: Sessions, sessions, sessions...

2001-10-01 Thread Bradley Goldsmith
Nope. Still doesn't work. I still have to do a refresh on the page manually... Any other ideas? Thanks, Brad -Original Message- From: Wayne K [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 2 October 2001 11:38 AM To: Bradley Goldsmith Subject: Re: Sessions, sessions, ses

[PHP] Sessions, sessions, sessions...

2001-10-01 Thread Bradley Goldsmith
Hi, I am using php4 (great) under win32 apache (not so great) ... I am trying to regsiter two session variables. When the page is first displayed, the variables are registered thus: session_register("Sheet"); $HTTP_SESSION_VARS["Sheet"]=serialize($Sheet);