Wednesday, December 25, 2013

How to escape quotes in php

Here i have paste two example of how to escape quotes in php we face always when we use php , html and javascript event combine. First Example <?php echo $chkbox = '<input type="checkbox" name="pages" id="chk_'.$val['sb_id'].'" value="'.$val['sb_id'].'" onclick=\'assignSidebar('.$val['sb_id'].',"'.$val['sb_name'].'")\' />'; ?> Second Example <?php $name = "khan's"; $name = htmlentities(str_replace("'", "\'", $name)); echo $response = "<img src=\"images/action_delete.gif\"...
Read More »