最近比较浮躁不安,一直抗拒学习PHP,在身边的朋友悉心引导下, 慢慢静下心来。我好开心,能有这么一个好的契机一边上班 一边学习。
<tr>
<td width="100">品牌</td>
<td>
<?php echo SqlSelect(‘goods where 1=1‘,‘brand‘,‘select‘,‘brand‘,‘-请选择品牌-‘); ?>
</td>
</tr>
/**********数据库筛选菜单********************************************************/
/**
* value 为ID时显示函数
* @param string $SqlForm 表名+条件 admin where id = ‘$id‘
* @param string $SqlId 前端要显示的value 一般为数据库字段
* @param string $SqlColumn 前端页面显示的title
* @param string $title 默认显示,--请选择--
* @param string $value 默认值的ID
*/
function SqlSelect($SqlForm,$SelectName,$class,$SqlColumn,$title){
$SearchSql = mysql_query("select * from {$SqlForm}");
while($Search = mysql_fetch_array($SearchSql)){
$key = $Search[$SqlColumn];
$option[$key] = $key;
}
return select($SelectName,$class,$title,$option);
}
/**********option打印函数********************************************************/
/**
* 打印函数
* @param string $title 默认第一个option
* @param array $option 选项集合 array(‘男‘,‘女‘)
* @param string $value 默认用户选中
* @return 返回结果
*/
function option($title,$option,$value){}
<tr>
<td width="100">语种</td>
<td>
<select name="oLanguage" class="select textPrice">
<?php echo option(‘-请选择语种-‘,explode(‘,‘,website(‘language‘)),$value);?>
</select>
</td>
</tr>
/**********输出网站自定义文字********************************************************/
function website($id){
$website = query("website"," webid = ‘$id‘ ");
return $website[‘text‘];
}
/**********拆分字符串为数值**************/
explode(‘边界符‘,‘拆分的字符串‘);
2017.08.18 笔记上