Re: [PHP] Deprecated configure options

2008-03-08 Thread Thijs Lensselink
Ian M. Evans wrote: Was just upgrading to 5.2.5 and used the same configure line as I used for 5.2.0. Got the following notice: "Notice: Following unknown configure options were used: --enable-pic --with-dom --with-png --with-xml --enable-track-vars --enable-trans-sid --enable-yp --enable-mbst

[PHP] send form by email with image spam controler

2008-03-08 Thread Alain Roger
Hi, i would like to allow web site users to fill a form when they request information. the purpose is to have something standardized and later on to archive all those request into database. to avoid spammer, i was thinking to use a code image which change to each page refresh in order to be sure t

Re: [PHP] send form by email with image spam controler

2008-03-08 Thread Per Jessen
Alain Roger wrote: > Hi, > > i would like to allow web site users to fill a form when they request > information. > the purpose is to have something standardized and later on to archive > all those request into database. > to avoid spammer, i was thinking to use a code image which change to > eac

Re: [PHP] programming and design fees

2008-03-08 Thread Lamp Lists
--- Per Jessen <[EMAIL PROTECTED]> wrote: > Lamp Lists wrote: > > > now, I didn't have such a big project "on side" > ever. and I by default > > ALWAY suck in calculations how much time I need > for a project and what > > to charge. I think I need about 120 hrs (3 weeks) > to build this baby > > (

Re: [PHP] Generating JavaScript menus on-the-fly

2008-03-08 Thread tedd
At 3:01 PM -0600 3/7/08, Ken Kixmoeller wrote: Hey - - -- - -- -- I keep a profile of a user's rights and responsibilities in tables. Since this profile defines what a user can do in the system I am designing, I'd like to build a JavaScript menu navigation scheme. I need it to be driven progr

Re: [PHP] Newbie - Undefined Index Variable

2008-03-08 Thread tedd
At 11:59 AM -0800 3/7/08, revDAVE wrote: I have this: page1';}else{print 'page2';} ?> I will get the error: Notice: Undefined index: nowtoctype in ... If the variable has not yet been defined... Is there a way to check if this var is already defined? ... (and then I can define it - if not)

Re: [PHP] programming and design fees

2008-03-08 Thread tedd
At 7:06 AM -0800 3/8/08, Lamp Lists wrote: That's actually part I'm interested the most :D What is reasonable? Is reasonable for sucha project with complex product catalog and ordering system ask $10K? I think that's reasonable, because I've done similar as you described. I had one client wh

Re: [PHP] send form by email with image spam controler

2008-03-08 Thread tedd
At 10:08 AM +0100 3/8/08, Alain Roger wrote: Hi, i would like to allow web site users to fill a form when they request information. the purpose is to have something standardized and later on to archive all those request into database. to avoid spammer, i was thinking to use a code image which ch

Re: [PHP] programming and design fees

2008-03-08 Thread Lamp Lists
--- tedd <[EMAIL PROTECTED]> wrote: > At 7:06 AM -0800 3/8/08, Lamp Lists wrote: > > > >That's actually part I'm interested the most :D > What > >is reasonable? Is reasonable for sucha project with > >complex product catalog and ordering system ask > $10K? > > I think that's reasonable, because

[PHP] Links hierarchy maintenance

2008-03-08 Thread Adil Drissi
Hi, I'm working on a site that is becoming more and more bigger (containing more links). Now the problem of links maintenance arises. An intuitive idea that i'm trying to do right know is calling php functions that will display every part of the site that is repetitive. For example left side menu

Re: [PHP] SOAP PHP 5.2.5 and Outside WSDL's

2008-03-08 Thread Larry Garfield
From your samples below, if what they actually want is that snippet at the bottom, then you don't want to send SOAP. You want to send a REST response, vis, "some arbitrary, use-case-specific XML". In that case, don't use SOAP at all but use SimpleXML instead, then dump that to an XML string an

RE: [PHP] programming and design fees

2008-03-08 Thread tedd
At 11:12 AM -0500 3/8/08, Bastien Koert wrote: The hard part i find is getting the client to scope it out correctly. I started a job last year and it was to be a 10-15 page site to capture some information. So I contracted for $1500. Now its a year later, the client has changed his mind numerou

Re: [PHP] Links hierarchy maintenance

2008-03-08 Thread tedd
At 9:23 AM -0800 3/8/08, Adil Drissi wrote: I'm working on a site that is becoming more and more bigger (containing more links). Now the problem of links maintenance arises. An intuitive idea that i'm trying to do right know is calling php functions that will display every part of the site that i

Re: [PHP] Generating JavaScript menus on-the-fly

2008-03-08 Thread tedd
At 1:42 PM -0600 3/8/08, Ken Kixmoeller.com wrote: On Mar 8, 2008, at 9:17 AM, tedd wrote: At 3:01 PM -0600 3/7/08, Ken Kixmoeller wrote: Hey - - -- - -- -- I keep a profile of a user's rights and responsibilities in tables. Since this profile defines what a user can do in the system I am d

Re: [PHP] Generating JavaScript menus on-the-fly

2008-03-08 Thread Ken Kixmoeller.com
On Mar 8, 2008, at 9:17 AM, tedd wrote: At 3:01 PM -0600 3/7/08, Ken Kixmoeller wrote: Hey - - -- - -- -- I keep a profile of a user's rights and responsibilities in tables. Since this profile defines what a user can do in the system I am designing, I'd like to build a JavaScript menu na

Re: [PHP] Links hierarchy maintenance

2008-03-08 Thread Adil Drissi
Hi, Yes this is the correct way to do things. As i said, i'm using different styles for the menus links indicating the current page. Suppose my page has one horiontal menu at the top and one vertical menu at the left. In this case, one element of the horizontal menu and one from the vertical menu

[PHP] include() and current working directory

2008-03-08 Thread php
Hi, I'm using include to display a html file from a different directory to the current working directory. This page displays, but is missing all the CSS formating. I'm assuming this is because it can't find the CSS because it's in the different directory to the CWD. So, the easy way out

[PHP] Whats faster? simplexml_load_string or simplexml_load_file?

2008-03-08 Thread Lamonte
I was wondering this because at the moment using simplexml_load_file makes my script go at about 2 seconds per page load, in a loop. Then I created a cache system so it doesn't keep loading the xml file, but I'm wondering if theres a faster way to load xml QUICKER, is it possible with "file_ge

Re: [PHP] include() and current working directory

2008-03-08 Thread Jim Lucas
[EMAIL PROTECTED] wrote: Hi, I'm using include to display a html file from a different directory to the current working directory. This page displays, but is missing all the CSS formating. I'm assuming this is because it can't find the CSS because it's in the different directory to the CWD.