[PHP] how to trigger incomming mail

2001-01-19 Thread Jeroen Olthof
incompleet and when another mail arrives on the payment address, filter order nummer again so I can look in the database to see if it there, to compleet the payment kind regards Jeroen Olthof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] who added the damn slashes?

2002-04-15 Thread Jeroen Olthof
to use back en next in the wizard form. But every time the slashes are added ! What is the solution PHP version 4.0.3pl1 server is running a slash admin interface (so upgrading is a bit difficult) what to do , to avoid those auto addslasshes ??? kind regards Jeroen Olthof -- PHP General

[PHP] ecTemplate

2001-09-24 Thread Jeroen Olthof
the ecTemplate class is going to parse the html file and replaces the code special tags with te result of your php code. Just try it out and you will see it works really handy look here for a live excample http://www.millipede.nl/ectemplate greetings Jeroen Olthof -- PHP General Mailing List (http

Re: [PHP] ecTemplate

2001-09-24 Thread Jeroen Olthof
response ??? Joao Prado Maia [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Mon, 24 Sep 2001, Jeroen Olthof wrote: look here for a live excample http://www.millipede.nl/ectemplate And how is ecTemplate different from PHPLIB's Template system ?

[PHP] Don't tell me this isn't possible (object related question)

2001-11-30 Thread Jeroen Olthof
kind regards Jeroen Olthof -- 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] change user after uploading file using a form

2001-08-21 Thread Jeroen Olthof
and I'm a real user there. is it possible to change user ? kind regards Jeroen Olthof -- 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] ob_start()

2001-09-03 Thread Jeroen Olthof
Can I increase speed by using this to buffer output ? kind regards Jeroen Olthof -- 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] adding functions to a class

2001-09-04 Thread Jeroen Olthof
that are allready in the class) is there a why to do this ?? kind regards Jeroen Olthof -- 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]

Re: [PHP] adding functions to a class

2001-09-04 Thread Jeroen Olthof
looking for is the OOP class extension. Look for extends. Sean C. McCarthy SCI, S.L. (www.sci-spain.com) Jeroen Olthof wrote: hi, picture I have a class with some variable holding the information of this class. Now there are some functions to manipulate the vars. well, you nou what

[PHP] Undefined class name 'parent'

2001-09-04 Thread Jeroen Olthof
when I use parrent::function() to use parent class function from the child (extended one) I get Undefined class name 'parent' What I'm I doing wrong kind regards Jeroen Olthof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] parent failer ?

2001-09-05 Thread Jeroen Olthof
is going wrong here ??? kind regards Jeroen Olthof -- 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] Re: parent failer ?

2001-09-05 Thread Jeroen Olthof
-sysvshm' '--enable-track-vars' '--enable-yp' '--enable-ftp' '--without-mysql' '--with-xml' Jeroen Olthof [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... hi, again (sorry) when I run this code (straight from the manual) ? class A { function

[PHP] NEW !! ecTemplate !! NEW

2001-09-11 Thread Jeroen Olthof
Jeroen Olthof Netherlands -- 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] ecTemplate !!!

2001-09-12 Thread Jeroen Olthof
try it out and let me know what u think of it please ?! http://www.millipede.nl/ectemplate kind regards Jeroen Olthof -- 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

[PHP] string replace using ereg

2001-07-16 Thread Jeroen Olthof
tag and the last of the close tag ?? please help, kind regards Jeroen Olthof $ASSIGN = array(test = this is a test ) $OPENTAG = ; $CLOSETAG = ; while ($line[$i]) { ereg($OPENTAG.([^*]*).$CLOSETAG, $line[$i], $regs); $newString .= str_replace($this-OPENTAG.$regs[1].$this-CLOSETAG

Re: [PHP] regexp. king needed (is it possible ???)

2001-07-17 Thread Jeroen Olthof
content closetag1 somthing else' ? $content = '?=$content?';br $new_str = '?=$new_str?' -Original Message- From: Jeroen Olthof [mailto:[EMAIL PROTECTED]] Sent: 17 iulie 2001 17:38 To: [EMAIL PROTECTED] Subject: [PHP] regexp. king needed (is it possible ???) ereg_replace(

[PHP] Just like to know

2001-07-18 Thread Jeroen Olthof
hi, here's a little question. I like to know what is better and WHY ?? $string = bla bla $somevar bla bla bla $somevar$somevar bla; of $string = bla bla .$somevar. bla bla bla .$somevar.$somevar. bla; kind regards Jeroen Olthof -- PHP General Mailing List (http://www.php.net

[PHP] SDO_DAS_Relational limitations

2006-08-18 Thread Jeroen Olthof
myself. Is it usefull or don't I understand the stratergy? what to do with the many to many relationships, the composite keys and multiple foreignkeys per table ??? kind regards Jeroen Olthof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] preg_replace works on normal string but not with a string build from a file

2002-12-03 Thread Jeroen Olthof
both modifiers gets it all to work! Thx for the tip! Kind regards Jeroen Olthof, John W. Holmes [EMAIL PROTECTED] schreef in bericht 000801c29af6$a1a28450$7c02a8c0@coconut">news:000801c29af6$a1a28450$7c02a8c0@coconut... take a look at the following code basic problem is,

[PHP] Re: XTemplate

2002-12-04 Thread Jeroen Olthof
http://www.millipede.nl/ectemplate very fast!! , no overhead functions, it does what it needs to do, separate your code from the html. take a look greetings, Henry [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi All, I'm looking for a way to seperate my

[PHP] preg_replace works on normal string but not with a string build from a file

2002-12-03 Thread Jeroen Olthof
!!! kind regards Jeroen olthof, ?php $opentag = '!-- #LOOP-START:aaa --'; $closetag = '!-- #LOOP-END:aaa --'; // building the string in this script will give the wanted result $string = '?xml version=1.0 encoding=iso-8859-1?'; $string .= '!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http