Re: parsing html in pgsql using php

From: "David C(dot) Brown" <dbrown(at)centennialwines(dot)com>
To: Clio <clio(at)zgia(dot)zp(dot)ua>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: parsing html in pgsql using php
Date: 2002-08-22 14:06:27
Message-ID: 3D64EFE3.1060804@centennialwines.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

You need to escape your apostrophes. Your query statment uses
apostrophes and you have them in the string that your inserting into the db.

I believe you can use addslashes() and stripslashes() to help you with this.

http://www.php.net/manual/en/function.addslashes.php

Dave

Clio wrote:

>Subject ... how to?
>
>here is an example:
>
><?php
>
>
>$tmp = "
>
><table width='175' cellSpacing='0' cellPadding='0' border='0' align='right'><tr>
> <td align='center' vAlign='middle' style=\"border: 1px solid black; background-color: #f0f0f0;\">
> Sample text in table.
> </td>
></tr></table>
>
>";
>
>pg_connect("host=localhost dbname=daatabase user=web_user password=password");
>
>pg_query("insert into site_common values ('01','00','".$tmp."')");
>
>
>?>
>
>
>Here is an error:
>
>
>Warning: pg_query() query failed: ERROR: parser: parse error at or near "175" in /w/devel/test/dbinsert.php on line 80
>
>
>Any ideas?
>
>
>/ Clio
>
>
>---------------------------(end of broadcast)---------------------------
>TIP 2: you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
>
>
>

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Roj Niyogi 2002-08-22 14:10:52 Re: parsing html in pgsql using php
Previous Message Clio 2002-08-22 13:59:53 parsing html in pgsql using php