摘要:
1. 利用div的层次,设置底层div充满屏幕,并给div设置背景图 2. 利用body元素body{background:url no-repeate center position red ; background-size:cover};body{backgro... 阅读全文
摘要:
var_dump 判断一个变量的类型与长度如:echo仅输出变量或字串print_r输出数组 a [1] => b [2] => c ) ?> 阅读全文
摘要:
1.http://jinja.pocoo.org/docs/dev/switching/#django目前已了解的不同:1) 某元素是否存在if xxx Djangoif xxx is define jinja2) 是否相等ifequal xxx xxx Djangoif xxxx == xxx ... 阅读全文
摘要:
在Firefox中关闭缓存看看这里在地址栏输入:about:config然后在过滤器中输入:browser.cache.disk.enable解释:When a page is loaded, it can be cached so it doesn’t need to be downloaded ... 阅读全文
摘要:
主要配置两点:1)配置vhost ,可单独建文件,也可直接在http.conf添加内容 如果单独建文件,查看http.conf 中Include 配置文件的路径,并在对应路径新建http_vhost.conf文件,文件内容如下 ServerName www.myweb1.com DocumentR... 阅读全文
摘要:
$mysql_server_name=""; //数据库服务器名称 $mysql_username=""; // 连接数据库用户名 $mysql_password=""; // 连接数据库密码 $mysql_... 阅读全文
摘要:
1. css3 圆角http://www.cnblogs.com/lhb25/archive/2013/01/30/css3-border-radius.html2. text shawdowhttp://www.w3.org/Style/Examples/007/text-shadow.en.ht... 阅读全文
摘要:
1. 配置参数'./configure' '--prefix=/usr/local/php5.2' '--with-apxs2=/usr/sbin/apxs' '--with-mysql=/usr/bin/mysql' '--with-curl' '--enable-mbstring' '--ena... 阅读全文
摘要:
show slave status 查看从库信息 http://blog.csdn.net/lxpbs8851/article/details/7898716搭建主从库 http://www.cnblogs.com/lben/archive/2012/11/19/2777632.html http... 阅读全文
摘要:
2.mysqlservice mysql statusmysql--versionmysql -h 服务器主机地址 -u 用户名 -p 用户密码exit 退出mysql -h 主机名 -u 用户名 -p 连接远程MySQL1,数据库备份命令mysqldump -h localhost-u root ... 阅读全文