Adding single quote to javascript/php block

  • Follow


I have a block of code that calls a function to copy some text to the
clipboard.  The text includes some text and an email from a recordset.
 I am trying to put the email address inside a single quote however
any PHP or javascript methods that I try to use causes the function
not to work.  If I want to add a single quote should I put it inside
the php echo or in between?  and if so how should I format?


<span onclick='return copy_clip("<?php echo 'The payers email is '; 
?><?php echo $row_rsPayments['payer_email']; ?>")'>Click Here</span>
0
Reply tdmailbox (42) 2/26/2004 5:55:18 AM

Rich,
Here is the code you want your PHP to output:
<span onclick="alert('The payers email is \'blah@blah.com\'');">Click
Here</span>

the \' cancels out the special meaning of the ' so just displays ' instead.

Stu

"Rich" <tdmailbox@yahoo.com> wrote in message
news:22e731d7.0402252155.497402aa@posting.google.com...
> I have a block of code that calls a function to copy some text to the
> clipboard.  The text includes some text and an email from a recordset.
>  I am trying to put the email address inside a single quote however
> any PHP or javascript methods that I try to use causes the function
> not to work.  If I want to add a single quote should I put it inside
> the php echo or in between?  and if so how should I format?
>
>
> <span onclick='return copy_clip("<?php echo 'The payers email is ';
> ?><?php echo $row_rsPayments['payer_email']; ?>")'>Click Here</span>


0
Reply Stuart 2/26/2004 7:07:53 AM


1 Replies
129 Views

(page loaded in 0.046 seconds)

Similiar Articles:













7/15/2012 11:51:55 PM


Reply: