博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
我的web框架
阅读量:6608 次
发布时间:2019-06-24

本文共 1989 字,大约阅读时间需要 6 分钟。

我的web框架

==========================================================

前端:css(bootstrap,自己的代码片段),js(jquery,自己的代码片段),html,交互设计。

后端:php(数据库配置,数据操作,具体页面逻辑,控制器),smarty(smarty引用,实例化等都放到一个文件中,参考其他用smarty写的网站),mysql(常用的数据库操作语句)。
工具:服务器php环境(擅长),用WAMP集成环境,sublime编辑器(用svn,emmet等插件),git和svn版本控制(在自己的网站中没有用到,因为需要在服务器端配置环境),photoshop,虚拟机和IETester以及其他浏览器,FlashFXP(ftp管理工具)。
==========================================================
 
我的css代码片段:
 
我的js代码片段:
 
php代码片段:
 
smarty代码片段:
配置:
1 
caching = false;//是否使用缓存 8 $smarty -> template_dir = "./templates";//设置模板目录 9 $smarty -> compile_dir = "./templates_c";//设置编译目录10 $smarty -> cache_dir = "./smarty_cache";//缓存文件夹11 //修改左右边界符号12 $smarty -> left_delimiter="<{";13 $smarty -> right_delimiter="}>";14 15 $smarty -> assign("var1","hello world");//16 $smarty -> display("hello.tpl");//17 18 ?>
View Code

smarty模板操作变量:

smarty模板的内置函数:

 
mysql代码片段:
1 创建数据库: 2 create database books; 3 创建用户: 4 mysql> grant select,insert,delete,uptate 5     -> on books.* 6     -> to dada identified by 'yujianqi2011'; 7   8 使用数据库: 9 use dbname;10 use dada;11  12 新建数据库表13 create table tablename(columns);14 create table demo(15      userid int unsigned not null auto_increment primary key,16      username char(50) not null,17      password char(20) not null,18      age int not null,19      city char(20) not null     20 );21  22 显示数据库表23 show tables;24  25 在数据库中插入数据26 insert into demo values(NULL,"dada","yujianqi2011",27,"beijing");27 insert into demo values(NULL,"xiaoyin","yujianqi2011",26,"shanghai");28  29 查询数据30 select name, city from customers where name="dada";31  32 更新数据33 update customers 34 set address =  "北京市海淀区";35  36 删除数据37 delete from dada where name = "dada";38  39 表的删除40 DROP TABLE table;41  42 数据删除43 DROP DATABASE database;
View Code

 

 
==========================================================
 
参考学习的网站:
 
============================
bootstrap网站链接:
 
w3help:
 
codecademy:
 
w3cschool:
 
==============================
 
web代码分布:
 
 
 

转载地址:http://pwiso.baihongyu.com/

你可能感兴趣的文章
获取坐标封装 getPos
查看>>
机器学习系列(一)--术语篇
查看>>
初级文件IO——open打开文件成功后行为分析
查看>>
Django-static
查看>>
virtualbox+vagrant学习-5-Boxes-2-Box Versioning
查看>>
矩阵连乘 和表达式加括号求最大值
查看>>
TIANKENG’s rice shop
查看>>
iOS-----正则表达式
查看>>
SSH2搭建步骤 struts-2.2.3.1 hibernate-3.3.2 hibernate-annotations-3.4.0 spring-3.0.5
查看>>
建模心法(3) 模型的演进——保持简单和弹性的3个建议
查看>>
石子合并加强版
查看>>
hdu 4332 Constructing Chimney
查看>>
小白出品 单元测试相关——入门级说明书
查看>>
Linux系统学习笔记(1)
查看>>
浅析设计模式(五)——原型模式
查看>>
饿猫学java——String深入浅出
查看>>
poj 3624
查看>>
Unable to make the session state request to the session state server处理方法
查看>>
图的遍历(Python实现)
查看>>
CSS 笔记——背景布局
查看>>