本文整理汇总了PHP中seo_title函数的典型用法代码示例。如果您正苦于以下问题:PHP seo_title函数的具体用法?PHP seo_title怎么用?PHP seo_title使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了seo_title函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: mysql_query
mysql_query("DELETE FROM slide WHERE id_slide='{$_GET['id']}'");
} else {
mysql_query("DELETE FROM slide WHERE id_slide='{$_GET['id']}'");
}
echo "<script>alert('Sukses! Data Telah Berhasil Dihapus.'); window.location = '../../media.php?module={$module}';</script>";
} else {
echo "<script>alert('Maaf! Data Gagal Dihapus, Silahkan coba lagi.'); window.location = '../../media.php?module={$module}';</script>";
}
}
if ($act == 'insertnew') {
// Insert
if ($module == 'slideshow' and $act == 'insertnew') {
$lokasi_file = $_FILES['fupload']['tmp_name'];
$tipe_file = $_FILES['fupload']['type'];
$nama_file = $_FILES['fupload']['name'];
$nama_seo = substr(seo_title($_POST['nama']), 0, 75);
$acak = rand(00, 999);
$nama_file_unik = $nama_seo . '-' . $acak . '-' . $nama_file;
if (!empty($lokasi_file)) {
if ($tipe_file != "image/jpeg" and $tipe_file != "image/pjpeg" and $tipe_file != "image/gif" and $tipe_file != "image/png") {
?>
<script>window.alert("Upload Gagal, Pastikan File yang di Upload bertipe *.JPG, *.GIF, *.PNG");
window.location=("../../media.php?module=<?php
echo $module . '&act=edit&id=' . $_POST['id'];
?>
")</script>;
<?php
die;
}
ImageUpload($fupload_name = $nama_file_unik, $to_dir = '../../../joimg/slide/');
mysql_query("INSERT INTO slide(nama, gambar, deskripsi) \n\t\t VALUES('{$_POST['nama']}', '{$nama_file_unik}', '{$_POST['deskripsi']}')");
示例2: UploadEvent
// Apabila ada gambar yang diupload
if (empty($_POST['judul'])) {
echo "<script>window.alert('Judul harus diisi');\n window.location(history.back(-1))</script>";
} else {
UploadEvent($nama_file_unik);
mysql_query("INSERT INTO event(judul,\n tanggal, \n judul_seo,\n isi,\n oleh,\n gambar,\n aktif) \n VALUES('{$_POST['judul']}',\n now(),\n '{$produk_seo}',\n '{$isi}',\n '{$_POST['oleh']}',\n '{$nama_file_unik}',\n 'Ya')");
header('location:../../media.php?module=' . $module);
}
} elseif ($module == 'event' and $act == 'update') {
$lokasi_file = $_FILES['fupload']['tmp_name'];
$tipe_file = $_FILES['fupload']['type'];
$nama_file = $_FILES['fupload']['name'];
$acak = rand(1, 99);
$nama_file_unik = $acak . $nama_file;
$isi = mysql_real_escape_string($_POST['deskripsi']);
$produk_seo = seo_title(trim($_POST['judul']));
// Apabila gambar tidak diganti
if (empty($lokasi_file)) {
mysql_query("UPDATE event SET judul = '{$_POST['judul']}',\n oleh = '{$_POST['oleh']}',\n judul_seo = '{$produk_seo}',\n isi = '{$isi}'\n WHERE id_event = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
} else {
$data = mysql_fetch_array(mysql_query("SELECT gambar FROM event WHERE id_event ='{$_POST['id']}'"));
if ($data['gambar'] != '') {
//hapus foto dari folder
unlink("../../../joimg/event/{$data['gambar']}");
unlink("../../../joimg/event/s_{$data['gambar']}");
UploadEvent($nama_file_unik);
mysql_query("UPDATE event SET judul = '{$_POST['judul']}',\n oleh = '{$_POST['oleh']}',\n judul_seo = '{$produk_seo}',\n isi = '{$isi}',\n gambar = '{$nama_file_unik}' \n WHERE id_event = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
} else {
UploadEvent($nama_file_unik);
示例3: header
$table->updateBy('id_gallery', $id, $data);
header('location:../../admin.php?mod=' . $mod);
} else {
$data = array('id_album' => $id_album, 'title' => $title);
$table = new PoTable('gallery');
$table->updateBy('id_gallery', $id, $data);
header('location:../../admin.php?mod=' . $mod);
}
} else {
header('location:../../404.php');
}
} elseif ($mod == 'gallery' and $act == 'editalbum') {
if ($currentRoleAccess->modify_access == "Y") {
$id = $val->validasi($_POST['id'], 'sql');
$title = $val->validasi($_POST['title'], 'xss');
$seotitle = seo_title($title);
$data = array('title' => $title, 'seotitle' => $seotitle);
$table = new PoTable('album');
$table->updateBy('id_album', $id, $data);
header('location:../../admin.php?mod=' . $mod . '&act=album');
} else {
header('location:../../404.php');
}
} elseif ($mod == 'gallery' and $act == 'activealbum') {
if ($currentRoleAccess->modify_access == "Y") {
$id = $val->validasi($_POST['id'], 'sql');
$active = $val->validasi($_POST['active'], 'xss');
$data = array('active' => $active);
$table = new PoTable('album');
$table->updateBy('id_album', $id, $data);
echo "{$active}";
示例4: mysql_query
if (empty($_SESSION['username']) and empty($_SESSION['passuser'])) {
echo "<link href='style.css' rel='stylesheet' type='text/css'>\r\n <center>Untuk mengakses modul, Anda harus login <br>";
echo "<a href=../../index.php><b>LOGIN</b></a></center>";
} else {
include "../../../config/koneksi.php";
include "../../../config/fungsi_seo.php";
include "../../../config/library.php";
$module = $_GET[module];
$act = $_GET[act];
// Hapus agenda
if ($module == 'agenda' and $act == 'hapus') {
mysql_query("DELETE FROM agenda WHERE id_agenda='{$_GET['id']}'");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'agenda' and $act == 'input') {
$mulai = $_POST['mulai'];
$selesai = $_POST['akhir'];
$jam = $_POST['waktu_mulai'];
$jam2 = $_POST['waktu_akhir'];
$tema_seo = seo_title($_POST['tema']);
mysql_query("INSERT INTO agenda(tema,\r\n tema_seo, \r\n isi_agenda,\r\n tempat,\r\n\t\t\t\t\t\t\t\t jam_mulai,\r\n jam_akhir,\r\n tgl_mulai,\r\n tgl_selesai,\r\n tgl_posting,\r\n pengirim, \r\n username) \r\n\t\t\t\t\t VALUES('{$_POST['tema']}',\r\n\t\t\t\t\t '{$tema_seo}', \r\n '{$_POST['isi_agenda']}',\r\n '{$_POST['tempat']}',\r\n '{$jam}',\r\n\t\t\t\t\t\t\t\t '{$jam2}',\r\n '{$mulai}',\r\n '{$selesai}',\r\n '{$tgl_sekarang}',\r\n '{$_POST['pengirim']}',\r\n '{$_SESSION['namauser']}')");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'agenda' and $act == 'update') {
$mulai = $_POST['mulai'];
$selesai = $_POST['akhir'];
$jam = $_POST['waktu_mulai'];
$jam2 = $_POST['waktu_akhir'];
$tema_seo = seo_title($_POST['tema']);
mysql_query("UPDATE agenda SET tema = '{$_POST['tema']}',\r\n tema_seo = '{$tema_seo}',\r\n isi_agenda = '{$_POST['isi_agenda']}',\r\n tgl_mulai = '{$mulai}',\r\n tgl_selesai = '{$selesai}',\r\n tempat = '{$_POST['tempat']}', \r\n jam_mulai = '{$jam}', \r\n\t\t\t\t\t\t\t\t jam_akhir = '{$jam2}', \t\t\t\t\t\t\t\t \r\n pengirim = '{$_POST['pengirim']}' \r\n WHERE id_agenda = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
示例5: seo_title
$title = $_POST["title"];
$description = $_POST["description"];
$tags = $_POST["tags"];
//check if form filled in fully
////////////////////////////////
if ($title == "" || $description == "" || $tags == "") {
//error notification
$show_notification = 1;
$message = $config["fill_all_fields"];
//fill all fields
} else {
//Update Database
/////////////////
//get same form as above but process ready for mysql
$title = @mysql_real_escape_string($title);
$title_seo = seo_title($title);
$description = @mysql_real_escape_string($description);
$tags = @mysql_real_escape_string($tags);
$allow_comments = mysql_real_escape_string($_POST["allow_comments"]);
$allow_ratings = mysql_real_escape_string($_POST["allow_ratings"]);
$public_private = mysql_real_escape_string($_POST["public_private"]);
$sql = "UPDATE image_galleries SET\r\n\tgallery_name ='{$title}',\r\n\tgallery_name_seo ='{$title_seo}',\r\n\tgallery_description ='{$description}',\r\n\tpublic_private ='{$public_private}',\r\n\tallow_comments ='{$allow_comments}',\r\n\tallow_ratings ='{$allow_ratings}',\r\n\tgallery_tags ='{$tags}' WHERE\tgallery_id ={$id}";
@mysql_query($sql);
//Update images table also
//////////////////////////
$sql = "UPDATE images SET gallery_name = '{$title}',\r\n\tpublic_private ='{$public_private}',\r\n\tallow_ratings ='{$allow_ratings}',\r\n\tallow_comments ='{$allow_comments}' WHERE gallery_id = {$id}";
@mysql_query($sql);
if (mysql_error()) {
$show_notification = 1;
$message = $config["error_26"];
//error
示例6: twitter_shares
}
$twit = twitter_shares('http://www.popojicms.org');
$sharetw = $twit;
hapus baris ini dan ubah urlnya jika web Anda sudah di hosting ---*/
if ($mode_maintenance == "Y") {
header('location:maintenance');
} else {
if (!isset($_SESSION['submit'])) {
$_SESSION['submit'] = true;
}
$mod = $_GET['mod'];
if (file_exists("po-content/{$folder}/{$mod}.php")) {
if ($website_cache == "Y") {
$cacheuri = $_SERVER['REQUEST_URI'];
$cachename = md5(seo_title($cacheuri));
$cachefile = 'po-cache/' . $cachename . '.tmp';
$cachetime = $website_cache_time * 60;
if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {
include_once $cachefile;
} else {
ob_start();
include_once "po-content/{$folder}/{$mod}.php";
$fp = fopen($cachefile, 'w');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
}
} else {
include_once "po-content/{$folder}/{$mod}.php";
}
示例7: unlink
//hapus foto dari folder
unlink("../../../joimg/produk/{$data['gambar']}");
unlink("../../../joimg/produk/s_{$data['gambar']}");
UploadProduk($nama_file_unik);
mysql_query("UPDATE produk SET judul = '{$_POST['nama_produk']}',\n judul_seo = '{$produk_seo}',\n id_kategori = '{$_POST['id_kategori']}',\n id_sub_kategori = '{$_POST['id_sub_kategori']}',\n bestseller = '{$_POST['bestseller']}',\n new_release = '{$_POST['new_release']}',\n harga = '{$_POST['harga']}',\n\t\t\t\t\t\t\t\t\tdiskon = '{$_POST['diskon']}',\n\t\t\t\t\t\t\t\t\tberat = '{$_POST['berat']}',\n\t\t\t\t\t\t\t\t\tstok = '{$_POST['stok']}',\n deskripsi = '{$isi}',\n tgl_update = now(),\n gambar = '{$nama_file_unik}' \n WHERE id_produk = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
//echo "<script>window.history.go(-2);</script>";
} else {
UploadProduk($nama_file_unik);
mysql_query("UPDATE produk SET judul = '{$_POST['nama_produk']}',\n judul_seo = '{$produk_seo}',\n bestseller = '{$_POST['bestseller']}',\n new_release = '{$_POST['new_release']}',\n id_kategori = '{$_POST['id_kategori']}',\n id_sub_kategori = '{$_POST['id_sub_kategori']}',\n harga = '{$_POST['harga']}',\n\t\t\t\t\t\t\t\t\tdiskon = '{$_POST['diskon']}',\n\t\t\t\t\t\t\t\t\tberat = '{$_POST['berat']}',\n\t\t\t\t\t\t\t\t\tstok = '{$_POST['stok']}',\n deskripsi = '{$isi}',\n tgl_update = now(),\n gambar = '{$nama_file_unik}' \n WHERE id_produk = '{$_POST['id']}'");
echo $sql;
header('location:../../media.php?module=' . $module);
//echo "<script>window.history.go(-2);</script>";
}
}
} elseif ($module == 'produk' and $act == 'hapusCat') {
mysql_query("DELETE FROM kategori_produk WHERE id_kategori='{$_GET['id']}'");
header('location:../../media.php?module=' . $module . '&act=addCat');
} elseif ($module == 'produk' and $act == 'inputCat') {
if (empty($_POST['judul'])) {
echo "<script>window.alert('Nama KATEGORI harus diisi !!');\n window.location=('../../media.php?module=produk&act=addCat')</script>";
} else {
$judul_seo = seo_title(trim($_POST['judul']));
mysql_query("INSERT IGNORE INTO kategori_produk(nama_kategori, kategori_seo, hapus) \n\t\t\t\t\t\t\t\t VALUES('{$_POST['judul']}','{$judul_seo}', 'Ya')");
header('location:../../media.php?module=' . $module . '&act=addCat');
}
} elseif ($module == 'produk' and $act == 'updateCat') {
$judul_seo = seo_title(trim($_POST['judul']));
mysql_query("UPDATE kategori_produk SET nama_kategori = '{$_POST['judul']}',\n\t\t\t\t\t\t\t\t\t\t\tkategori_seo = '{$judul_seo}'\n\t\t\t\t\t\t\t\t\t\t\tWHERE id_kategori ='{$_POST['id']}'");
header('location:../../media.php?module=' . $module . '&act=addCat');
}
示例8: session_start
<?php
session_start();
if (empty($_SESSION['username']) and empty($_SESSION['passuser'])) {
echo "<link href='style.css' rel='stylesheet' type='text/css'>\r\n <center>Untuk mengakses modul, Anda harus login <br>";
echo "<a href=../../index.php><b>LOGIN</b></a></center>";
} else {
include "../../../config/koneksi.php";
include "../../../config/fungsi_seo.php";
$module = $_GET[module];
$act = $_GET[act];
// Hapus Tag
if ($module == 'tag' and $act == 'hapus') {
mysql_query("DELETE FROM tag WHERE id_tag='{$_GET['id']}'");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'tag' and $act == 'input') {
$tag_seo = seo_title($_POST['nama_tag']);
mysql_query("INSERT INTO tag(nama_tag,tag_seo) VALUES('{$_POST['nama_tag']}','{$tag_seo}')");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'tag' and $act == 'update') {
$tag_seo = seo_title($_POST['nama_tag']);
mysql_query("UPDATE tag SET nama_tag = '{$_POST['nama_tag']}', tag_seo='{$tag_seo}' WHERE id_tag = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
示例9: session_start
<?php
session_start();
if (empty($_SESSION['username']) and empty($_SESSION['passuser'])) {
echo "<link href='style.css' rel='stylesheet' type='text/css'>\n <center>Untuk mengakses modul, Anda harus login <br>";
echo "<a href=../../index.php><b>LOGIN</b></a></center>";
} else {
include "../../config/koneksi.php";
include "../../config/fungsi_seo.php";
$module = $_GET['module'];
$act = $_GET['act'];
// Hapus kategori
if ($module == 'kategori' and $act == 'hapus') {
mysql_query("DELETE FROM kategori WHERE id_kategori='{$_GET['id']}'");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'kategori' and $act == 'input') {
$nama_kategori = seo_title($_POST['kd_kategori']);
mysql_query("INSERT INTO kategori(kd_kategori,\n nama_kategori) \n VALUES('{$_POST['kd_kategori']}',\n '{$_POST['nama_kategori']}')");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'kategori' and $act == 'update') {
$nama_kategori = seo_title($_POST['kd_kategori']);
mysql_query("UPDATE kategori SET kd_kategori ='{$_POST['kd_kategori']}', \n nama_kategori='{$_POST['nama_kategori']}'\n WHERE id_kategori = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
示例10: UploadAlbum
} else {
UploadAlbum($nama_file_unik);
mysql_query("INSERT INTO album(jdl_album,\n album_seo,\n gbr_album) \n VALUES('{$_POST['jdl_album']}',\n '{$album_seo}',\n '{$nama_file_unik}')");
header('location:../../media.php?module=' . $module);
}
} else {
mysql_query("INSERT INTO album(jdl_album,\n album_seo) \n VALUES('{$_POST['jdl_album']}',\n '{$album_seo}')");
header('location:../../media.php?module=' . $module);
}
} elseif ($module == 'album' and $act == 'update') {
$lokasi_file = $_FILES['fupload']['tmp_name'];
$nama_file = $_FILES['fupload']['name'];
$tipe_file = $_FILES['fupload']['type'];
$acak = rand(00, 999999);
$nama_file_unik = $acak . $nama_file;
$album_seo = seo_title($_POST['jdl_album']);
// Apabila gambar tidak diganti
if (empty($lokasi_file)) {
mysql_query("UPDATE album SET jdl_album = '{$_POST['jdl_album']}',\n album_seo = '{$album_seo}', \n aktif='{$_POST['aktif']}' \n WHERE id_album = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
} else {
if ($tipe_file != "image/jpeg" and $tipe_file != "image/pjpeg") {
echo "<script>window.alert('Upload Gagal, Pastikan File yang di Upload bertipe *.JPG');\n window.location=('../../media.php?module=album')</script>";
} else {
UploadAlbum($nama_file_unik);
mysql_query("UPDATE album SET jdl_album = '{$_POST['jdl_album']}',\n album_seo = '{$album_seo}',\n gbr_album = '{$nama_file_unik}', \n aktif='{$_POST['aktif']}' \n WHERE id_album = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
}
}
示例11: count
}
$jml = count($tag_seo);
for ($i = 0; $i < $jml; $i++) {
mysql_query("UPDATE tag SET count=count+1 WHERE tag_seo='{$tag_seo[$i]}'");
}
} elseif ($module == 'berita' and $act == 'update') {
$lokasi_file = $_FILES['fupload']['tmp_name'];
$tipe_file = $_FILES['fupload']['type'];
$nama_file = $_FILES['fupload']['name'];
$acak = rand(1, 99);
$nama_file_unik = $acak . $nama_file;
if (!empty($_POST['tag_seo'])) {
$tag_seo = $_POST['tag_seo'];
$tag = implode(',', $tag_seo);
}
$judul_seo = seo_title($_POST['judul']);
// Apabila gambar tidak diganti
if (empty($lokasi_file)) {
mysql_query("UPDATE berita SET judul = '{$_POST['judul']}',\n judul_seo = '{$judul_seo}', \n id_kategori = '{$_POST['kategori']}',\n headline = '{$_POST['headline']}',\n tag = '{$tag}',\n isi_berita = '{$_POST['isi_berita']}' \n WHERE id_berita = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
} else {
if ($tipe_file != "image/jpeg" and $tipe_file != "image/pjpeg") {
echo "<script>window.alert('Upload Gagal, Pastikan File yang di Upload bertipe *.JPG');\n window.location=('../../media.php?module=berita')</script>";
} else {
UploadImage($nama_file_unik);
mysql_query("UPDATE berita SET judul = '{$_POST['judul']}',\n judul_seo = '{$judul_seo}', \n id_kategori = '{$_POST['kategori']}',\n headline = '{$_POST['headline']}',\n tag = '{$tag}',\n isi_berita = '{$_POST['isi_berita']}',\n gambar = '{$nama_file_unik}' \n WHERE id_berita = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
}
}
示例12: session_start
<?php
session_start();
include "../../../josys/koneksi.php";
include "../../../josys/library.php";
include "../../../josys/fungsi_thumb.php";
include "../../../josys/fungsi_seo.php";
$module = $_GET['module'];
$act = $_GET['act'];
$act = $_GET['act'];
if ($module == 'subkategori' and $act == 'del') {
mysql_query("DELETE FROM sub_kategori WHERE id_sub_kategori='{$_GET['id']}'");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'subkategori' and $act == 'input') {
if (empty($_POST['nama'])) {
echo "<script>window.alert('Nama Kategori harus diisi !!');\n window.location=('../../media.php?module=subkategori')</script>";
} else {
$judul_seo = seo_title(trim($_POST['nama']));
mysql_query("INSERT INTO sub_kategori(id_kategori, nama, nama_seo, status) \n\t\t\t\t\t\t\t\t VALUES('{$_POST['id_kategori']}','{$_POST['nama']}','{$judul_seo}','{$_POST['status']}')");
header('location:../../media.php?module=' . $module);
}
} elseif ($module == 'subkategori' and $act == 'update') {
$judul_seo = seo_title(trim($_POST['nama']));
mysql_query("UPDATE sub_kategori SET nama = '{$_POST['nama']}',\n\t\t\t\t\t\t\t\t\t\t\tid_kategori = '{$_POST['id_kategori']}',\n\t\t\t\t\t\t\t\t\t\t\tnama_seo = '{$judul_seo}'\n\t\t\t\t\t\t\t\t\t\t\tWHERE id_sub_kategori ='{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
示例13: seo_title
//get form post (no mysql_real_escapE) so that it can be checked for full completion
$group_name = $_POST["group_name"];
$group_description = $_POST["group_description"];
//check if form filled in fully
////////////////////////////////
if ($group_name == "" || $group_description == "") {
//error notification
$show_notification = 1;
$message = $config["fill_all_fields"];
//fill all fields
} else {
//Update Database
/////////////////
//get same form as above but process ready for mysql
$group_name = @mysql_real_escape_string($group_name);
$group_name_seo = seo_title($group_name);
$group_description = @mysql_real_escape_string($group_description);
$public_private = mysql_real_escape_string($_POST["public_private"]);
$sql = "UPDATE group_profile SET\r\n\tgroup_name ='{$group_name}',\r\n\tgroup_name_seo ='{$group_name_seo}',\r\n\tgroup_description ='{$group_description}',\r\n\tpublic_private ='{$public_private}'\r\n\tWHERE indexer ={$id}";
@mysql_query($sql);
if (mysql_error()) {
$show_notification = 1;
$message = $config["error_26"];
//error
} else {
$show_notification = 1;
$message = $config["error_25"];
//request success
}
}
}
示例14: session_start
<?php
session_start();
if (empty($_SESSION['username']) and empty($_SESSION['passuser'])) {
echo "<link href='style.css' rel='stylesheet' type='text/css'>\n <center>Untuk mengakses modul, Anda harus login <br>";
echo "<a href=../../index.php><b>LOGIN</b></a></center>";
} else {
include "../../config/koneksi.php";
include "../../config/fungsi_seo.php";
$module = $_GET['module'];
$act = $_GET['act'];
// Hapus cabang
if ($module == 'cabang' and $act == 'hapus') {
mysql_query("DELETE FROM cabang WHERE id_cabang='{$_GET['id']}'");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'cabang' and $act == 'input') {
$nama_cabang = seo_title($_POST['kd_cabang']);
mysql_query("INSERT INTO cabang VALUES('NULL',\n '{$_POST['kd_cabang']}',\n '{$_POST['nama_cabang']}',\n '{$_POST['alamat']}',\n '{$_POST['telp']}',\n '{$_POST['pic']}')");
header('location:../../media.php?module=' . $module);
} elseif ($module == 'cabang' and $act == 'update') {
$nama_cabang = seo_title($_POST['kd_cabang']);
mysql_query("UPDATE cabang SET kd_cabang='{$_POST['kd_cabang']}', \n nama_cabang='{$_POST['nama_cabang']}', \n alamat='{$_POST['alamat']}', \n telp='{$_POST['telp']}', \n pic='{$_POST['pic']}'\n WHERE id_cabang = '{$_POST['id']}'");
header('location:../../media.php?module=' . $module);
}
}
示例15: mysql_real_escape_string
$thumb_desc[] = mysql_real_escape_string($_POST['thumb_desc_2']);
$image_tags[] = mysql_real_escape_string($_POST['image_tags_2']);
$image_id[] = mysql_real_escape_string($_POST['img_name_3']);
$thumb_title[] = mysql_real_escape_string($_POST['thumb_title_3']);
$thumb_desc[] = mysql_real_escape_string($_POST['thumb_desc_3']);
$image_tags[] = mysql_real_escape_string($_POST['image_tags_3']);
$new_photo_album = ucwords($new_photo_album);
// enter image into db
for ($x = 0; $x < $img_uploaded; $x++) {
$thumb_title[$x] = ucwords($thumb_title[$x]);
if (is_numeric($thumb_title[$x])) {
$thumb_title[$x] = $lang_edit_me;
}
$thumb_title[$x] = str_replace('/', '-', $thumb_title[$x]);
$thumb_title[$x] = str_replace("'", '', $thumb_title[$x]);
$title_seo[$x] = seo_title($thumb_title[$x]);
$sql = "INSERT INTO images (indexer, image_id, gallery_id, user_id, viewtime, title, title_seo, description, tags, gallery_name, date_recorded, date_uploaded, image_size, allow_comments, allow_embedding, allow_ratings, rating_number_votes, rating_total_points, updated_rating, public_private, approved, number_of_views, featured, promoted, flag_counter)\r\n\t\t\t\tVALUES (NULL, '{$image_id[$x]}', '{$album_id}', '{$user_id}', '0000-00-00 00-00-00', '{$thumb_title[$x]}', '{$title_seo[$x]}', '{$thumb_desc[$x]}', '{$image_tags[$x]}', '{$new_photo_album}', '0000-00-00 00:00:00', NOW(), NULL, '{$allow_comments}', 'yes', '{$allow_ratings}', '0', '0', '0', '{$album_type}', 'yes', '0', 'no', 'no', '0')";
$insert_query = @mysql_query($sql);
// update image gallery enter has images
$sql_2 = "UPDATE image_galleries SET has_images = '1' WHERE gallery_id = {$album_id}";
$query_update = @mysql_query($sql_2);
}
// update album cover image if an image is selected
if ($ablum_cover_img != "") {
$sql = "UPDATE image_galleries SET gallery_picture = '{$ablum_cover_img}' WHERE gallery_id = {$album_id}";
$cover_query = @mysql_query($sql);
if (!$cover_query) {
die($config['error_26']);
@mysql_close();
die;
}