Re: [PHP] sql groups

2005-04-12 Thread Davy Obdam
Have a look here: http://lists.mysql.com/ Best regards, Davy William Stokes wrote: Know any good sql discussion groups for mysql? Thanks -Will -- Davy Obdam mailto:[EMAIL PROTECTED] web: http://www.davyobdam.com Discordianism: Where reality is a figment of your imagination -- PHP General

Re: [PHP] plug-in forum

2005-04-06 Thread Davy Obdam
, Ryan On 4/6/2005 8:50:12 AM, Davy Obdam ([EMAIL PROTECTED]) wrote: Hi Ryan, You might wanna take a look at PunnBB : http://www.punbb.org/ Best regards, Davy Ryan A wrote: Hi, a client wants me to add a forum to his existing site...which is not a problem, the problem is he

Re: [PHP] plug-in forum

2005-04-05 Thread Davy Obdam
tem i think it would be a little too complicated for them plus it has to sit into the existing design... recommendations please. Thanks, Ryan -- Davy Obdam mailto:[EMAIL PROTECTED] web: http://www.davyobdam.com Turn on, log in, fight spam. -- PHP General Mailing List (http://www.php.net

Re: [PHP] Mixing classes

2004-10-19 Thread Davy Obdam
() { //Create an instance of you database class global &$dbobject; $this->dbObject = $dbobject; } function doSomething() { // Execute a query $this->dbObject->query($sql); } } ?> Davy Obdam wrote: > Hi Tomi, You could create an object of the Database class in your

Re: [PHP] Mixing classes

2004-10-19 Thread Davy Obdam
, $arg2, $etc); } function doSomething() { // Execute a query $this->dbObject->query($sql); } } ?> I hope this helps Best regards, Davy Obdam Tomi Kaistila wrote: Hey! I've written several general classes, much as tools. One manages databases, one authenticates users, etc.

Re: [PHP] what is the best PHP editor?

2003-10-13 Thread Davy Obdam
Zend Studio is definatly my choice-), sometimes i use EditPlus too, to edit html/css/javascript, but all my PHP coding is done in zend studio. Best regards, Davy Jonathan Villa wrote: What's the matter? No one likes Zend Studio? On Mon, 2003-10-13 at 12:00, Chris Boget wrote: I currently

Re: [PHP] open source content management systems?

2003-07-28 Thread Davy Obdam
Hi Redmond, Take a look at http://www.opensourcecms.com/ On this site you can see opensource content management systems written in php in action. I found it to be very usefull. Best regards, Davy Obdam [EMAIL PROTECTED] wrote: hi all does anyone have any recommendations for good open

Re: [PHP] PHP should know my data!

2003-07-25 Thread Davy Obdam
ith PHP but I keep getting an error. HELP! Does anyone know if they plan to fix this bug in PHP5? LOL! -- ------- Davy Obdam Web application developer Networking4all email: [EMAIL PROTECTED] email: [EMAIL PROTECTED

Re: [PHP] PHP POS program

2003-07-17 Thread Davy Obdam
ch&start=0&start=0&ie=utf-8&oe=utf-8> And it also came up with : http://sourceforge.net/projects/phppointofsale/ And there are probably many more, or you could develope you own Best regards, Davy Obdam Angelo Zanetti wrote: Anyone know where I can download a demo point-of

Re: [PHP] Password generator

2003-06-17 Thread Davy Obdam
Thanks Lars and ofcourse all the other people who answerd. It works great!! Best regards, Davy Obdam Lars Torben Wilson wrote: On Tue, 2003-06-17 at 02:45, Davy Obdam wrote: Hi people, I have to make a password generator, but i have a little problem. - It needs to generate password 8

[PHP] Password generator

2003-06-17 Thread Davy Obdam
for your time, Best regards, Davy Obdam // This variable contains the list of allowable characters // for the password. Note that the number 0 and the letter // 'O&#

RE: [PHP] date() and mktime() functions: weeknumbers and months.

2003-03-31 Thread Davy Obdam
Thanks Jason and Marek, I was thinking to difficult, Thanks for the quick responses. Best regards, Davy Obdam > -Oorspronkelijk bericht- > Van: Jason Wong [mailto:[EMAIL PROTECTED] > Verzonden: maandag 31 maart 2003 16:36 > Aan: [EMAIL PROTECTED] > Onderwerp: Re: [

[PHP] date() and mktime() functions: weeknumbers and months.

2003-03-31 Thread Davy Obdam
y: ".date("Y-m-d", mktime(0,0,0,$mnth,$dy-date("w",mktime(0,0,0,$mnth,$dy,$yr)),$yr)).""; echo "next saturday: ".date("Y-m-d", mktime(0,0,0,$mnth,$dy+6-date("w",mktime(0,0,0,$mnth,$dy,$yr)),$yr)).""; $sql =

Re: [PHP] Controlling browser windows with php?

2003-02-09 Thread Davy Obdam
Hi Geoff, You cant do this with php... you will have to use JavaScript for opening a new window. You could write the function in the html of your page.. or use echo "<!-- your code //--> and call this function in your links, in your php script. Best regards, Davy Obdam Geoff

[PHP] Confirmation e-mail

2003-02-09 Thread Davy Obdam
achieve this? How is this usualy done? Any thoughts and help is appreciated. Best regards, Davy Obdam -- Davy Obdam - Obdam webdesign© mailto:[EMAIL PROTECTED] web: www.davyobdam.com

[PHP] Looping through the mysql_field_name function

2003-02-02 Thread Davy Obdam
succesfully... $i = 0; for($a=0; $a < sizeof(mysql_field_name($db->sqlResult, $i)); $a++) { echo mysql_field_name($db->sqlResult, $i).""; $i++; } Can anyone help me please.. Your help is greatly appreciated;-) Best regards, Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General

[PHP] Retrieving field name of Database

2003-02-02 Thread Davy Obdam
part of my database class. : /** * getXMLDocument * * Get the result of your query back in XML document * @authorDavy Obdam */ function getXMLDocument() { //Create XML document if(!$this->xmlDoc = domxml_new_doc("1.0")) {

[PHP] Re: [PHP-WIN] Register globals on and off

2003-01-30 Thread Davy Obdam
webserver... But its stil not working. I am i doing something wrong? Thanks for your time... Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Davy Obdam wrote: Hello people, On my development machine (win XP/Apache 2.0.44/PHP 4.3.0/MySQL 3.23.55) i have several websites that i made some time

Re: [PHP] Problem with xml_parse_into_struct

2003-01-29 Thread Davy Obdam
Hi Phil, Your XML is not well formed, not properly nested use: This way the XML parser wil accept and , otherwise it sees it as XML elements. I hope this helps. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Phil Powell wrote: I have various XML files that might contain <>

[PHP] Register globals on and off

2003-01-29 Thread Davy Obdam
option. However in my php.ini i have set register globals to Off because that better. Is it possible to configure my webserver/php so that only those sites that require register globals to be On have that setting, for instance in a .htacces file?? Any help is appreciated:-) Best regards, Davy Obdam

Re: [PHP] Multiple Emails

2003-01-29 Thread Davy Obdam
Hi John, Same thing here, sometimes i think havent i read this before??.. Best regards, Davy Obdam 1LT John W. Holmes wrote: Is anyone else getting multiple emails from this list? I'm about to jump on people for asking the same question 3 or 4 times, but maybe it's just

Re: [PHP] human language detection?

2003-01-26 Thread Davy Obdam
Hi Marco. Try the HTTP_USER_ACCEPT_LANGUAGE variable. It simply detects the language of the visitors browser. It wouldnt work for my cause i use an english version of Mozilla (i am dutch too), although 90% of the dutch visitors probably uses MSIE in dutch eh;-) Best regards, Davy Obdam

[PHP] Multitier applications using XML as an output format

2003-01-24 Thread Davy Obdam
direction here;-). Does anyone know some good tutorials about OOP and more specificly Multi Tier applications in PHP? Any thought and help is appreciated. Thanks for your time.. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] PHP 4.3 unable to load php_domxml.dll in WinXP Apache 2.0.43

2002-12-29 Thread Davy Obdam
, Davy Obdam mailto:[EMAIL PROTECTED] Rui Costa wrote: hi, Windows XP, Apache 2.0.43(Win32) with PHP 4.3 can't load DLL 'php_domxml.dll'. it pops-up: Unknown(): unable to load dll'C:\php\extensions\php_domxml.dll' if I use the old 'php_domxml.dll' from PHP 4.2.

[PHP] Re: [PHP-WIN] Tutorials on OOP

2002-12-23 Thread Davy Obdam
Hi people, Thanks for all the reply`s. I found the tuturials very usefull and much better then the most tutorials i have found so far, usualy with an example class car or something not very usefull Thanks, Davy Obdam mailto:[EMAIL PROTECTED] Davy Obdam wrote: Hi people,. I have to

Re: [PHP] Tutorials on OOP

2002-12-22 Thread Davy Obdam
sessionsDo u know any good sites where i can find tutorials/examples about this.? Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Justin French wrote: Both of those classes would already exist on a site like phpclasses.org... do you have to BUILD them, or do you NEED them? Justin on 23/12

[PHP] Tutorials on OOP

2002-12-22 Thread Davy Obdam
, Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Installing PEAR on windows

2002-12-14 Thread Davy Obdam
... Thanks... Best regards,.. Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Generating forms using OOP

2002-12-09 Thread Davy Obdam
Thanks scott, This might definatly come in handy later as i am new too OOP in PHP. I am now trying to generate a set of radio boxes... but without succes yet... Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Scott Hurring wrote: Here's an OOP function from an HTML class i wro

Re: [PHP] Just Curious

2002-12-08 Thread Davy Obdam
Mozilla 1.2.1 ;-) conbud wrote: I was just curious, but what program or website do you all use to view and reply to the newsgroups with ? Lee -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Generating forms using OOP

2002-12-06 Thread Davy Obdam
Hi Peter, Thanks for your help, but in this case i ve to build everythng up from the ground. Next time i`ll definatly take a look at smarty. It works now.. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Peter J. Schoenster wrote: On 7 Dec 2002 at 0:43, Davy Obdam wrote: I ve just

Re: [PHP] Generating forms using OOP

2002-12-06 Thread Davy Obdam
Hi Tom, Thanks it now works, .. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Tom Rogers wrote: Hi, Saturday, December 7, 2002, 9:43:47 AM, you wrote: DO> Hi People, DO> I ve just started with some OOP programming in PHP and now i have to DO> build a set of classes

[PHP] Generating forms using OOP

2002-12-06 Thread Davy Obdam
"Test3"; $test[] = "Test4"; $test[] = "Test5"; $select = new selectField("testje", $test); echo$select->generateSelectField(); But all i get is a select box with the word Array in it 5 times...Thanks for your time... Best regards, Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Mccrypt installation?

2002-11-16 Thread Davy Obdam
produces a error message.. Thanks Best regards, Davy Obdam mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Installing extensions (winXP)

2002-11-14 Thread Davy Obdam
alled as a apache(sapi) module. Can anyone help me, any help is apreciated. Also wich extensions should i use or wich are most commonly used? Thanks already... Best regards, Davy Obdam mailto:info@;davyobdam.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

RE: [PHP] Query problem

2002-11-12 Thread Davy Obdam
get 'things' after vacations eh? ;-) I think you forgot a ' somewhere... $query = "INSERT INTO mararegistro (visitorid, fname, lname, borndate, address, city, country, phone, how) VALUES (null, 'c', 'c', '12', 'c', 'c', 'c'

RE: [PHP] How-to instal GD libary

2002-11-07 Thread Davy Obdam
hp... > Thanks for your help;-) Best regards, Davy Obdam mailto:info@;davyobdam.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How-to instal GD libary

2002-11-07 Thread Davy Obdam
Hi people,. Can anyone tell me how to install the GD libary. I use Apache 2.0.40 and PHP 4.2.3 on a windows XP machine at home. Thanks already Best regards, Davy Obdam mailto:info@;davyobdam.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

RE: [PHP] Apache 2 and PHP

2002-11-07 Thread Davy Obdam
this? Best regards, Davy Obdam mailto:info@;davyobdam.com > -Oorspronkelijk bericht- > Van: Johnson, Kirk [mailto:kjohnson@;zootweb.com] > Verzonden: donderdag 7 november 2002 16:26 > Aan: [EMAIL PROTECTED] > Onderwerp: [PHP] Apache 2 and PHP > > > Last I hear

RE: [PHP] back and forward through a result query

2002-10-29 Thread Davy Obdam
Hi Petre Why not use LIMIT in your query? Like this: ".$sql['id'].""; } //navigation Echo" ".($prev>=0?"Previous page":"")." ".($total_count>=$next+1?"Next page":"")."&quo

RE: [PHP] for??????

2002-10-28 Thread Davy Obdam
e = mysql_num_rows($result)-1; This is shorter, and its not necessary to do - 1 i think Best regards, Davy Obdam mailto:info@;davyobdam.com > -Oorspronkelijk bericht- > Van: Bsantos PHP [mailto:bruno.santos@;mf.pt] > Verzonden: maandag 28 oktober 2002 18:23 >

RE: [PHP] Re: Need help with HTTP-Authentication

2002-10-18 Thread Davy Obdam
m with sessions instead, or cookies. What would u use and why? What excactly do u mean with timeouts? > I know this hasnt been any help, sorry! Thats okay;-) Keeps the discusion alive;-) Best regards, Davy Obdam, mailto:info@;davyobdam.com -- PHP General Mailing List (http://www.php.net

[PHP] Need help with HTTP-Authentication

2002-10-15 Thread Davy Obdam
greatly apreciated. Thanks already;-)Maybe some examples?? ;-) Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTTP-authentication

2002-10-15 Thread Davy Obdam
first person (myself), but i am unable to login with the second user. Here is my code, i hope someone can help me..:) Thanks already.. Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] An small SQL problem

2002-10-13 Thread Davy Obdam
Hi Brad, Oooops. I think i better go and read your excelent book MySQL/PHP database applications agian.. Best regards, Davy Obdam mailto:[EMAIL PROTECTED] Brad Bulger wrote: >what database are you using? because the answer is different, depending. > >on postgres, for examp

Re: [PHP] An small SQL problem

2002-10-12 Thread Davy Obdam
regards, Davy Obdam mailto:[EMAIL PROTECTED] Christian Ista wrote: >Hello, > >I'm probably sleepy because I can't do a very easy query. :( > >I have 2 tables TableA(FieldA1, FieldA2, FieldA3) and TableB(FieldB1, >FieldB2, FieldB3). > >I'd like to see

[PHP] RE: [PHP-WIN] Re: [PHP] confirm box

2002-10-09 Thread Davy Obdam
Hi Archie, Thanks it works. Great i knew i was forgetting something. Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -Original Message- From: Archibald Zimonyi [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 4:44 PM To: Davy Obdam Cc: PHP Mailinglist; PHP-WIN

[PHP] confirm box

2002-10-09 Thread Davy Obdam
else { return true; } } //--> This is what i use in my PHP code: "; //The rest of my form echo " "; ?> Any help is appreciated, thanks for your time, Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -- PHP General Mailing List (h

RE: [PHP] Database help

2002-10-07 Thread Davy Obdam
; //The rest of your table } I hope this helps Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -Original Message- From: Jef [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 12:53 AM To: [EMAIL PROTECTED] Subject: [PHP] Database help I am querying a database to

[PHP] Deleting multiple items from database using checkboxes

2002-10-07 Thread Davy Obdam
em, but it only deletes one item from the database, my query looks like this : DELETE FROM gastenboek WHERE entryID=$dele . Can anyone help me. Thanks for your time. Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] RE: [PHP-WIN] RE: [PHP] Re: Using date() function

2002-10-06 Thread Davy Obdam
Hi John, How do u use UNIX_TIMESTAMP or DATE_FORMAT in your query. My query now looks like this: "SELECT * FROM guestbook2002 ORDER BY entryID DESC LIMIT $entry, $show"; Can u help me;-) Thanks for your time Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -Origin

RE: [PHP] Re: Using date() function

2002-10-06 Thread Davy Obdam
12:56..? Wierd eh? Do u know a solution? Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Sunday, October 06, 2002 1:59 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] Re: Using date() function Firs

[PHP] Using date() function

2002-10-06 Thread Davy Obdam
uot;]'); echo $entry_date; But then i dont get the date i need. It says Thursday, 01 January 1970 01:00:00 (i wasn`t even born then;-), so it wasn`t me signing that guestbook. Any sugestions what i am doing wrong. Thanks for your time. Best regards, Davy Obdam, mailto:[EMAIL PROTECTED] --