Archive for the ‘php’ Category
ECMS v6 数据表参考手册
星期五, 十月 2nd, 2009查询每个数据表 字段 字段类型 字段解释

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

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
?>
Variables
星期三, 二月 25th, 2009Varibles Name
1.Start with a $
2.followed by letter or underscore
3.No space
4.case-sensitive
