티스의 이야기

PHP-태그를 없애고 싶을 때 본문

프로그래밍

PHP-태그를 없애고 싶을 때

밍딩이 2016. 6. 23. 17:18

PHP-태그를 없애고 싶을 때


태그를 없애고 싶을 때는 strip_tags() 함수를 사용합니다. 



<!DOCTYPE html>

<html lang="ko">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width,initial-scale=1.0">

<title>태그를 없애고 싶을 때</title>

</head>

<body>

<div>

<p>strip_tags() 함수에서 태그를 제거하기<br>

<?php

// h() 함수 레시피 218를 불러옵니다 레시피 041.

require_once '../../../../lib/h.php';


if (isset($_POST['example'])) {

echo h(strip_tags($_POST['example']));

}

?>

</p>

<form method="post" action="stript_tags.php">

<input type="text" name="example" value="<b>테스트</b>">

<input type="submit" name="submit" value="전송">

</form>

</div>

</body>

</html>



'프로그래밍' 카테고리의 다른 글

MS-SQL 문법정리 select 문  (0) 2016.06.24
PHP-복수의 검색키워드로 검색하고 싶을때  (0) 2016.06.23
PHP-magic_quotes_gpc  (0) 2016.06.23
PHP-메일전송폼3  (3) 2016.06.17
PHP-메일전송폼 2  (0) 2016.06.16
Comments