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
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] plug-in forum

2005-04-06 Thread Davy Obdam
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 wants it to work off his

Re: [PHP] Mixing classes

2004-10-19 Thread Davy Obdam
$this-dbObject = new Database($arg1, $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

Re: [PHP] Mixing classes

2004-10-19 Thread Davy Obdam
= ; function auth () { //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 Auth

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

2003-10-14 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-29 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
anyone know if they plan to fix this bug in PHP5? LOL! -- --- Davy Obdam Web application developer Networking4all email: [EMAIL PROTECTED] email: [EMAIL PROTECTED] internet: http://www.networking4all.com

Re: [PHP] PHP POS program

2003-07-17 Thread Davy Obdam
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-sale program from? preferably written in php and preferably a point

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 ?php // A function to generate random alphanumeric passwords in PHP // It expects to be passed a desired password length, but it // none is passed

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

2003-03-31 Thread Davy Obdam
next saturday: .date(Y-m-d, mktime(0,0,0,$mnth,$dy+6-date(w,mktime(0,0,0,$mnth,$dy,$yr)),$yr)).b r /; $sql = SELECT * FROM news WHERE date='$last_sunday' AND date='$next_saturday'). But i would find it better to use a weeknumber instead Best regards, Davy Obdam - Networking4all Webapplication

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

Re: [PHP] Controlling browser windows with php?

2003-02-09 Thread Davy Obdam
script. Best regards, Davy Obdam Geoff Lists wrote: Hi, I'm relatively new to php and neither of the books I am using for reference mention anything about controlling a child window. What is the correct syntax to: open window( width, height, menu, scrollbars) and position it on the screen

[PHP] Confirmation e-mail

2003-02-09 Thread Davy Obdam
to 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] Retrieving field name of Database

2003-02-02 Thread Davy Obdam
* @authorDavy Obdam */ function getXMLDocument() { //Create XML document if(!$this-xmlDoc = domxml_new_doc(1.0)) { die([ERROR] Cant create XML document); } // Create root element $this-root_element = $this-xmlDoc-create_element

[PHP] Looping through the mysql_field_name function

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

[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] 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 me getting

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: news id=1 shortDescription=Stuff Happened Today![CDATA[Today on b1/29/03/b, stuff happened]]/news This way the XML parser wil accept b and /b, otherwise it sees it as XML elements. I hope this helps. Best regards, Davy Obdam

[PHP] Register globals on and off

2003-01-29 Thread Davy Obdam
is not an 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] 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.4, it works fine. I'm using libxml2

[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

[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

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] 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 wrote

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

[PHP] Generating forms using OOP

2002-12-06 Thread Davy Obdam
; $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

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 that can generate

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

[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
(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://www.php.net

RE: [PHP] Query problem

2002-11-12 Thread Davy Obdam
? ;-) 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', 12, 'c'); You forgot to put single qoutes around 12. Now it should work Best regards, Davy Obdam

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 heard, PHP and Apache 2 were not yet

[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] How-to instal GD libary

2002-11-07 Thread Davy Obdam
;-) 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

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

2002-10-29 Thread Davy Obdam
=0?a href=\$PHP_SELF?entry=$prev\ class=\nav\Previous page/a:). .($total_count=$next+1?a href=\$PHP_SELF?entry=$next\ class=\nav\Next page/a:).; ? I hope this helps you. Best regards, Davy Obdam The Netherlands mailto:info;davyobdam.com -Oorspronkelijk bericht- Van: Petre

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

2002-10-28 Thread Davy Obdam
? $number_of_selected_cols_minus_one = 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 Aan: [EMAIL PROTECTED

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

2002-10-18 Thread Davy Obdam
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/) To unsubscribe, visit: http://www.php.net

[PHP] HTTP-authentication

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

[PHP] Need help with HTTP-Authentication

2002-10-15 Thread Davy Obdam
be 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

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 example, which

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 the TableA records (FieldA2) where the FieldA1

[PHP] confirm box

2002-10-09 Thread Davy Obdam
\ /form; ? ?php //Delete items from guestbook if(isSet($submit)) { //Delete items } ? Any help is appreciated, 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] 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] Deleting multiple items from database using checkboxes

2002-10-07 Thread Davy Obdam
'].\ Now i can select multiple items. But i have tried to delete 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

RE: [PHP] Database help

2002-10-07 Thread Davy Obdam
); //Your table echo td.$useFields['lot']./td; //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

[PHP] Using date() function

2002-10-06 Thread Davy Obdam
; 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] -- PHP General Mailing List (http

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

2002-10-06 Thread Davy Obdam
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 First you should use : $entry_date

[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] -Original Message- From