get_magic_quotes_gpc — 獲取當(dāng)前 magic_quotes_gpc 的配置選項設(shè)置
2017-05-16
使用PHP調(diào)用Smarty顯示時 HTML模板當(dāng)中的css沒有顯示布局改變 有方法解決么 直接打開HTML就能正常顯示
2017-05-14
// 記錄的刪除操作
function delete($table, $where = null) {
$where = ($where == null)? null : " where " . $where;
$sql = "delete from {$table} {$where}";
mysql_query($sql);
return mysql_affected_rows();
}
function delete($table, $where = null) {
$where = ($where == null)? null : " where " . $where;
$sql = "delete from {$table} {$where}";
mysql_query($sql);
return mysql_affected_rows();
}
2017-05-11
// 完成記錄的插入操作
function insert($table, $array) {
$keys = join(",", array_keys($array));
$vals = "'" . join("','", array_values($array)) . "'";
$sql = "insert {$table}($keys) values({$vals})";
mysql_query($sql);
return mysql_insert_id();
}
function insert($table, $array) {
$keys = join(",", array_keys($array));
$vals = "'" . join("','", array_values($array)) . "'";
$sql = "insert {$table}($keys) values({$vals})";
mysql_query($sql);
return mysql_insert_id();
}
2017-05-11