Re: [PHP-DB] what the heck? (elementary question)

2002-06-25 Thread szii
it does exist. This was about two years ago, though, so perhaps the engine is now a one-time invocation and my test is invalid. -Mike - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 8:00 PM Subject: Re: [PHP-DB] what the

RE: [PHP-DB] what the heck? (elementary question)

2002-06-25 Thread Cosby, Christopher
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 7:47 PM To: Cosby, Christopher; [EMAIL PROTECTED] Subject: Re: [PHP-DB] what the heck? (elementary question) > I will regularly use large "echo" style statements to

Re: [PHP-DB] what the heck? (elementary question)

2002-06-25 Thread Martin Clifford
>>POST will allow larger form submits as well, like file uploads. GET are for smaller and faster data sets. -Mike<< Not only that, but POST results cannot be properly bookmarked by the user, whereas GET results contain the full URI string, therefore can be bookmarked. Good for searches, etc

Re: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread user
Keep with Christophers original statement. It is more efficient to not have large echo values. gl -- Seth [EMAIL PROTECTED] wrote: > - Original Message - > From: "Cosby, Christopher" <[EMAIL PROTECTED]> > >>I don't want to start a tangent here, but the most accepted way for >>generat

Re: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread szii
- Original Message - From: "Cosby, Christopher" <[EMAIL PROTECTED]> > I don't want to start a tangent here, but the most accepted way for > generating HTML with PHP is to NOT generate HTML with PHP. Thus, the > original code should be written like this: Huh? ".. most accepted way for g

RE: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread Cosby, Christopher
I don't want to start a tangent here, but the most accepted way for generating HTML with PHP is to NOT generate HTML with PHP. Thus, the original code should be written like this: :: BEGIN input.html :: :: END input.html :: :: BEGIN name.php :: You searched for and something hap

Re: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread Martin Clifford
You can't have extensions to a filename from the action attribute, period. You have to either use defined input fields, or hidden fields to pass value from one page to another. And just as FYI, you don't need to use the printf() function in your situation, as it's best used when you need stri

Re: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread Steve Cayford
On Monday, June 24, 2002, at 01:52 PM, Matthew Crouch wrote: > this bit from my index page is giving me 2 headaches: > 1. it isn't passing anything into the URL > 2. the page that gets called ("name.php") sits and tries to load > forever. it looks like it's even filling up my hard drive with da