I was programming something in PHP but since I\'m a newbie I got stuck.
I have no clue how should I escape quotes on the following line. Moreover, I think the PHP tags i
Escape with a backslash, use "." for concatenation.
$row = array(); $row['ID'] = 1; echo ''; Output Also make sure to escape any content you're going to use in Javascript or HTML. For an ID, you might just cast as an integer: echo ''; Strings'll be more important to escape. 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Output
Also make sure to escape any content you're going to use in Javascript or HTML. For an ID, you might just cast as an integer: echo ''; Strings'll be more important to escape. 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Also make sure to escape any content you're going to use in Javascript or HTML. For an ID, you might just cast as an integer:
echo ''; Strings'll be more important to escape. 0 讨论(0) 查看其它4个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
Strings'll be more important to escape.