本文整理汇总了PHP中css_include_tag函数的典型用法代码示例。如果您正苦于以下问题:PHP css_include_tag函数的具体用法?PHP css_include_tag怎么用?PHP css_include_tag使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了css_include_tag函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_db
$db = get_db();
$industry = $db->query("select * from fb_invest_industry");
$count = $db->record_count;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>报名加入创业者数据库-福布斯中文网</title>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<?php
use_jquery();
js_include_tag('public', 'right', 'sign');
#validate_form("sign");
css_include_tag('public', 'right_inc', 'sign', 'admin');
?>
</head>
<body>
<div id=icaption>
<div id=title><?php
if ($id != '') {
echo "编辑会员";
} else {
echo "添加会员";
}
?>
</div>
<a href="user.php" id=btn_back></a>
</div>
示例2: get_db
<?php
session_start();
require_once('../frame.php');
$db = get_db();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<title>福布斯-榜单首页</title>
<?php
use_jquery();
js_include_tag('select2css','index');
css_include_tag('charts_index','public','index');
?>
</head>
<body>
<div id=ibody>
<? require_once('../inc/top.inc.php');?>
<div id=top>
<div id=cyindex><img src="/images/html/list/title.gif"></div>
<div id=cytitle><a style="color:#666666;" href="/">福布斯中文网 > </a><a >榜单首页</a></div>
<div id=cyline></div>
</div>
<div id="left">
<div id=t_l_t>
<?php $record_show = get_news_by_pos('榜单头条','榜单首页');?>
<div id=t_l_t_t>
<div class=headline_pic id=headline_pic_0><a href=""><img border=0 width=300 height=200 src="<?php echo $record_show[0]->image_src; ?>"></a></div>
<div class=headline_pic id=headline_pic_1 style="display:none;"><a href=""><img border=0 width=300 height=200 src="<?php echo $record_show[1]->image_src; ?>"></a></div>
<div class=headline_pic id=headline_pic_2 style="display:none;"><a href=""><img border=0 width=300 height=200 src="<?php echo $record_show[2]->image_src; ?>"></a></div>
示例3: count
}
}
$sql .= " and name like '%{$sea}%' or item_type like '%{$sea}%' or company_name like '%{$sea}%' or item_name like '%{$sea}%' or email like '%{$sea}%'";
}
$record = $db->paginate($sql, 30);
$count = count($record);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-CN>
<title>forbes</title>
<?php
css_include_tag('admin');
use_jquery();
js_include_tag('admin_pub');
?>
</head>
<body>
<div id=icaption>
<div id=title>投资人报名信息</div>
</div>
<div id=isearch>
<input class="sau_search" name="title" type="text" value="<?php
echo $_REQUEST['sea'];
?>
">
<input type="button" value="搜索" id="search_button">
示例4: use_jquery
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>小院子</title>
<?php
include_once '../frame.php';
use_jquery();
css_include_tag('yyard', 'colorbox');
js_include_tag('yard/yard', 'jquery.colorbox-min');
$db = get_db();
$id = $_GET['id'];
$flag = true;
$user = User::current_user();
if (!$user) {
alert("请您先登录!");
redirect('/login/?last_url=/yard/');
exit;
}
$info = $db->query("select * from eachbb_member.member where id={$id}");
if ($id != $user->id && $id != '') {
$flag = false;
$db->execute("insert into eachbb_member.member_status (uid,created_at,last_login,score,level,friend_count,unread_msg_count,visit_count) values ({$info[0]->uid},now(),now(),0,0,0,0,1) ON DUPLICATE KEY update visit_count = visit_count +1");
$vis_id = $db->query("select id from eachbb_member.visit_history where u_id= {$info[0]->id} and f_id= {$user->id}");
if (!$vis_id) {
if (!$db->execute("insert into eachbb_member.visit_history(create_at,u_id,f_id,f_name,f_avatar)values(now(),{$id},{$user->id},'{$user->name}','{$user->avatar}');")) {
echo "添加失败!";
}
} else {
$db->execute("update eachbb_member.visit_history set create_at =now()}' where id={$vis_id[0]->id}");
}
示例5: rand_str
$uname = $_COOKIE['login_name'];
}
if (!isset($_SESSION['new_user_info'])) {
$_SESSION['new_user_info'] = rand_str();
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<title>用户中心_福布斯中文网</title>
<?php
use_jquery();
js_include_tag('public', 'jquery.colorbox-min.js', 'user/user2');
css_include_tag('complete_info', 'public', 'colorbox');
?>
</head>
<body>
<div id="ibody">
<?php
include_top();
?>
<div id=bread>用户中心 > 个人信息</div>
<div id=bread_line></div>
<div id=register>
<div id="info">
<div id="content">
<div id="content_left">
<div class="context"><a href="user_favorites.php">我的收藏</a></div>
<div class="context"><a href="user_order.php">订阅信息</a></div>
示例6: judge_role
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-CN>
<title>富豪编辑</title>
<?php
include_once '../../frame.php';
judge_role();
css_include_tag('admin', 'thickbox');
use_jquery();
?>
</head>
<?php
$db = get_db();
$id = $_REQUEST['id'];
$record = new table_class('fb_fhb');
if ($id != '') {
$record->find($id);
}
?>
<body style="background:#E1F0F7">
<form id="fhgl_edit" enctype="multipart/form-data" action="bdedit.post.php" method="post">
<table width="795" border="0">
<tr class=tr1>
<td colspan="2" width="795"> 编辑榜单</td>
</tr>
<tr class=tr4>
<td width="130">榜单名称</td><td width="695" align="left"><input id="fhb_year" type="text" name="fhb[year]" value="<?php
示例7: dirname
<?php
include_once dirname(__FILE__) . '/../frame.php';
use_jquery_ui();
css_include_tag('article', 'news_list');
init_page_items('_news_right');
$category_id = $_GET["category_id"];
$id = $_GET["id"];
$db = get_db();
?>
<style>
#brr_img{width:297px; height:195px; float:right; display:inline;}
</style>
<div id="list_container">
<div id="class">
<div id="brr_img" class="ad_banner"></div>
<div class="cla_t"></div>
<div class="cla_c">
<div class="cla_title">早教课程</div>
<div class="cla_img">
<?php
$db = get_db();
// $list=$db->query("SELECT id FROM eb_category where category_type = 'news'");
// $count = $db->query("SELECT count(id)id FROM eb_category where category_type = 'news'");
// $news_id;
// for($i = 0 ; $i < $count[0]->id ; $i++)
// {
// //echo $result_id->id;
// $news_id .= $list[$i]->id.",";
// }
// $list=$db->query("SELECT id,name,url FROM eb_images where category_id in (".$news_id.") and is_adopt=1 order by create_time desc,click_count desc limit 3;");
示例8: use_jquery
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>小院子</title>
<?php
include_once '../frame.php';
use_jquery();
css_include_tag('yard', 'member', 'photo_show', 'diary_show');
js_include_tag('yard/yard', 'member', 'yard/uphoto_show');
$user = User::current_user();
if (!$user) {
alert("请您先登录!");
redirect('/login/');
exit;
}
$id = trim($_GET['id']);
$album_id = intval($_GET['album_id']);
if (!is_numeric($id)) {
die('invlid request!');
}
$db = get_db();
$photo = $db->query("SELECT id,u_id,u_name,photo,width,height,created_at,description FROM eachbb_member.photo p where album_id={$id} order by created_at desc;");
$album = $db->query("SELECT id,u_id FROM eachbb_member.album a where id={$id};");
$member = $db->query("select name from `eachbb_member`.member where id = {$album[0]->u_id};");
?>
</head>
<body>
<input type="hidden" id="album_id" name="album_id" value="<?php
echo $album_id;
?>
示例9: session_start
<?php
session_start();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>编辑专题</title>
<?php
require_once '../../frame.php';
$subject_id = intval($_REQUEST['id']);
if ($subject_id <= 0) {
die('非法的专题id!');
}
css_include_tag("admin2", "subject/subject.css", "subject/subject1.css", "contextmenu/jquery.contextmenu", "thickbox");
use_jquery_ui();
js_include_tag('jquery.contextmenu', 'admin/subject_edit', 'thickbox', 'admin/subject_module_class', 'ajaxfileupload');
/*
* get data
*/
$subject = new table_class('fb_subject');
if ($subject->find($subject_id) === false) {
die('无法找到匹配的专题!');
}
?>
</head>
<body>
<div id=icaption>
<div id=title>发布专题</div>
<a href="index.php" id=btn_back></a>
示例10: use_jquery
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<title>小院子</title>
<?php
include_once '../frame.php';
use_jquery();
css_include_tag('yard', 'member', 'diary', 'diary_list');
js_include_tag('yard/yard', 'member', '../ckeditor/ckeditor.js', 'yard/diary');
$id = trim($_GET["id"]);
$db = get_db();
if ($id) {
if (!is_numeric($id)) {
die('invlid request!');
} else {
$member = new table_class('eachbb_member.member');
$member->find($id);
if (!$member) {
alert("非法操作!");
?>
<script>window.location.href="/login/";</script>
<?php
}
$user_id = $id;
}
} else {
$user = User::current_user();
if (!$user) {
alert("请您先登录!");
?>
示例11: use_jquery
$record = $db->paginate($sql . $condition . " order by created_at desc", 10);
$totle_count = $top_news ? $page_record_count + 1 : $page_record_count;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<title><?php
echo $title;
?>
_新闻列表_福布斯中文网</title>
<?php
use_jquery();
js_include_tag('public', 'right');
css_include_tag('news', 'public', 'right_inc');
?>
</head>
<body <?php
if ($news->forbbide_copy == 1) {
?>
oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="return false" oncopy="return false" onbeforecopy="return false" onmouseup="return false" <?php
}
?>
>
<div id=ibody>
<?php
include_top();
?>
<div id=bread>
<?php
示例12: css_include_tag
<?php
include_once '../../frame.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-CN>
<title></title>
<?php
css_include_tag('admin2', 'thickbox', 'jquery_ui');
use_jquery_ui();
js_include_tag('admin/vote/vote', 'thickbox', '../ckeditor/ckeditor.js');
validate_form("vote_form");
?>
</head>
<body>
<div id=icaption>
<div id=title>添加调查表</div>
<a href="index.php" id=btn_back></a>
</div>
<form id="vote_form" method="post" enctype="multipart/form-data" action="vote.post.php">
<div id=itable>
<table cellspacing="1" align="center" width="1026">
<tr class=tr4>
<td align="center" width="15%">标题:</td>
<td width="85%" align="left"><input type="text" class="required" name="vote[name]"></td>
</tr>
示例13: session_start
<?php
session_start();
require_once '../frame.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<title>福布斯-富豪检索</title>
<?php
use_jquery();
js_include_tag('select2css');
css_include_tag('searchfh', 'top', 'bottom', 'right');
?>
</head>
<body>
<div id=ibody>
<? require_once('../inc/top.inc.php');?>
<div id=cyindex></div>
<div id=cytitle><a style="color:#666666;" href="">福布斯中文网 > <a href="">富豪检索结果</a></div>
<div id=cyline></div>
<div id=searchfh_left>
<div id=s_l_t>
富豪姓名 <input type="text"> 年龄段 <select></select> 资产规模 <select></select>
<div id=s_l_t_l>国 籍 <select></select> 行 业 <select></select></div>
<div id=s_l_t_r><button></button></div>
</div>
<div id=s_l_title_left></div>
<div id=s_l_title_center>
<div id=wz>搜索结果如下</div>
示例14: dirname
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<title>网趣宝贝</title>
<?php
include_once dirname(__FILE__) . "/../../frame.php";
include_once dirname(__FILE__) . "/../../lib/page_pos.class.php";
use_jquery_ui();
js_include_tag('jquery.colorbox-min', 'admin/page_pos/edit');
css_include_tag('jquery_ui', 'admin');
$pos = new table_class('eb_page_pos');
$pos->find('first', array('conditions' => "page='{$_GET['page']}' and name='{$_GET['pos_name']}'"));
$fields['default'] = array("标题", "描述", "链接", "静态链接", "图片一", "图片二", "备用字段", "备用字段2");
$fields['link_d_i'] = array("标题", "描述", "链接", "", "图片", "", "", "");
$fields['link'] = array("标题", "", "链接", "", "", "", "", "");
$fields['link_i'] = array("", "", "链接", "", "图片", "", "", "");
$fields['link_t_i'] = array("标题", "", "链接", "", "图片", "", "", "");
$fields['link_t_d'] = array("标题", "描述", "链接", "", "", "", "", "");
$fields['link_i2'] = array("", "", "链接", "", "图片1", "图片2", "", "");
$fields['qa'] = array("问题", "", "链接", "", "", "", "", "");
$fields['pg'] = array("标题", "描述", "链接", "", "图片", "", "", "");
$fields['link_t_time'] = array("类型", "标题", "链接", "", "", "", "时间", "");
$fields['link_day'] = array("标题", "", "链接", "", "", "", "", "");
$fields['link_desc'] = array("", "描述", "链接", "", "", "", "", "");
$names = array_key_exists($_GET['name'], $fields) ? $fields[$_GET['name']] : $fields['default'];
?>
</head>
<body>
<div id=pos_caption>
示例15: use_jquery
echo $seo[0]->title;
?>
</title>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta http-equiv=Content-Language content=zh-cn>
<meta name="keywords" content="<?php
echo $seo[0]->keywords;
?>
" />
<meta name="description" content="<?php
echo $seo[0]->description;
?>
" />
<?php
use_jquery();
js_include_tag('public');
css_include_tag('public', 'common', 'right_inc');
?>
</head>
<body>
<div id=ibody>
<?php
$pos = "initiate_";
init_page_items();
include_once dirname(__FILE__) . '/../inc/top.inc.php';
include dirname(__FILE__) . '/../_index.php';
include_once dirname(__FILE__) . '/../inc/bottom.inc.php';
?>
</div>
</body>
</html>