[PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread James E Hicks III
How do I get this to work? the input box is only showing 

He said, 

input type=text value=He said, How'm I gonna get this to work?, with a 
frown size=50



James Hicks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread Chris W. Parker
James E Hicks III mailto:[EMAIL PROTECTED]
on Tuesday, March 16, 2004 11:08 AM said:

 input type=text value=He said, How'm I gonna get this to work?,
 with a frown size=50

i came across this same problem recently. http://php.net/htmlentities

 becomes quot;



chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread Jay Blanchard
[snip]
How do I get this to work? the input box is only showing 

He said, 

input type=text value=He said, How'm I gonna get this to work?,
with a 
frown size=50
[/snip]

Escape the quotes.

input type=text value=He said, \How\'m I gonna get this to work?\,
with a 
frown size=50

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread Jay Blanchard
[snip]
Escape the quotes.
[/snip]

How about addslashes() and stripslashes() ?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread Chris W. Parker
Vail, Warren mailto:[EMAIL PROTECTED]
on Tuesday, March 16, 2004 11:14 AM said:

 input type=text value=He said, \How'm I gonna get this to
 work?\, with a
 frown size=50

escaping does not work.


chris.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] input type=text value=He said, How do I get this to work?, with a frown size=50

2004-03-16 Thread Hidayet Dogan
Replacing with quot; HTML entitiy may be enough.

For ex:

?
$value = str_replace(\, quot;, $value);
echo input type=\text\ value=\$value\;
?
Or input type=text value=?=$value ?

Good luck,
 Hidayet Dogan
  [EMAIL PROTECTED]

Pleksus Bilisim Teknolojileri D.T.O. A.S.
--
caldiran sok. 14/6 06420 kolej ankara * www.pleksus.com.tr
tel : +90 312 4355343 * faks: +90 312 4354006

On Tue, 16 Mar 2004, Chris W. Parker wrote:

 Vail, Warren mailto:[EMAIL PROTECTED]
 on Tuesday, March 16, 2004 11:14 AM said:

  input type=text value=He said, \How'm I gonna get this to
  work?\, with a
  frown size=50

 escaping does not work.


 chris.

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php