FW: FW: Which function?
am 30.08.2007 11:15:00 von Gustav Wiberg=20
-----Original Message-----
From: Gustav Wiberg [mailto:gustav@hmn.se]=20
Sent: Thursday, August 30, 2007 11:15 AM
To: 'nadim@alienworkers.com'
Subject: RE: [PHP-WIN] FW: Which function?
Hi!
I got it working anyhow (just before you sent your answer- thanx by the way=
!)
The problem was that there was a text in the database that wasn't "together=
" and=20
It was like
Abc...abc...abcd
Abc...abc...abcd
Instead of
Abc...abc...abcd
Abc...abc...abcd
And this I solved in the db (because in normal cases this "split of text" w=
ouldn't occur.
Best regards
/Gustav Wiberg=20
-----Original Message-----
From: Nadim Attari [mailto:nadim@alienworkers.com]=20
Sent: Thursday, August 30, 2007 11:09 AM
To: Gustav Wiberg
Subject: Re: [PHP-WIN] FW: Which function?
Gustav Wiberg wrote:
> Some more info:
>
> I get this (Javascript) error from Firebug:
>
> unterminated string literal
> Tip('\n
>
>
> Is this something that could be solved in php?
>
> Best regards
> /Gustav Wiberg
>
>
> -----Original Message-----
> From: Gustav Wiberg [mailto:gustav@hmn.se]=20
> Sent: Thursday, August 30, 2007 10:25 AM
> To: 'php-windows@lists.php.net'
> Subject: Which function?
>
> Hi there!
> =20
> Is there ant predefined function for doing this?
> =20
> I want to put text (from a database) inside quotes, like for example Java=
script:window.alert('');
> =20
> Is there any function in PHP for translating $dbText into something that =
Javascript would accept? (something inside quotes)=20
> I tried with http://se.php.net/manual/sv/function.htmlentities.php but th=
at didn't seem to work
> =20
> Best regards
> /Gustav Wiberg
Hello,
Try to use this function to display your texts in JS
function txtForJS($text =3D '')
{
$txtForJS =3D '';
$text =3D trim($text);
if ($text !=3D '')
{
for ($x =3D 0; $x < strlen($text); $x++) $textArr[$x] =
ord($text{$x});
$txtForJS =3D 'String.fromCharCode('.implode(',', $textArr).')'=
;
}
return $txtForJS;
}
Javascript:window.alert('');
Let me know if it worked.
Thx,
Nadim Attari
Alienworkers.com
Mauritius
No virus found in this outgoing message.
Checked by AVG Free Edition.=20
Version: 7.5.484 / Virus Database: 269.12.12/979 - Release Date: 2007-08-29=
20:21
=20
No virus found in this outgoing message.
Checked by AVG Free Edition.=20
Version: 7.5.484 / Virus Database: 269.12.12/979 - Release Date: 2007-08-29=
20:21
=20
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php