php-db | 2002122
Date: 12/16/02
- Next message: Jim Hatridge: "[PHP-DB] Permission denied! !"§$!"§$"
- Previous message: Doug Parker: "[PHP-DB] Re: approaching a relational database"
- In reply to: mike karthauser: "[PHP-DB] CMS error"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> I have a field in a news CMS that could contain " Infact most of the
time
> it
> does in the form of URL's etc. Getting the data initially into the
> database
> is no problem - Infact MySQL shows has no toruble with it. The problem
i
> am
> getting is when i edit the data - basically loading into a form ->
> textarea.
> The data displays everything after the first " appears but in a small
> textarea.
> I have looked at addslashes() which insnt apropriate in this instance
as
> the
> text area has no problem with the slashes.
> Is there an equivalent for " or am i worth substituting them for a
> character
> when i load them into my edit field.
> I can imagine this is a common probem in CMS - any suggestions on a
quick
> fix..?
If you're doing it like
<textarea>$value</textarea>
Then it shouldn't matter if there are double quotes within $value.
If you're doing it like
<input type="text" value="$value">
Then you'll have to use htmlentities() on $value before you place it
between the double quotes.
If that doesn't help, show your code.
---John Holmes...
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Jim Hatridge: "[PHP-DB] Permission denied! !"§$!"§$"
- Previous message: Doug Parker: "[PHP-DB] Re: approaching a relational database"
- In reply to: mike karthauser: "[PHP-DB] CMS error"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

