>  기사  >  백엔드 개발  >  求大神,smarty错误

求大神,smarty错误

WBOY
WBOY원래의
2016-06-20 12:58:061024검색

<SCRIPT language=javascript>function CheckPost(){    if(myform.user.value="");	{     alert("请填写用户");	 myform.user.focus();	 return false;	 }	 if(myform.title.value.lengh<5){	 alert("标题不能小于5字符");	 myform.title.focus();	 return false;	 }}</SCRIPT>    <div class="form"><form action="message.php" method="post" name="myform" onsubmit="return CheckPost();">用户:<input type="text" size="10" name="user"/><br>标题:<input type="text" name="title" /><br/>内容:<textarea name="content"></textarea><br/><input type ="submit" name="submit" value="发布留言"/>


我想对表单验证,原来没有问题,但在htm加入这段javascript出现smarty错误,和smarty有什么关系啊?


回复讨论(解决方案)

js 代码被当做模板解释了吧?

js 代码被当做模板解释了吧?



那应该怎么修改呢

include ('./global.php');if($_POST['submit']){	$sql="INSERT INTO `message`(`id`, `user`, `title`, `content`, `lastdate`) " .			"VALUES ('','$_POST[user]','$_POST[title]','$_POST[content]',now())";			$query=$db->query($sql);			echo "<script> {window.alert('发布成功')} </script>";}$smarty->display("message.htm");



在php文件里能获取htm表单的各个属性值吗?

请使用literal标签,包含js块
http://smarty.jz123.cn/language.function.literal.html

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.