Re: [PHP-DB] Using PHP to import a DB

2005-11-06 Thread Tim Van Wassenhove
/mydb -- Met vriendelijke groeten, Tim Van Wassenhove http://timvw.madoka.be -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: mysql_fetch_assoc to ADOdb??

2005-09-08 Thread Tim Van Wassenhove
themselves? IE: What's wrong with: $db-setFetchMode(ADODB_FETCH_ASSOC); $rs = $db-Execute('...'); $rows = $rs-getRows(); -- Met vriendelijke groeten, Tim Van Wassenhove http://timvw.madoka.be -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP-DB] Re: amp;

2005-08-27 Thread Tim Van Wassenhove
vriendelijke groeten, Tim Van Wassenhove http://timvw.madoka.be -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Newbie needs help with multiple MySQL databases

2004-10-04 Thread Tim Van Wassenhove
, Tim Van Wassenhove http://www.timvw.info -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Wait Statement... ?

2004-07-20 Thread Tim Van Wassenhove
- timestamp) pairs. Every time someone tries to authenticate, you count the number of failures in both queues. The larger the number, the longer the sleep will take. (removing old entries once in a while might speed up things) -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing

Re: [PHP-DB] Easy reg expression problem

2004-07-16 Thread Tim Van Wassenhove
of validation on the address. And in the end compare your regular expression with the one at: http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Temporary table name

2004-07-16 Thread Tim Van Wassenhove
the name the primary key or at least unique. This way you save yourself from adding duplicate entries with the same name. -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re[2]: [PHP-DB] Table locking

2004-07-15 Thread Tim Van Wassenhove
will know how they work... -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: LAST_INSERT_ID?????

2004-07-15 Thread Tim Van Wassenhove
even get this function to work in a SQL query window. Please help!!! I would attach code to this, but I am not sure what to attach. Try SELECT LAST_INSERT_ID() AS id; -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP-DB] Re: Validate Value

2004-07-11 Thread Tim Van Wassenhove
the irrelevant things out) , things stay clear for everybody. As i mentionned before, use your regular expressions manual. There you will find what \s and \w mean. -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP-DB] Re: Validate Value

2004-07-11 Thread Tim Van Wassenhove
still system not supporting for space. If you don't bother to read my advices, i don't bother to answer anymore. -- Tim Van Wassenhove http://home.mysth.be/~timvw -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Re: Storing Date in mysql

2004-07-08 Thread Tim Van Wassenhove
? If i'm not mistaken: timestamp, date, datetime... With from_unix function you can convert unix timestamps to mysql timestamps. And with date_format function you can format the timestamp to whatever you like. And you get some functions to calculatie differences between timestamps etc... -- Tim Van