`
文章列表
$rs = mysql_query($limit); $numbers = mysql_num_rows($rs);
可以使用SHOW CHARACTER SET语句列出可用的字符集: mysql> SHOW CHARACTER SET; Database Character Set and Collation CREATE DATABASE db_name [[DEFAULT] CHARACTER SET charset_name] [[DEFAULT] COLLATE collation_name] ALTER DATABASE db_name [[DEFAULT] CHARACTER SET charset_name] [[DEFAULT] COLL ...
filename.substring(filename.lastIndexOf('.')+);
//fix bug stefan var empty = true; var inputs = document.getElementsByName('<?=$tableColumns[3];?>'); var i = 0; for(i=0; i<inputs.length; i++) { if(inputs[i].checked) { //alert(inputs[i].value); empty = false; } } if(empty) { alert(noteI ...
(function($){ $(document).ready(function(){ }); })(jQuery);
  <SCRIPT LANGUAGE="javascript"> js脚本开始;   window.open弹出新窗口的命令;   'page.html'弹出窗口的文件名;   'newwindow'弹出窗口的名字(不是文件名),非必须,可用空''代替;   height=100窗口高度;   width=400窗口宽度;   top=0窗口距离屏幕上方的象素值;   left=0窗口距离屏幕左侧的象素值;   toolbar=no是否显示工具栏,yes为显示;   menubar,scrollbars表示菜单栏和滚动栏。   resizabl ...

三表关联查询

    博客分类:
  • SQL
join、left join、right join 后面跟查询关联表名 on 后面跟两表关联条件 SELECT u.uid, u.name, pf.name, pv.fid, pv.value FROM profile_values pv JOIN users u ON u.uid = pv.uid JOIN profile_fields pf ON pf.fid = pv.fid WHERE u.name = 'stefan321' AND pf.name = 'zipcode'

正则特殊符号

/ 定界符 ^ 字符串头 $ 字符串尾 [a-z] 所有小写字母 [A-Z] 所有大写字母 [0-9] 所有数字 ? 零或一个紧接前的字符 * 零或多个紧接前的字符 + 一或多个紧接前的字符 {4} 4个紧接前的字符 {4,8} 4-8个紧接前的字符 . 任意字符 (red|green|blue) Red 或 green 或 blue(红 或 绿 或 蓝) s 空格 特殊字符(需要在前加 ) ( ) [ ] . * ? + ^ | $
MySql 清空数据表 TRUNCATE TABLE {tablename}

Drupal 常用操作

//Retrieve the comment mode for the given node ID (none, read, or read/write). db_result(db_query('SELECT comment FROM {node} WHERE nid = %d', $nid));

Hook_theme

/** * Implementation of hook_theme() */ function node_theme() { return array( 'node' => array( 'arguments' => array('node' => NULL, 'teaser' => FALSE, 'page' => FALSE), 'template' => 'node', 'file' => 'node.pages.inc', ), ); }
<?php global $user; // Check to see if $user has the administrator role. if (in_array('administrator', array_values($user->roles))) { // Do something. } ?> <?php /** * Check to see if a user has been assigned a certain role. * * @param $role * The name of the r ...

xml header

header('Content-Type: text/xml');

Drupal: base url

<?php global $base_url; print $base_url;?>
<?php $bresval = false; if (arg(0) == 'node' && ctype_digit(arg(1))) { $node = node_load(arg(1)); if ($node->type == 'event') { $bresval = true; } } return $bresval; ?> In this particular case, we will only display the block if node type is "event" ...
Global site tag (gtag.js) - Google Analytics