GET方法:
GET方法是HTML表单默认的提交数据的方法。在form标签中不指定
method属性则默认使用GET方法。
eg:
/*
- <form method="get" action="post.php"></form>
*/
POST方法:
POST方法是HTML 提交表单的另一种方法。使用post方法提交数据,必须在form标签中指定method属性为“POST”。
$_GET['textbox'];
/
<form method="post" action="post.php"></form>
*/
$_POST['textbox'];
URL编码解码函数
从表单提交信息时会自动进行编码,并在使用%_POST 和$_GET是总动进行解码操作,
除此之外,PHP还提供了编码和解码的函数以供调用.
string urlencode(string str)
string urldecode(string str)
PHP动态生成javascript代码
<?php
//使用定界符输出
echo <<<JS
<script type="text/javascript">
function func(){
if(confirm("Are you OK with this!")){
document.write("I am OK");
}else{
document.write("I ma not OK");
}
}
</script>
JS;
?>
<html>
<head >
<meta charset= "UTF-8">
</head >
<body >
<a href= "#" onclick="javascript:func();" >please Click me!</a>
</body >
</html>
以上是通过定界符来输出多行字符串的,但在实际应用中,我们往往会根据需要构建不同的javascript代码。这就需要逐行输出javascript 代码。
热门评论
题目就打错,这样好吗?
我怎么看不懂