Re: [PHP] PHP URL issues

2007-03-14 Thread Jim Lucas
Steve wrote: I personally have not unfortunately. A good friend of mine is also a developer who initially told me about it when I first began coding. Because I don't want to stick with the he-said, she-said approach, I did a quick google search and came up with this link: http://spindrop.us/2

Re: Fw: [PHP] PHP URL issues

2007-03-14 Thread Robert Cummings
On Wed, 2007-03-14 at 17:15 +0100, Satyam wrote: > - Original Message - > From: "Robert Cummings" <[EMAIL PROTECTED]> > To: "Satyam" <[EMAIL PROTECTED]> > Cc: > Sent: Wednesday, March 14, 2007 4:49 PM > Subject: Re: Fw: [PHP] PHP URL

Re: Fw: [PHP] PHP URL issues

2007-03-14 Thread Satyam
- Original Message - From: "Robert Cummings" <[EMAIL PROTECTED]> To: "Satyam" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, March 14, 2007 4:49 PM Subject: Re: Fw: [PHP] PHP URL issues On Wed, 2007-03-14 at 16:31 +0100, Satyam wrote: One more example

Re: Fw: [PHP] PHP URL issues

2007-03-14 Thread Robert Cummings
On Wed, 2007-03-14 at 16:31 +0100, Satyam wrote: > One more example of a questionable benchmark, not wrong but I wonder (as I > was doing in my previous) whether it is really representative. > > There are two main ways to handle strings, one is to malloc exactly the > required memory for each st

Fw: [PHP] PHP URL issues

2007-03-14 Thread Satyam
ime() on output, variable interpolation is out of the question anyway. Satyam - Original Message - From: "Steve" <[EMAIL PROTECTED]> To: Sent: Wednesday, March 14, 2007 3:25 PM Subject: Re: [PHP] PHP URL issues I personally have not unfortunately. A good friend of min

Re: [PHP] PHP URL issues

2007-03-14 Thread Steve
I personally have not unfortunately. A good friend of mine is also a developer who initially told me about it when I first began coding. Because I don't want to stick with the he-said, she-said approach, I did a quick google search and came up with this link: http://spindrop.us/2007/03/03/php-d

Re: [PHP] PHP URL issues

2007-03-14 Thread Satyam
gt; Cc: Sent: Wednesday, March 14, 2007 10:07 AM Subject: Re: [PHP] PHP URL issues On Tue, March 13, 2007 9:31 am, Steve wrote: This may or may not help, but here's a few things to note: 1) I would avoid placing variable output in double quoted strings. While not important for sm

Re: [PHP] PHP URL issues

2007-03-14 Thread Richard Lynch
On Tue, March 13, 2007 9:31 am, Steve wrote: > This may or may not help, but here's a few things to note: > > 1) I would avoid placing variable output in double quoted strings. > While not > important for smaller scripts, doing a large number of outputs like > this > causes a decent performance hit

Re: [PHP] PHP URL issues

2007-03-14 Thread Richard Lynch
gt; > > > - Original Message - > From: "Don Don" <[EMAIL PROTECTED]> > To: "PHP List" > Sent: Tuesday, March 13, 2007 11:37 AM > Subject: Re: [PHP] PHP URL issues > > >> >> I've just noticed that if am passing only one

Re: [PHP] PHP URL issues

2007-03-13 Thread Tijnema !
are not > significant, you might want to use trim(). > > > > > - Original Message - > From: "Don Don" > > To: "PHP List" > > Sent: Tuesday, March 13, 2007 11:37 AM > Subject: Re: [PHP] PHP URL issues > > >> >> I've just

Re: [PHP] PHP URL issues

2007-03-13 Thread Satyam
to use trim(). - Original Message - From: "Don Don" To: "PHP List" Sent: Tuesday, March 13, 2007 11:37 AM Subject: Re: [PHP] PHP URL issues > > I've just noticed that if am passing only one value it works fine, but

Re: [PHP] PHP URL issues

2007-03-13 Thread Steve
> > - Original Message - > From: "Don Don" > > To: "PHP List" > > Sent: Tuesday, March 13, 2007 11:37 AM > Subject: Re: [PHP] PHP URL issues > > >> >> I've just noticed that if am passing only one value it works fine, but

Re: [PHP] PHP URL issues

2007-03-13 Thread Don Don
age - From: "Don Don" To: "PHP List" Sent: Tuesday, March 13, 2007 11:37 AM Subject: Re: [PHP] PHP URL issues > > I've just noticed that if am passing only one value it works fine, but > when am passing in more than one none works. > > Why is that o

Re: [PHP] PHP URL issues

2007-03-13 Thread Steve
This may or may not help, but here's a few things to note: 1) I would avoid placing variable output in double quoted strings. While not important for smaller scripts, doing a large number of outputs like this causes a decent performance hit. In fact, I wouldn't use double quotes ever in php. In

Re: [PHP] PHP URL issues

2007-03-13 Thread Satyam
- From: "Don Don" <[EMAIL PROTECTED]> To: "PHP List" Sent: Tuesday, March 13, 2007 11:37 AM Subject: Re: [PHP] PHP URL issues I've just noticed that if am passing only one value it works fine, but when am passing in more than one none works. Why is that or wha

Re: [PHP] PHP URL issues

2007-03-13 Thread Don Don
I've just noticed that if am passing only one value it works fine, but when am passing in more than one none works. Why is that or what could be wrong ? e.g. this works echo "$letter_value  "; on test.php i can display the value of term but with this echo "$letter_value  ";

Re: [PHP] PHP URL issues

2007-03-13 Thread Don Don
I've just noticed that if am passing only one value it works fine, but when am passing in more than one none works. Why is that or what could be wrong ? e.g. this works echo "$letter_value  "; on test.php i can display the value of term but with this echo "$letter_value  ";

Re: [PHP] PHP URL issues

2007-03-12 Thread Richard Lynch
On Mon, March 12, 2007 7:50 am, Don Don wrote: > I've got the following url rewriting problem. > > on page 1 i've got this > > See > > > and on page 2 i've got this > > $messageID = $_REQUEST["messageId"]; > $userID = $_REQUEST["userId"]; You switched from Id to ID (capital 'D') and pro

Re: [PHP] PHP URL issues

2007-03-12 Thread Németh Zoltán
2007. 03. 12, hétfő keltezéssel 05.50-kor Don Don ezt írta: > I've got the following url rewriting problem. > > on page 1 i've got this > > See is this all within something like an echo statement with " marks? otherwise the values might not display correctly > > and on page 2

Re: [PHP] PHP URL issues

2007-03-12 Thread Tijnema !
On 3/12/07, Don Don <[EMAIL PROTECTED]> wrote: I've got the following url rewriting problem. on page 1 i've got this See and on page 2 i've got this $messageID = $_REQUEST["messageId"]; $userID = $_REQUEST["userId"]; when i check to see the values of these variables its says its empty,

[PHP] PHP URL issues

2007-03-12 Thread Don Don
I've got the following url rewriting problem. on page 1 i've got this See and on page 2 i've got this $messageID = $_REQUEST["messageId"]; $userID = $_REQUEST["userId"]; when i check to see the values of these variables its says its empty, but when i place my curs