两个表的关联查询: $M_shopping = M('Shops'); $M_product = M('Product'); $list_shops = $M_shopping->join('as shops left join hr_product as product on shops.product_id = product.p_id') ->...
Category Archives: php技术
thinkphp关联查询
2012.11.30 , php技术, Thinkphp , 3评论 11626个游客飘过php分页代码
2012.11.29 , php技术 , 暂无评论 7834个游客飘过<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <hea...
WordPress首页文章摘要旁边显示缩略图的方法
2012.11.25 , Wordpress , 1 Comment 14909个游客飘过首先贴出所需的css代码,放到你的主题文件style.css里面,要显示的图片的大小可以通过下面的width和height设置: .thumbnail_box { float: left; width: 140px; height:100px; margin: 17px 10px 8px 15px;_margin: 17px 10px...
echsho文件夹结构
2012.11.17 , Ecshop , 暂无评论 13028个游客飘过一、文件夹功能说明 1、根目录:前台程序文件 2、admin:后台程序文件夹 –根目录:后台程序文件 *.php文件 –help\zh_cn:各功能的帮助文件 *.xml文件 –images:后台页面用图片 –includes:后台公用文件和函数 –js:后台用js脚本 –styles:后台用样式表 –templates:后台页面模板 *.htm文件 3、api:调用...
wordpress自定义默认头像
2012.11.15 , php技术 , 3评论 5773个游客飘过在wordpress里面会有默认头像,大部分人都不喜欢,要想用一个自己自定义的头像,那么你找的functions.php文件,把如下代码放到里面就ok了! // Make a new default gravatar available on the dashboard function newgravatar ($avatar_defaults) { $myava...
dedecms标签调用
2012.11.13 , Dedecms, php技术 , 暂无评论 10360个游客飘过关键描述调用标签: <meta name="keywords" content="{dede:field name='keywords'/}"> <meta name="description" content="{dede:field name='description' function='html2text(@me)'/}"> 模板路径调...
wordpress调用文章分类
2012.11.12 , php技术 , 6评论 5662个游客飘过登陆博客后台,点击外观选项卡下的“编辑”选项进入当前主题编辑界面(也可以下载文件到本地进行编辑) 在需要调用分类文章的地方添加以下调用代码 <?php $posts = get_posts( "category=1&numberposts=10" ); ?> <?php if( $posts ) : ?> <?php forea...
前台JS验证登陆注册(已测试)
2012.11.12 , php技术 , 1 Comment 5614个游客飘过<SCRIPT language="JavaScript"> <!-- function checkreg() { if (document.form1.User.value=="") { alert("请输入您的用户名!"); form1.User.focus(); return false; } if (document.form1.User.v...
ecshop的常见问题
2012.11.12 , Ecshop, php技术 , 暂无评论 12757个游客飘过1:如何修改网站"欢迎光临本店" 回答:languages\zh_cn\common.php文件中, $_LANG['welcome'] = '欢迎光临本店';将他修改成你需要的字样。 2:如何修改首页"热门搜索关键字" 回答:后台->系统设置->网店设置->显示设置->首页搜索关键字,修改他的内容,然后保存 3:如何修...
php文件上传
2012.11.11 , php技术 , 1 Comment 5449个游客飘过php文件上传代码如下: <?php /** Array ( [filename] => Array ( [name] => 0ebb2da595a53999a4abaab1922d9896.gif [type] => image/gif [tmp_name] => C:\WINDOWS\TEMP\php33.tmp [error] =&...