Re: [PHP] TableName with space

2007-06-05 Thread Richard Lynch
On Mon, June 4, 2007 11:51 pm, karthi keyan wrote: > How can I create a table with spaces "Order details" in MSSQL using > PHP? > I am able to create manually the table name with space by providing > the name in Double Quotes. Is there a way out to do this using PHP? If it worked manually wit

Re: [PHP] TableName with space

2007-06-05 Thread karthi keyan
Hi, Double qoutes inside a PHP script is not working for spaces. I got the answer. We have to use square bracket from PHP. $query = "create table [order details]"; Chris <[EMAIL PROTECTED]> wrote: karthi keyan wrote: > Hi, > > How can I create a table with spaces "Order details

Re: [PHP] TableName with space

2007-06-05 Thread Miles Thompson
On 6/5/07, karthi keyan <[EMAIL PROTECTED]> wrote: Hi, How can I create a table with spaces "Order details" in MSSQL using PHP? I am able to create manually the table name with space by providing the name in Double Quotes. Is there a way out to do this using PHP? Thanks Karthik. Why

Re: [PHP] TableName with space

2007-06-04 Thread Chris
karthi keyan wrote: Hi, How can I create a table with spaces "Order details" in MSSQL using PHP? I am able to create manually the table name with space by providing the name in Double Quotes. Is there a way out to do this using PHP? Put double quotes around it in php - rather simple r

[PHP] TableName with space

2007-06-04 Thread karthi keyan
Hi, How can I create a table with spaces "Order details" in MSSQL using PHP? I am able to create manually the table name with space by providing the name in Double Quotes. Is there a way out to do this using PHP? Thanks Karthik. - Download