Re: [PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread Dave Goodchild
View the source, you have this: which is not closed, therefore everything after it will be blue.

[PHP] Re: everything printed suddenly has blue text, as if were a link

2007-04-26 Thread Jonathan
Thufir wrote: When I print out my list of apartments, everything after , which is grabbed via is suddenly blue. So, the first few are fine, have black text, after that it's all blue. Do I put some html

[PHP] Re: problem with shared object file

2007-04-26 Thread Colin Guthrie
Marten Lehmann wrote: > Hello, > > I'm trying to include a shared object file with the function dl(). But I > always get: > > Warning: dl() [function.dl]: Unable to load dynamic library > '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared > object file: No such file or director

Re: [PHP] problem with shared object file

2007-04-26 Thread Tijnema !
On 4/26/07, Marten Lehmann <[EMAIL PROTECTED]> wrote: Hello, I'm trying to include a shared object file with the function dl(). But I always get: Warning: dl() [function.dl]: Unable to load dynamic library '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared object file: No suc

[PHP] Re: problem with shared object file

2007-04-26 Thread Colin Guthrie
Marten Lehmann wrote: > Hello, > > I'm trying to include a shared object file with the function dl(). But I > always get: > > Warning: dl() [function.dl]: Unable to load dynamic library > '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared > object file: No such file or director

Re: [PHP] problem with shared object file

2007-04-26 Thread Stut
Marten Lehmann wrote: I'm trying to include a shared object file with the function dl(). But I always get: Warning: dl() [function.dl]: Unable to load dynamic library '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared object file: No such file or directory in /homepages/xyz

[PHP] Re: problem with shared object file

2007-04-26 Thread Colin Guthrie
Marten Lehmann wrote: > Hello, > > I'm trying to include a shared object file with the function dl(). But I > always get: > > Warning: dl() [function.dl]: Unable to load dynamic library > '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared > object file: No such file or director

Re: [PHP] Problems installing php with pdflib

2007-04-26 Thread Tijnema !
On 4/25/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Tue, April 24, 2007 7:39 am, Tijnema ! wrote: > On 4/17/07, Richard Lynch <[EMAIL PROTECTED]> wrote: >> On Sat, April 14, 2007 3:55 am, Merlin wrote: >> > I am moving to a new box and want to install php with pdflib >> again. >> > After conf

Re: [PHP] WBEM

2007-04-26 Thread Tijnema !
On 4/20/07, Tobias Wurst <[EMAIL PROTECTED]> wrote: is there any *PHP* WBEM- library like this: http://sourceforge.net/projects/pywbem/ There's no such thing as a PHP-WBEM yet, you might want to write it :) If you don't have time for that, and you still need it, you could make use of the Pyth

Re: [PHP] slow performance

2007-04-26 Thread Robin Vickery
On 25/04/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Wed, April 25, 2007 5:09 am, Zoltán Németh wrote: > 2007. 04. 25, szerda keltezÃ(c)ssel 11.53-kor Henning Eiben ezt írta: >> Zoltán NÃ(c)meth schrieb: >> > not exactly. it pre-compiles them to opcodes and stores the opcode > blocks. the i

[PHP] problem with shared object file

2007-04-26 Thread Marten Lehmann
Hello, I'm trying to include a shared object file with the function dl(). But I always get: Warning: dl() [function.dl]: Unable to load dynamic library '/homepages/xyz/util.so' - /homepages/xyz/util.so: cannot open shared object file: No such file or directory in /homepages/xyz/test.php on l

Re: [PHP] define() an array?

2007-04-26 Thread Tijnema !
On 4/20/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Fri, April 20, 2007 4:46 am, [EMAIL PROTECTED] wrote: > I thought I could define() and array. However, when I do this: Nope. :-( Has to be string or int or boolean or float or other "scalar" type. > define("THECONSTANT", array(1,2,3)); >

Re: [PHP] Re: first script

2007-04-26 Thread David Robley
Richard Lynch wrote: > > > On Fri, April 20, 2007 5:38 pm, Thufir wrote: >> Richard Lynch l-i-e.com> writes: >> >>> >>> On Fri, April 20, 2007 2:05 pm, Thufir wrote: >>> >>> Please tell me that's not your real name... >> [...] >> >> It's the name I use on the internet. > > That's fine. You ca

[PHP] Re: php + db2

2007-04-26 Thread Man-wai Chang
build test failed. Please check the config.log for details. You need to source your DB2 environment before running PHP configure: # . $IBM_DB2/db2profile so where is your db2profile? -- .~. Might. Courage. Vision. Sincerity. http://www.linux-sxs.org / v \ Simplicity is Beauty! May the For

[PHP] Fwd: php + db2

2007-04-26 Thread Javier Ruiz
Ok, I've seen something... I'm trying to compile php with db2 support but also with oracle support using oracle-instantclient. If I remove the oracle options (with-oci8 and with-pdo-oci), configure passes the ibm-db2 tests, but using oracle-instantclient + db2 seems to be problematic... Anybody?

Re: [PHP] move "if" logic from php into query

2007-04-26 Thread Sebe
Chris wrote: Thufir wrote: I couldn't get the page to load when the logic for line 31, "($id == $_POST[recordID])", was in the query. Can the logic for that be moved to the query? I expect so. $query = "SELECT contacts.id, px_items.id, title, notes FROM contacts, px_items WHERE contacts

Re: [PHP] move "if" logic from php into query

2007-04-26 Thread Chris
Thufir wrote: I couldn't get the page to load when the logic for line 31, "($id == $_POST[recordID])", was in the query. Can the logic for that be moved to the query? I expect so. $query = "SELECT contacts.id, px_items.id, title, notes FROM contacts, px_items WHERE contacts.id=px_items.id

Re: [PHP] move "if" logic from php into query

2007-04-26 Thread Zoltán Németh
2007. 04. 26, csütörtök keltezéssel 08.28-kor Thufir ezt írta: > I couldn't get the page to load when the logic for line 31, "($id == > $_POST[recordID])", was in the query. Can the logic for that be moved to the > query? I expect so. > > I tried changing the where clause of the query, no go.

[PHP] php + db2

2007-04-26 Thread Javier Ruiz
Hi I'm trying to install php-5.2.1 using ibm-db2. I made this a couple times already without any problem, but in this concrete machine I cannot pass the configure script... My problem is with the db2 enviroment. Before issuing configure with all the options, I sourced the db2profile file as alwa

Re: [PHP] Re: PHP & Text Messaging

2007-04-26 Thread clive
Michelle Konzack wrote: > I buy from several European GSM-Providers bigger contingents of SMS's and have per SM-Provider 4-16 SIM-Cards... (My Server has 64 Siemens S40 attached) I pay per SMS 0.024 to 0.042 Euro and sell it for 0.06 to 0.18 Euro. The clients do Pre-Pay which mean I have no ris

[PHP] move "if" logic from php into query

2007-04-26 Thread Thufir
I couldn't get the page to load when the logic for line 31, "($id == $_POST[recordID])", was in the query. Can the logic for that be moved to the query? I expect so. I tried changing the where clause of the query, no go. [EMAIL PROTECTED] ~]$ [EMAIL PROTECTED] ~]$ cat /var/www/html/insertCon

<    1   2