[PHP] db design with large amount of data (?)

2002-04-12 Thread W. Enserink
Hi all, i'm currently busy with db design. Since I have not worked with these amounts of content data I have a few questions. I have 2 tables: a table filled with records about products (currently 2200 records) (tblProducts) The next table is a table with pictures referring to product_ID's.

[PHP] storing html in a db

2002-06-10 Thread W. Enserink
hi all, i was wondering, i'm making a php page. this php page is outputting a very lot of html to a browser. is it also possible to capture this html code and store it in a database? so later on i can retrieve a full html page without the dynamic elements in it thx Wilbert

Re: [PHP] storing html in a db

2002-06-10 Thread W. Enserink
thx great tip:-) - Original Message - From: Jared Boelens [EMAIL PROTECTED] To: W. Enserink [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, June 10, 2002 9:41 PM Subject: RE: [PHP] storing html in a db You might consider using output buffering in order to accomplish that goal

Re: [PHP] session variables in OOP....

2002-06-14 Thread W. Enserink
Hi all, Nick: thx for the tip, it removed the error, and might further be a good idea: except: do you know if I can declare session variables and use them in between the output buffer statements like this: (i tried it but it doesn't seem to work)?? greetings Wilbert include

Re: [PHP] sessions and temporary tables

2002-06-18 Thread W. Enserink
ok, that's clear, thx. but still, I'm not closing any connection AFAIK. at least not explicitly. are there then other ways which cause the closing of this connection? thx Wilbert - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 18,

Re: [PHP] session vars and frames

2002-06-28 Thread W. Enserink
hmmm, i'm not passing anything around, at least not on purpose. Wilbert - Original Message - From: Justin French [EMAIL PROTECTED] To: php [EMAIL PROTECTED] Sent: Friday, June 28, 2002 11:14 AM Subject: Re: [PHP] session vars and frames Are you passing the session ID around in the

Re: [PHP] mysql/php how to retrieve the right column with 2 columns of the same name

2002-07-04 Thread W. Enserink
thx Jason, now I understand the use of aliases in select queries. Good ID:-) Wilbert - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 04, 2002 11:38 AM Subject: Re: [PHP] mysql/php how to retrieve the right column with 2 columns of

Re: [PHP] security

2002-04-22 Thread W. Enserink
thx Jason. I found it! regards! - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, April 22, 2002 11:29 AM Subject: Re: [PHP] security On Monday 22 April 2002 17:16, Wilbert Enserink wrote: I'm building a site where customers can store

Re: [PHP] session.save_path

2002-05-23 Thread W. Enserink
thx John. That did the trick for me! regards Wilbert - Original Message - From: 1LT John W. Holmes [EMAIL PROTECTED] To: Wilbert Enserink [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 8:18 PM Subject: Re: [PHP] session.save_path You have to set the

[PHP] function return

2002-05-28 Thread W. Enserink
Hi all, I have a Q about functions. My function should return 2 values. What syntax should I use and how do I call these values outside the function? Are these values returned as en array or something? this is what I have now, - function myFunction($some_vars) {

Re: [PHP] money - done

2003-01-09 Thread W. Enserink
Hi All thx for all replies about how to make money. The trick http://www.php.net/manual/en/function.number-format.php did it for me! regards Wilbert - Original Message - From: Danny Shepherd [EMAIL PROTECTED] To: Wilbert Enserink [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday,

Re: [PHP] php_mcrypt.dll

2003-02-21 Thread W. Enserink
hi Daniel, AFAIK there are not many people with a good working mcrypt dll, if any at all. In the past there have been more people asking for this, but I can't remember something came out of it. So if you have one please let the group know, many will be very interested. If you want to you can

Re: [PHP] mr. jason wong kind attention

2003-02-21 Thread W. Enserink
hey david, should she apologize to you know?? for apologizing twice?:-) I'm sorry if offended anyone with this mail. regards Wilbert (counting down: 3 hrs to weekend) - Original Message - From: David T-G [EMAIL PROTECTED] To: PHP General list [EMAIL PROTECTED] Cc: DIKSHA NEEL

Re: [PHP] php_mcrypt.dll

2003-02-21 Thread W. Enserink
ah thx Jason for the tips. I'll go and have a look immediately. Wilbert - Original Message - From: Jason Sheets [EMAIL PROTECTED] To: W. Enserink [EMAIL PROTECTED] Cc: Daniel Guerrier [EMAIL PROTECTED]; php user group [EMAIL PROTECTED] Sent: Friday, February 21, 2003 3:15 PM Subject: Re

Re: [PHP] Message Board Question

2003-03-11 Thread W. Enserink
maybe use mysql to retrieve only 5 records. $query=select * from table limit [1,5]; //search in the mysql manual to be sure! this limit thing you can make variable $limit_thing_max=5; $limit_thing_min=$pagenumber*$limit_thing_max; $query = select * from table limit

Re: [PHP] Threading objects

2003-03-12 Thread W. Enserink
i'm not sure what you want. But you have created objects here in $a,$b and $c. If you want to order them in a special way you have to write the functionality of course. I think you have to do this before the object is created because you define the variables 10,5,1 before the objects are created.

Re: [PHP] timout in mail script

2003-03-25 Thread W. Enserink
Hi ernest, I don't think it is looping, cause I also tried it with 10 and 100 and 250 emails. No problems there...! regards Wilbert - Original Message - From: Ernest E Vogelsinger [EMAIL PROTECTED] To: Wilbert Enserink [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, March 25,

Re: [PHP] magic_quotes_gpc

2002-10-14 Thread W. Enserink
Hi John, that sounds like a great solution for me!! thanx. Can you tell me a bit more about this solution. Can I just place the htaccess file in the root of my site? And do I have to include this file in my php scripts? thx .alot. Wilbert - Original Message - From: John W. Holmes

Re: [PHP] catching a robot or spider - asking too

2002-11-20 Thread W. Enserink
check out the url for aother big list of user agents. I guess the only way to catch a robot is to use this list and compate them to the incoming user agent and then do your thingie. http://www.browserlist.browser.org/browser_mappings_list_big.html regards Wilbert - Original Message -