Archive for the ‘php’ Category

e/class/EmpireCMS_version.php

星期六, 十月 24th, 2009

Tags: , , , , ,

ECMS v6 数据表参考手册

星期五, 十月 2nd, 2009

查询每个数据表 字段 字段类型  字段解释

zd.jpg

查询不同数据表中的相同字段
sim.jpg

Strings

星期三, 二月 25th, 2009

<?php

    echo”hello world<br />”;
    echo’hello world<br />’;
    $my_variable =”hello world”;
    echo $my_variable;
    echo $my_variable .  “Again”;

?>
<?php

      echo “$my_variable Again.”;
      echo “{$my_variable} Again.”;
      echo ‘$my_variable Again.’    //$my_variable Again

?>

Tags: ,

Variables

星期三, 二月 25th, 2009

Varibles Name
1.Start with a $
2.followed by letter or underscore
3.No space
4.case-sensitive

Tags: ,