Re: [PHP] Re: \Z characters

2002-12-22 Thread Jason Wong
On Sunday 22 December 2002 22:14, Dave J. Hala Jr. wrote: > This field contains ONLY the \Z. Thanks for the suggestion but it > generates the following error message: > > Parse error: parse error, unexpected '\"' in > > On Sun, 2002-12-22 at 04:49, Mattia wrote: > > "Dave J. Hala Jr." <[EMAIL PROT

Re: [PHP] Re: \Z characters

2002-12-22 Thread Dave J. Hala Jr.
This field contains ONLY the \Z. Thanks for the suggestion but it generates the following error message: Parse error: parse error, unexpected '\"' in On Sun, 2002-12-22 at 04:49, Mattia wrote: > > "Dave J. Hala Jr." <[EMAIL PROTECTED]> ha scritto nel messaggio > 1040500684.942.130.camel@badb

[PHP] Re: \Z characters

2002-12-22 Thread Mattia
"Dave J. Hala Jr." <[EMAIL PROTECTED]> ha scritto nel messaggio 1040500684.942.130.camel@badboy">news:1040500684.942.130.camel@badboy... > I've got a bunch of fields in a mysql database that have a \Z character > in them. I want to search a field for \Z and if it contains that > character, make t

[PHP] Re: \Z characters

2002-12-21 Thread Kyle Gibson
$connection = db_connect("Could not connect DB"); $SQL="SELECT id,PVLN from lhpl_side WHERE PVLN =\"\\Z\" "; $result= mysql_query($SQL,$connection) or die (mysql_error()); $num = mysql_numrows($result); Not too sure on this, but it might solve the problem. Use sin