[PHP] configure fails with expat

2002-08-19 Thread Geoff
when running ./configure it fails on this: configure: error: not found. Please reinstall the expat distribution I am configuring as follows: ./configure --with-sybase=/usr/local/freetds/ --with-apache=../apache_1.3.26 --with-mysql --with-expat-dir=/usr/lib also if I specify the path of mysql as

[PHP] patch for sablton

2002-08-20 Thread Geoff
I have been struggling to compile php(4.2.2, mandrake 8.2, apache 1.3.26) with xslt support for over 3 days now. I can configure with trouble like this: ./configure \ --with-apxs=/usr/lib/apache/bin/apxs \ --with-sybase=/usr/local/freetds \ --with-mysql \ --enable-xslt \ --with-xslt-sablot

[PHP] patch for sablotron

2002-08-20 Thread Geoff
I have been struggling to compile php(4.2.2, mandrake 8.2, apache 1.3.26) with xslt support for over 3 days now. I can configure with trouble like this: ./configure \ --with-apxs=/usr/lib/apache/bin/apxs \ --with-sybase=/usr/local/freetds \ --with-mysql \ --enable-xslt \ --with-xslt-sablot

[PHP] xslt extensions

2002-08-20 Thread Geoff
Is there a soul who has the xslt extensions compiled with php 4.2.2, sablotron 0.95 and expat 1.95.4 and working on Linux who is willing to give me some tips? I have tried the suggestions here: http://www.php.net/manual/en/ref.xslt.php here: http://phpfaq.info/#id98 and the patches here: http:

Re: [PHP] patch for sablotron

2002-08-21 Thread Geoff
I finally was able to compile/install php with xslt extensions. You have to apply the patch for Sablotron first then configure, make, su make install then apply the php patch, configure, make, su make install I applied the patches as follows: patch for more options do man patch On Tue, 20

[PHP] help with making an xslt class

2002-09-11 Thread Geoff
I am trying to make a class to process xslt transformations. Here is the class: class xslTransformer extends makexml{ var $xh; function xslTransformer($xslfile) { $this->xh = xslt_create(); $result=xslt_process($this->xh,$this->xmlstr,$xslfile); //errors

RE: [PHP] help with making an xslt class

2002-09-11 Thread Geoff
: > Isn't this what the salbatron library is for? > > > -Original Message- > > From: Geoff [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, September 11, 2002 2:52 PM > > To: php list > > Subject: [PHP] help with making an xslt class > > > > &

Re: [PHP] Non-functioning db 'include'

2002-09-23 Thread Geoff
Once you go to https://www.yoursite.com you are at a completely new url as far as the browser is concerned so you need to include using the full http://www.yoursite.com/yourinclude.inc syntax or throw another copy of your include db file in your directory for secure serving Not sure if this is wh

[PHP] XSLT and PHP

2002-09-24 Thread Geoff
I have been impressed with using the xslt functions in php in that it gives you the ability to separate content from presentation. Now I am looking to streamline this technique. Typically I either take xml that is in a file or generated by a class from a sql query and transform it with an xsl fi

Re: [PHP] PHP Form and Arrays help

2002-09-24 Thread Geoff
If I remember correctly checkboxes literally do not exist on the posted pages if they don't get checked on the form page. So maybe you can use isset or something like that to see if the checkbox exists if so make it checked if not show it unchecked. Hope that helps. On Tue, 2002-09-24 at 11:24,

Re: [PHP] XSLT

2002-09-25 Thread Geoff
I was able to pass parameters to the xsl stylesheet like this: Then in the stylesheet do this (The parameter must be defined before any template is declared): http://www.w3.org/1999/XSL/Transform";> Your html page This will print "parameter_to_pass" to the browser On Tue, 2002-09

[PHP] Regular expression help converting doc to xml

2002-09-27 Thread Geoff
I have a fairly large html document that I need to convert to xml. The current format is is: A whole bunch of text Something else (There is a new line in there before ) Which I need to convert to A whole bunch of text Something else Any ideas?? -- PHP General Mailing

RE: [PHP] Regular expression help converting doc to xml (somewhatOT)

2002-09-30 Thread Geoff
On Fri, 2002-09-27 at 16:53, John Holmes wrote: This isn't accurate enough because is not always preceeded by: some text. It is sometimes preceeded by some text or other items. This expression matches fairly well: [a-zA-Z0-9\.,'\-\s]* So it matches up to the : A whole bunch of text

RE: [PHP] Regular expression help converting doc to xml

2002-10-02 Thread Geoff
(For the archives) The RegEx I finally used was this: search: (.*) replace: \1 I tried this in 3 editors: jEdit, eMacs and BBEdit jEdit interpreted the replace expression as literally "\1" eMacs didn't like the parenthesis in the search string In BBEdit it worked like a charm. Not sure why. Pe

[PHP] date ("j") not working on Unix - any ideas

2002-03-25 Thread geoff
Any ideas why date ("j") doesn't appear to work when I use it on my ISP that has a Unix Server, but on my Windows ISP , it works fine ? The other date() functions Y,m,d etc all work fine on both systems. (I'm using PHP3 by the way.) Any help would be very much appreci

[PHP] database security - sql injection

2002-03-31 Thread Geoff
'$password'; In my form password box, I type in this : '; insert into user set uname ='geoff', upass='cracked'; /* Since the connected user has insert privileges, I expect to see a new row in the table, but instead see this error message : You have an erro

[PHP] PHP / MYSQL & AUTHORWARE

2001-11-21 Thread geoff
cult to somehow read the variables being passed back to the web page from either PHP or ASP from the database. Any info from anyone to point me in the right direction (or off the top of a tall building !!) would be greatfully recieved Thanks Geoff -- PHP General Mailing List (http://w

[PHP] inserting text into a mime message

2006-01-19 Thread Geoff
the PEAR manual]. I'm not hung up about what to use, it doesn't have to be PEAR, I will use any library or code that will do the job. Alternatively, if it is possible to do this with encode(), I would love to see an example, as I couldn't get it to work that way myself. Many than

Re: [PHP] Grouping

2006-01-19 Thread Geoff
string when there is no change, or the delimiter if the letter has changed. Geoff. On 19 Jan 2006 at 10:19, Jeffrey Pearson wrote: > OK. I know I did this a LONG time ago but I don't remember how I did > it. Thus, my post. > > I have a list of last names from a MySQL

Re: [PHP] URL -> stream context

2006-01-19 Thread Geoff
ms to work in a similar way to fopen, in terms of having wrappers that are aware of multiple resource types. It might also be worth taking a look at cURL or similar libraries that are also multi-resource aware, but give you greater control of connections parameters and timeouts. Geoff. On 1

Re: [PHP] New to PHP

2006-01-19 Thread Geoff
r web server is running. Geoff. On 19 Jan 2006 at 16:02, Jedidiah wrote: > I mentioned earlier that I recently switched my site over to PHP. I had a > couple of reasons for this: > > 1: I was using Server Side Includes, and had been told that PHP includes > were better and def

[PHP] (Fwd) inserting text into a mime message

2006-01-19 Thread Geoff
Nobody got any ideas on this? I would be interested to hear from anyone who has successfully adjusted parts of an email message while it is in transit, by ANY method. I'm getting desparate and will try anything, even if it is not 100% PHP. All ideas, suggestions greatly appreciated.

Re: [PHP] (Fwd) inserting text into a mime message

2006-01-19 Thread Geoff
r implies that there is SOME kind of software available > to do it... ...but many of them are in commercial packages, or are plugins to MSExchange or similar. And most of the open-source ones only stick the footer in the first piece of text/plain that they find, without being aware of mult

Re: [PHP] URL -> stream context

2006-01-19 Thread Geoff
handlers. Or, you might want to look into a 3rd party library, or a command line option like "lynx -dump -connect_timeout=n " which is multi-resource aware. Geoff. On 19 Jan 2006 at 17:28, Richard Lynch wrote: > On Thu, January 19, 2006 4:08 pm, Geoff wrote: > > I honestly have

Re: [PHP] Determining number of days in a selected month

2006-01-21 Thread Geoff
hour/min/sec differences that might push the timestamp over into the next day. A small thing, but since I deploy code in a number of places, it has saved me countless headaches. Geoff. On 20 Jan 2006 at 13:51, Jeffrey Pearson wrote: > The java mailing list I belong to recently had this sam

[PHP] anyone know a good php proxy

2006-01-21 Thread Geoff
pages are coming from. Thanks in advance, Geoff. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] (Fwd) Re: [PHP] Question about Thumbnailing, Watermarking, and

2006-01-22 Thread Geoff
whoops, that should be "phpclasses.org" (no hyphen) Geoff. --- Forwarded message follows --- From: Geoff <[EMAIL PROTECTED]> To: Jon Grimes <[EMAIL PROTECTED]> Subject:Re: [PHP] Question about Thumbnaili

Re: [PHP] Can PHP works with telnet?

2006-01-22 Thread Geoff
->disconnect(); -- In that same manual page, there is lots of other information and suggestions on making telnet connections. Note that cURL will also allow telnet. Geoff. On 23 Jan 2006 at 9:56, HoWang Wang wrote: > Hi al

[PHP] POP3 or other servers in php

2006-01-23 Thread Geoff
What I'm now seeking is real-world examples. Many thanks, Geoff. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] absolute vs relative path?

2006-01-25 Thread Geoff
uot;/test.php", if the script containing that link is already in /www. Thus your links will look the same on both versions. php-based solution: If you must have absolute URLs (maybe to do redirects or SSL) use: $_SERVER["SERVER_NAME"] it will return either "www.domain.com&

Re: [PHP] absolute vs relative path?

2006-01-25 Thread Geoff
On 25 Jan 2006 at 15:22, Barry wrote: > Geoff wrote: > > On 25 Jan 2006 at 15:19, William Stokes wrote: > > > > > >>Hello, > >> > >>I Have a web site on one server and a test site on another. How can I build > >>the hyperlin

[PHP] automating creation of thumbnails

2006-01-26 Thread Geoff
they do not exceed a given width or height. The images are loaded as true color to preserve the quality as much as possible during the rescale operation. Currently, the images can be loaded and saved in the JPEG and GIF formats." Geoff. -- PHP General Mailing List (http://www.ph

Re: [PHP] PHP mysql data result set compression

2006-02-06 Thread Geoff
d be appreciated- thanks. You could try using the LIMIT keyword with an offset number to get records in more manageble chunks, then write out each chunk, freeing its resources before loading the next one. Geoff. > > David > > -- > PHP General Mailing List (http://www.php.net/

Re: [PHP] Re: Sorting parsed XML

2002-11-25 Thread Geoff Hankerson
This seems to me to be more easily handled by XSLT. (Not the only option but a good one). XSLT lets you select only the nodes you want and also sort them as well. @ Edwin wrote: Hello, "Chris" <[EMAIL PROTECTED]> wrote: I'm trying to write PHP code that will not only parse the XML but also

Re: [PHP] Re: Sorting parsed XML

2002-11-26 Thread Geoff Hankerson
tuation. I don't really know enough about the programming challenge we are looking at to say for sure @ Edwin wrote: "Geoff Hankerson" <[EMAIL PROTECTED]> wrote: This seems to me to be more easily handled by XSLT. (Not the only option but a good one). XSLT lets you sel

[PHP] Decrypting mcrypted strings on Windows desktop

2002-12-02 Thread Geoff Caplan
- none can decrypt the string output by mcrypt. Can anyone help me out here - I am running out of time. Either an open source or a commercial solution would be fine. -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net

Re[2]: [PHP] Decrypting mcrypted strings on Windows desktop

2002-12-02 Thread Geoff Caplan
tion than this - the client is too far away to visit and not very technical... -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Adding to Apache access log from PHP

2002-12-21 Thread Geoff Caplan
ure I am on the right track b -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Controlling browser windows with php?

2003-02-09 Thread Geoff Lists
ted I need to know how to do this now! OR How to call an existing javascript to do it for me. Thank you. Heff. -- Geoff Hill Information Technology Training & Solutions A.B.N. 28 712 665 728 P.O. Box 7156 Lismore Heights, NSW, 2480. Ph: 02 6688 6381 -- PHP General Mailing List (http://ww

[PHP] Delimited file values behaving strangely...

2003-02-10 Thread Geoff Caplan
rk as expected. One clue: if I try and cast the values that are failing to int, the cast produces the value 0 (zero). On the other hand, the values that are working as expected cast from, say, the string 22 to the int 22 as expected. Never seen anything like this before - can anyone give me a p

Re[2]: [PHP] Delimited file values behaving strangely... SOLVED

2003-02-10 Thread Geoff Caplan
uggestions Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Image processing: tolerance of damaged files

2003-02-11 Thread Geoff Caplan
the customer has to load the images into PhotoShop and re-save, which seems to fix them most of the time. Do any of the other Linux libraries, such as Netpbm, handle damaged images more robustly? I would very much value any feedback - I don't have a lot of time for testing... Thanks -- Geo

[PHP] Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
which handle this quite well. Does anyone have anything similar in PHP? Thanks -- Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
Danny, DS> Well it's hardly rocket science - I'm afraid it's a bit more complicated than that. There are hypenated names, names with lower-case words like de and von, Irish style names (O'Connell), Scots style names (MacDonald, McCalman) etc etc. And there are exceptions in most of these cases to

[PHP] Re[2]: Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
t be too hard to port to PHP, I guess, if no-one has done it already. Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
son. It would be good to have a native PHP solution. I can't be the only one who needs to clean up names... Geoff Caplan -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
nd post it. Any farther ideas welcome, though. Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Capitalising Personal Names

2003-02-28 Thread Geoff Caplan
ake it as hassle free as possible. I suspect he is right. So we will do the best we can automagically... The customer's staff can always correct the odd snafu manually when they review the order. Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re:[PHP] Capitalising Personal Names

2003-03-11 Thread Geoff Caplan
e rules to internationalise it. Once I have had some feedback, I will post the code somewhere, as there doesn't seem to be anything like this in PHP, for some reason. Cheers Geoff Caplan Advantae Ltd http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscri

[PHP] touch( ) behaving oddly

2003-07-04 Thread Geoff Caplan
m the shell. Can anyone explain what is happening here?? -- Geoff Caplan Advantae Ltd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Need Some Basic Help with Arrays

2003-07-11 Thread Geoff Caplan
e more the language will reward you... Geoff Caplan Advantae -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re:[PHP] excel 2 csv 2 mysql

2003-04-01 Thread Geoff Caplan
> examples out there ? fopen gave me binary code :| -- Geoff Caplan Advantae Ltd http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Shelling out to Aspell: Linux gurus please

2002-08-10 Thread Geoff Caplan
e of a Unix question that a PHP question, but I am under time pressure and any tips would be much appreciated. -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] Credit Card suggestions

2002-08-13 Thread Geoff Caplan
age of credit cards on computer networks, so what you are planning may even be illegal! -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Debugging with the Viim editor?

2002-08-29 Thread Geoff Caplan
Hi folks Has anyone got a PHP symbolic debugger working with the Vim editor? I would appreciate any tips about how this might be set up. -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Any netscape users out there?

2002-09-03 Thread Geoff Hankerson
Dan Ostrowski wrote: >I develop mostly in a Linux environment anymore, but I have a problem with Netscape >and PHP. Well, not so much with PHP but developing it with Netscape. > >Post data makes Netscape REFUSE to show the underlying source code! It's virtually >impossible to design form hand

Re: [PHP] XML vs Everything Else

2002-09-03 Thread Geoff Hankerson
> > >Can anyone direct me to a page with xml in use? Something that can help me >grasp what its all about. > > > I didn't understand xml at all until I started using it . I asked pretty much the same question as you (what is it good for?). Now I will almost always use xml in any app I work o

Re: [PHP] XML vs Everything Else

2002-09-04 Thread Geoff Hankerson
Rodrigo Dominguez wrote: >I'm writting an application, a control panel for a web site, and it will be >great if I can separe data from presentation, I know that I have to work >with XML and XSL but I didn't understand how it works. > >Can you give me a simple example? > >Let guess that a client r

[PHP] Re: XML vs Everything Else

2002-09-04 Thread Geoff Hankerson
Javier Montserat wrote: >> Spend some time learning about xml and you won't regret it > > > Could you (or anyone else on the list) recommend some good resources > (Books / Websites) for learning XML and XSLT? > > Thanks, > > Javier > > > > http://www.devshed.com/Server_Side/XML http://www.x

Re: [PHP] XML doubt

2002-09-04 Thread Geoff Hankerson
Rodrigo Dominguez wrote: >I don't know how to work with XML... I know that it's a good standard to >pass information between computer or applications, but I don't know how to >separe my data from my presentation on my PHP projects. > >I always use OOP, I organize all the data in databases and cla

Re: [PHP] XML doubt

2002-09-04 Thread Geoff Hankerson
Forgot a step: (1C) make an xslt stylesheet which is basically just a beefed-up html page. Check out devshed.cm xml.com and w3c.org for info on xslt stlyesheets Geoff Hankerson wrote: > Rodrigo Dominguez wrote: > >> I don't know how to work with XML... I know that it

Re: [PHP] XML doubt

2002-09-05 Thread Geoff Hankerson
d and it starts >to put the content of the query into index.xml, but [Proccess 1] is still >working with index.xml > >What happends? > >"Geoff Hankerson" <[EMAIL PROTECTED]> escribió en el mensaje >[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >

Re: [PHP] sort dinamic generated table

2002-09-05 Thread Geoff Hankerson
Rodrigo Peres wrote: >Hi, > >I have a resume system that put a rank in it resume at runtime. example: If >you do a serach for each match that it finds it atribute 1 point, now I need >to sort the generated list based in this rank, how can i do this, since this >rank is dinamic and isn't in databa

[PHP] curl_init() ??

2002-09-12 Thread Geoff Lists
ipt to simulate POST method as though the data was being sent from a form. TIA -- Geoff Hill Information Technology Training & Solutions A.B.N. 28 712 665 728

Re: [PHP] php nuke problem

2002-09-12 Thread Geoff Hankerson
I think you need change permissions the file that holds configurations settings for php-nuke. Read the install instructions it's in there chmod 665 config.ini or whatever the name of the file is Ryan A wrote: >Hey guys, >I just setup php nuke (damn,thats a big package) but the problem is that

Re: [PHP] Windows Authoring Tools

2002-09-12 Thread Geoff Hankerson
jEdit is nice www.jedit.org Seán Dillon wrote: >As an fan of Homesite for many years I'm a little annoyed I can >no-longer purchase the product seperately, so am going to be >stuck with v5.0 as I don't fancy the idea of forking out >for Dreamweaver MX. > >I'm looking for (hopefully) a GNU/GPL Op

[PHP] Unserialize stopped working after php & db upgrade

2002-09-18 Thread Geoff Caplan
affected, nor are the strings urlencoded. I have no idea how to go about fixing this and I am under serious pressure to get the server back up ASAP - so I am very much hoping that to get a response from the list. -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com

[PHP] Re: Unserialize stopped working after php & db upgrade

2002-09-18 Thread Geoff Caplan
t;;s:3:"555";s:13:"attribute_232";s:3:"460";s:13:"attribute_233";s:1:"C";s:13:"attribute_234";s:1:"B";s:13:"attribute_235";s:1:"C";}s:5:"lists";a:20:{s:14:"list_2_1_label";s:0:"";

[PHP] Unserialize stopped working after php & db upgrade

2002-09-18 Thread Geoff Caplan
ain, -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is php even right for this design?

2002-09-19 Thread Geoff Hankerson
> > >3)Reporting. >I think I can get by with HTML reports for the most part. however checks >and tax forms require precisely positioned reporting abilities. >I think that I will be better off using an external reporting >application (crystal,access,FoxPro etc) to generate these reports.

[PHP] Re: Unserialize stopped working after php & db upgrade

2002-09-20 Thread Geoff Caplan
th the guts of the serialized string. Thanks again for helping out... -- Geoff Caplan Advantae Ltd mailto:[EMAIL PROTECTED] http://www.advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP & XML

2002-10-15 Thread Geoff Hankerson
A few ideas: 1. I have been setting up a system to do almost exactly what you are doing (database --> xml --> xslt-->html via a custom class) and have not noticed any significant performance hit, but this is not in production so your mileage may vary, but my gut feeling is the performance hit i

Re: [PHP] Re: PHP & XML

2002-10-16 Thread Geoff Hankerson
Ultimately it's about flexibility and seperating content from presentation.Even if you don't have sites that need to be output into multiple formats you will almost cetainly need to redesign some or all of the presentation at some point even if it is only in html. Have you ever had your boss/

Re: [PHP] xml parsing

2002-10-17 Thread Geoff Hankerson
Change xml into a different type of xml sounds like a job for the xslt functions. Works like a charm Michael Ransburg wrote: >Hi! > >I understand that it's easily possible to parse xml documents with php. >But what about changing them? With other xml parsers, I have the xml >document in a struc

Re: [PHP] XML and XLS Sablotron

2002-10-30 Thread Geoff Hankerson
Basically SAX and DOM are for parsing xml and xslt is for transforming xml into html, svg, wml, pdf and the like. So it sounds like you want to use xslt. Daniele Baroncelli wrote: Dear all, I am just approaching to XML and I would need some explanation, which most of you will probably consider

Re: [PHP] *.PHP "save-as" dialog

2002-11-05 Thread Geoff Hankerson
Did you try getting rid of the stuff? Lee Philip Reilly wrote: Hi there, I posted this message yesterday: -- I recently upgraded from PHP version 4.0-ish to 4.2.3 on my Linux/Apache machine. AFAIK, Apache is setup correctly (it serves HTML) and PHP works, but only from the command lin

[PHP] PHP OOP

2003-10-01 Thread Geoff Hellstrand
I'm working for the first time with object orientated programming in php and I can't figure out how to access elements or methods when you place objects inside objects inside other objects. my origonal idea was to use the following syntax: $a->b->c but this just returns: $a->b . "->c" Please, n

Re: [PHP] Cleaning up my messy code

2003-10-08 Thread Geoff Hankerson
Here is what I would do (this advice and a buck will buy you a cup of coffee): First, I'd take my existing code, look over it and ask, Where am I doing the same thing over and over? Code that is repetitive is a prime candidate for using functions or objects. Objects are easier to maintain for

[PHP] Re: PHP Accelerator Support?

2004-01-05 Thread Geoff Caplan
anned to m> be in the thousands, so any kind of help would be much appreciated. I have used PHP Accelerator for medium-traffic implementations with no problems. It should scale OK: as I understand it it used by Yahoo on some of their properties. Why not drop the author a line? Geoff Caplan

Re: [PHP] How to do this? 6 lines of code...Parse error

2004-01-05 Thread Geoff Caplan
or elseif(!isset($product$i) { echo "Product" .$i. " is NOT set!"; } In this case, as it seems to be a boolean test, the first is superior, I think. The second test adds nothing... Geoff Caplan Advantae -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Multiple RDBMS in one request

2004-01-14 Thread Geoff Caplan
stalled on my current server. Any info most welcome -- Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Multiple RDBMS in one request

2004-01-14 Thread Geoff Caplan
WH> any "joins" between them or sharing data in any way Sure: that would be a bit too much to expect! Cheers Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Automatic documentation: call for help with C++

2001-03-19 Thread Geoff Caplan
be employed. Ideally, the interface would allow the user to select from a range of markup styles, rather than impose a style on all users... Any takers? Geoff Caplan Caplan Associates 33 Pytchley House Brown's Green Birmingham B20 1DN United Kingdom Voice: (+44) 0121-515 1154 mailto:[

Re: [PHP] Checking if a web, a url really exists ?

2001-03-19 Thread Geoff Caplan
Steve wrote: SH> Anybody got an idea on how to check if a url really exists ? Look at the function url_responds() in class.Validator.php3 from http://www.thewebmasters.net. This is a useful general validation class open sourced on the Gnu licence. Cheers Geoff Caplan mailto:[EMAIL PROTEC

Re[2]: [PHP] Automatic documentation: call for help with C++

2001-03-19 Thread Geoff Caplan
Hi folks Harshdeep Jawands wrote, HSJ> I'll try and have a look at ROOT and evaluate its suitability. That would be a helpful first step. I just don't have the background to understand the documentation well enough to get a handle on its capabilities. -- Best re

[PHP] Problems compiling DBG debugger

2001-04-23 Thread Geoff Caplan
n the ./buildconf script I get "permission denied" from every script called. I can only run each script by manually adding "x" to its permissions - but this surely can't be the right way... I am new to compiling on *nix so I am probably making an elementary error. Can any

[PHP] Anyone got the new Postgres 7.1 .rpms working?

2001-04-24 Thread Geoff Caplan
rpm or am I doing something dumb? My linux skills are basic so any help would be much appreciated Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e

[PHP] Newbie struggling to set $PGDATA

2001-04-25 Thread Geoff Caplan
ll. But none of the postgres utilities such as "initdb" seem to be able to find it. What don't I understand? I have already checked the docs/GreatBridge manual/faqs/archive, so I would very much appreciate some help. Geoff Caplan PS sorry for the garbled duplicate posting - new mai

Re: [PHP] PostgreSQL vs. Interbase

2001-05-11 Thread Geoff Caplan
er binary builds for a number of platforms. Looks like the Firebird fork is the one with the future. Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] How good is the Interbase/Firebird API?

2001-05-11 Thread Geoff Caplan
under load? Also, I see from the archive that someone was having problems getting the API to function under Windows. Does anyone have this working ok? Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] How good is the Interbase/Firebird API?

2001-05-11 Thread Geoff Caplan
under load? Also, I see from the archive that someone was having problems getting the API to function under Windows. Does anyone have this working ok? Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] How good is the Interbase/Firebird API?

2001-05-11 Thread Geoff Caplan
under load? Also, I see from the archive that someone was having problems getting the API to function under Windows. Does anyone have this working ok? Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] How good is the Interbase/Firebird API?

2001-05-11 Thread Geoff Caplan
under load? Also, I see from the archive that someone was having problems getting the API to function under Windows. Does anyone have this working ok? Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] PHP's OO is bad?

2001-05-14 Thread Geoff Caplan
well designed OOP can offer significant gains in maintainability and reusability with complex applications... Geoff Caplan Insight Professional -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP] Input buffer overflow with Apache

2001-05-14 Thread Geoff Caplan
tting the same error as before, with Apache refusing to start. Can't find anything to help on the web, so I would very much appreciate some advice Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EM

Re: [PHP] Redeclaring functions

2002-01-13 Thread Geoff Caplan
stick any values you need inside that. I find that PHP is great for very late binding - there is usually a way if you look for it... Geoff Caplan Advantae Ltd > As a small, personal, "enjoy-myself"-project I'd like to run a > perpetual-running socket server. Problem is; I als

[PHP] Creating rich interfaces for web applications??

2002-01-14 Thread Geoff Caplan
library I can find is dynapi, which looks promising but is still a bit limited so far as functionality goes and the documentation is kinda thin. Do any of you folks know of a workable way to do this - either commercial or open source?? Any pointers would be much appreciated Geoff Caplan. -- PHP

Re: [PHP] CSS Editors

2002-01-14 Thread Geoff Caplan
Hi > TopStyle - http://www.bradsoft.com > I endorse that - it is an excellent product. And for casual use, they have a free version with nags. Geoff Caplan Advantae.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comma

Re: [PHP] Creating rich interfaces for web applications??

2002-01-14 Thread Geoff Caplan
to include some CRM stuff, so I would also like calendar widgets and stuff like that. But it must be fast and reliable. So maybe HTML is still the only way to go. Geoff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [

Re: [PHP] Creating rich interfaces for web applications??

2002-01-14 Thread Geoff Caplan
of commercial plugin that does this and will work with PHP. You can do forms in Flash, and they seem to be stable, but they are much too slow. Geoff Caplan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

  1   2   3   >