”组合的代码,以便用户无法插入恶意内容在服务器端执行的代码。 我发现了一-6ren">
gpt4 book ai didi

php - 将第一个字母大写并去掉 html 代码

转载 作者:行者123 更新时间:2023-12-02 19:23:44 24 4
gpt4 key购买 nike

我有以下 html 页面:我想要做的是将第一个字母大写(可以正常工作),并删除文本框中的任何 html 代码或任何具有“<”“/>”“">”组合的代码,以便用户无法插入恶意内容在服务器端执行的代码。

我发现了一个可以删除的代码:

var StrippedString = OriginalString.replace(/(<([^>]+)>)/ig,"");

如何将上面的代码添加到下面的页面,以便它同时处理这两个页面?

<?php
/**
* ****************************************************************************
* Micro Protector
*
* Version: 1.0
* Release date: 2007-09-10
*
* USAGE:
* Define your requested password below and inset the following code
* at the beginning of your page:
* <?php require_once("microProtector.php"); ?>
*
*
*
******************************************************************************/


$Password = 'TESTPASS'; // Set your password here



/******************************************************************************/
if (isset($_POST['submit_pwd'])){
$pass = isset($_POST['passwd']) ? $_POST['passwd'] : '';

if ($pass != $Password) {
showForm("Wrong password");
exit();
}
} else {
showForm();
exit();
}

function showForm($error="LOGIN"){
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<title>IMC - Authentication</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<Script>
<!--
function capitalize(form) {
value = form.value;
newValue = '';
value = value.split(' ');
for(var i = 0; i < value.length; i++) {
newValue += value[i].substring(0,1).toUpperCase() +
value[i].substring(1,value[i].length) + '';
}
form.value = newValue;
}
-->
</Script>
</head>
<body>
<center><a href="http://www.test.com"><img src="test.png" border=0 /></a></center>
<br><br><br>
<div id="main">
<div class="caption"><?php echo $error; ?></div>
<div id="icon">&nbsp;</div>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="pwd">
Your Name:
<table>
<tr><td><input class="text" name="name" onBlur="capitalize(this);" maxlength=12 type="text" /></td></tr>
</table>
Password:
<table>
<tr><td><input class="text" name="passwd" maxlength=8 type="password" /></td></tr>
<tr><td align="center"><br/>
<input class="text" type="submit" name="submit_pwd" value="Login" />
</td></tr>
</table>
</form>
</div>
</body>
</html>

<?php
}
?>

最佳答案

添加newValue = newValue.replace(/(<([^>]+)>)/ig,"");之前form.value = newValue;

关于php - 将第一个字母大写并去掉 html 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12252832/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com