分享个人信息资料等等的数据库存储方式解决方案

php中文网
发布: 2016-06-13 13:28:24
原创
1368人浏览过

分享个人信息资料等等的数据库存储方式

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php
class IndexAction extends YouYaX
{
        public function index()
        {
            header("Content-type: text/html; charset=utf-8");
            //查询出二维数组
            $data=$this->select("select info from personal_info");
            $dat=array();
            foreach($data as $v)
            {
                $tmp=unserialize($v['info']);
                $tmp[2]=$tmp[2]=="0"?"男":"女";
                $dat[]=$tmp;
            }
            $this->assign('data',$dat);
            $this->display("index.html");
         }
         public function Adds(){
             $arr[]=$_POST['per_name'];    
             $arr[]=$_POST['per_age'];    
            $arr[]=$_POST['per_sex'];    
             $data['info']=serialize($arr);
            $this->add($data,"personal_info");
            $this->redirect("Index/index");
         }
}
?>
登录后复制


HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><html>
    <head>
        <title>welcome YouYaX</title>
        <style>
         .tdclass{border-bottom:1px dashed #ff0000}
        </style>
    </head>
    <body>
    <center>
        <form action="__APP__/Index/Adds" method="post">
        <table width=800 >
            <tr>
                <td  colspan=2>个人资料</td>
            </tr>
            <tr>
                <td>姓名</td><td><input name="per_name"></td>
            </tr>
            <tr>
                <td>年龄</td><td><input name="per_age"></td>
            </tr>
            <tr>
                <td>性别</td><td><input type="radio" name="per_sex" value="0">男 
                <input type="radio" name="per_sex" value="1">女</td>
            </tr>
            <tr>
                <td colspan=2><input type="submit" name="sub" value="保存"></td>
            </tr>
        </table>
    </form>
    <hr>
    <table width=800 style="background:#f8f8f8">
        <tr><td>姓名</td><td>年龄</td><td>性别</td></tr>
        <list>
            <tr>
                <td class="tdclass">{data.0}</td>
                <td class="tdclass">{data.1}</td>
                <td class="tdclass">{data.2}</td>
            </tr>
        </list>
    </table>
    </center>
    </body>
</html>
登录后复制








------解决方案--------------------
啊,分享?
------解决方案--------------------
用的啥框架?
------解决方案--------------------
一看就TP啊
最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号