Re: Re: [PHP] pass text variables to next page

2011-08-09 Thread Richard Quadling
On 9 August 2011 16:31, Tim Streater wrote: > On 09 Aug 2011 at 13:30, Chris Stinemetz wrote: > >> Not sure if I am doing it right. It looks like the last single quote >> is being escaped. >> >> When I dump the query I get: >> >> SELECT store_id, store_subject FROM stores WHERE store_subject = >>

Re: Re: [PHP] pass text variables to next page

2011-08-09 Thread Tim Streater
On 09 Aug 2011 at 13:30, Chris Stinemetz wrote: > Not sure if I am doing it right. It looks like the last single quote > is being escaped. > > When I dump the query I get: > > SELECT store_id, store_subject FROM stores WHERE store_subject = > 'Bella Roe 4980 Roe Blvd\' > > > I am thinking maybe

Re: [PHP] pass text variables to next page

2011-08-09 Thread Tamara Temple
On Aug 9, 2011, at 7:42 AM, Jasper Mulder wrote: > Date: Tue, 9 Aug 2011 07:30:47 -0500 > From: chrisstinem...@gmail.com > To: tamouse.li...@gmail.com > CC: php-general@lists.php.net > Subject: Re: [PHP] pass text variables to next page > > Thank you Tamara. > > Not

RE: [PHP] pass text variables to next page

2011-08-09 Thread Jasper Mulder
> Date: Tue, 9 Aug 2011 07:30:47 -0500 > From: chrisstinem...@gmail.com > To: tamouse.li...@gmail.com > CC: php-general@lists.php.net > Subject: Re: [PHP] pass text variables to next page > > Thank you Tamara. > > Not sure if I am doing it right. It looks like the l

Re: [PHP] pass text variables to next page

2011-08-09 Thread Chris Stinemetz
Thank you Tamara. Not sure if I am doing it right. It looks like the last single quote is being escaped. When I dump the query I get: SELECT store_id, store_subject FROM stores WHERE store_subject = 'Bella Roe 4980 Roe Blvd\' I am thinking maybe I have too many single quotes some where, but I

Re: [PHP] pass text variables to next page

2011-08-08 Thread Tamara Temple
On Aug 8, 2011, at 11:58 PM, Chris Stinemetz wrote: I am trying to pass text strings from on page to a next to populate the queries on the passed to page. The only way I can get the query to work is if I am able to put single ticks around the string to make it literal, but I can't seem to figu