在smarty模板环境下,mysql数据库怎样自动生成用户名和密码的方法,php页面的代码是什么?

在smarty模板环境下,mysql数据库怎样自动生成用户名和密码的方法,php页面的代码是什么?,第1张

这跟smarty没有关系吧!

你说的是应用系统里的用户名和密码吧?

用这个:

$usename=substr(uniqid(rand()), -6)

$pwd=rand(100000,999999)

然后:

mysql_query("INSERT INTO users SET username='$username',password='$pwd'")

html的代码中的编码设置

<meta http-equiv="Content-Type" content="text/htmlcharset=utf-8" />

php的编码设置

<?php

header('Content-Type:text/htmlcharset=utf-8')

链接数据库的编码

mysql_query("set names 'utf8'")

以及文件本身的编码(你还是用记事本另存为的时候看看,有些编程设置是utf-8,但是有可能会是ANSI)

smarty报错

smarty属性报错:

Notice: Undefined property: Smarty::$cacheing in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\Smarty.class.php on line 669

smarty引擎异常:

Fatal error: Uncaught exception 'SmartyException' with message 'Call of unknown method 'hisplay'.' in D:\develop\PHP\VertrigoServ\www\learn\smarty\libs\sysplugins\smarty_internal_templatebase.php on line 758

我是用vertrigo当WEB服务器的,是用apache+mysql,应该是没问题的啊...

但是为什么新建模板就是报错..- -

------解决方案--------------------

sorry 看错了。

Undefined property: Smarty::$cacheing

属性$cacheing没有定义。

Call of unknown method 'hisplay'。。。。

调用一个未知的方法(history)...


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6094095.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-14
下一篇 2023-03-14

发表评论

登录后才能评论

评论列表(0条)

保存