sam wrote:
$str='bass "electric organ" bagpipes';
$parser($str);
$query="SELECT * FROM table WHERE tb_instr = "bass"
> AND tb_instr = "electric organ" //< AND tb_instr = "bagpipes";
Anybody know where I can just copy code that will do the above?
The following was just pushed out of my r
sam a écrit :
$str='bass "electric organ" bagpipes';
$parser($str);
$query="SELECT * FROM table WHERE tb_instr = "bass"
> AND tb_instr = "electric organ" //< AND tb_instr = "bagpipes";
Anybody know where I can just copy code that will do the above?
you wish to split $str and keep what's
$str='bass "electric organ" bagpipes';
$parser($str);
$query="SELECT * FROM table WHERE tb_instr = "bass"
> AND tb_instr = "electric organ" //< AND tb_instr = "bagpipes";
Anybody know where I can just copy code that will do the above?
thanks
Why will there be a quoted string in the
Set your string to an array and use the elements in your query.
Jef
-Original Message-
From: sam [mailto:[EMAIL PROTECTED]
Sent: Friday, June 09, 2006 6:53 AM
To: PHP
Subject: [PHP] parsing out quoted text
$str='bass "electric organ" bagpipes';
$parser($str);
$query="SELECT * FROM
4 matches
Mail list logo