Minggu, 21 Juli 2013

PHP Indonesia - Facebook: [ASK] gtalk untuk yang di pasang di website udah n...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
[ASK] gtalk untuk yang di pasang di website udah n...
Jul 22nd 2013, 04:45, by Anam Kho

Anam Kho 4:45am Jul 22
[ASK] gtalk untuk yang di pasang di website udah ngga disuport lagi kah sama google?

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: Hai Master PHP, saya newbie. Mohon pencerahan jik...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Hai Master PHP, saya newbie. Mohon pencerahan jik...
Jul 22nd 2013, 03:54, by Ugie Juni Lestari

Ugie Juni Lestari 3:54am Jul 22
Hai Master PHP, saya newbie. Mohon pencerahan

jika saya membuat table, yg terdiri dari bbrp field yg mengambil data dr sql & sebagiannya lg saya isi textfield kosong untuk diisi.
methodnya ttp post atau get?
saya pakai post di method form-nya, update data berhasil, tp d sql isinya 0.

Cahya Dsn 3:55am Jul 22
no script hoax ^_^V

Rifky Aditia 3:56am Jul 22
kalo langsung kedatabase pake post mba. emang updatenya gimana ?

Ugie Juni Lestari 3:57am Jul 22
$tb=$_POST['txttb'];
$bb=$_POST['txtbb'];
$nilai_un=$_POST['txtnilai_un'];
$status='Lengkap';

$id=$_GET['id'];
$sql="update tbl_pendaftar set tinggi_badan='$tb',berat_badan='$bb',nilai_un='$nilai_un', status='$status' where no_pendaftar='$id'";
$query=mysql_query($sql);
if(mysql_affected_rows()==1)

Ganda Gamaliel Soritua Sinaga 4:00am Jul 22
mau pke post... mau pke get... podo wae...
slama diform tdk ada inputan karakter yg byk (mis:berita), tdk ada pengiriman file (upload file), bs pke get...

Cahya Dsn 4:00am Jul 22
coba sebelum "$query=mysql_query($sql);" kasih "print_r($sql);die();" .. jalankan formnya, masukkan data, submit.. nah nanti keluar query-nya.. copas ke phpmyadmin, jalankan bisa update gak?

Rifky Aditia 4:01am Jul 22
cba updatenya di echo "" ; atau print_r ('');

Ugie Juni Lestari 4:05am Jul 22
stlah di submit :
update tbl_pendaftar set tinggi_badan='',berat_badan='',nilai_un='', status='Lengkap' where no_pendaftar='13PM10001'

Ugie Juni Lestari 4:06am Jul 22
itu artinya, $tb, $bb & $nilai_un tidak terbaca ya?

Ganda Gamaliel Soritua Sinaga 4:08am Jul 22
pinter..... mmg $tb,$bb tidak terbaca
klo ane pke ilmu nujum(ramal) sptnya ente pke method GET di formnya...
atau nama komponen2 diformnya tdk sama dgn yg ente paggil di php, ingat mesti casesensitif...

Rifky Aditia 4:09am Jul 22
sependapat sama mas ganda form actionnya gimana ?

Ugie Juni Lestari 4:10am Jul 22
form method="post"

Rifky Aditia 4:10am Jul 22
action ?

Ganda Gamaliel Soritua Sinaga 4:10am Jul 22
name?

Ugie Juni Lestari 4:11am Jul 22
action="updaterekappendaftar.php?id=<?php echo $no_pendaftar;?>"

Ganda Gamaliel Soritua Sinaga 4:13am Jul 22
coba cek name='txttb' di form (input/select,dll) ada gak? huruf2nya sdh benar gak?

Rifky Aditia 4:14am Jul 22
coba actionnya ganti ?id=$_GET['id'];

Ugie Juni Lestari 4:14am Jul 22
persis sama

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: #tips website Salah satu teknik mempercepat websi...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
#tips website Salah satu teknik mempercepat websi...
Jul 22nd 2013, 03:21, by Erwin Sholeh Siregar

Erwin Sholeh Siregar 3:21am Jul 22
#tips website

Salah satu teknik mempercepat website adalah dengan menggunakan cache browser. Di mana browser hanya disuruh 1 kali mereload file static dan menyimpannya di browser, ini bisa berupa gambar, css, atau js. Teknik ini menggunakan batas waktu, misal 2 hari, 1 bulan atau 1 tahun. Selama css tidak berganti (nama file css) dan batas waktu belum habis, maka browser akan menggunakan chace, tidak mereload kembali, sehingga internet seperti serasa di localhost.

Ini salah satu caranya, tambahkan kode berikut di file .htaccess :

<filesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Thu, 15 Apr 2014 20:00:00 GMT"
</filesMatch>

Pastikan web server Anda mendukung header expires. Kalau tidak akan muncul pesan error : Internal Server Error....

Suko Tyas Pernanda 3:37am Jul 22
berarti ini rutin di update manual tanggal expirednya ya?

Erwin Sholeh Siregar 3:40am Jul 22
iya gan, kalau file static jarang diganti. set saja misalnya 6 bulan ke depan atau 1 tahun ke depan :). Semua tergantung kebutuhan kita gan.

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: [Ask] Bagaimana sih cara mendapatkan link url yg s...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
[Ask] Bagaimana sih cara mendapatkan link url yg s...
Jul 22nd 2013, 03:24, by Panji Eko Yuniarso

Panji Eko Yuniarso 3:24am Jul 22
[Ask]
Bagaimana sih cara mendapatkan link url yg sedang aktif ?
contoh : localhost/myweb/home.php/act=update&kode=11
kalau menggunakan fungsi $_SERVER['PHP_SELF'] link yg di ambil cuma
localhost/myweb/home.php

bisa gak, kalao link yg di ambil itu semuanya
localhost/myweb/home.php/act=update&kode=11
kalau bisa, fungsi apa yg digunakan untuk mengambil aurlnya

Anton Wahyu Pramono 3:26am Jul 22
coba di print_r($_SERVER);

Panji Eko Yuniarso 3:32am Jul 22
gak bisa

Cahya Dsn 3:33am Jul 22
$_SERVER['REQUEST_URI'] dapetnya apa?

Ricky Orlando Napitupulu 3:35am Jul 22
cari how to get current url

Panji Eko Yuniarso 3:45am Jul 22
Cahya Dsn : makasih gan, itu yg ane maksud

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: Selamat siang, terimakasih untuk Admin yang mengij...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Selamat siang, terimakasih untuk Admin yang mengij...
Jul 22nd 2013, 03:44, by Ugie Juni Lestari

Ugie Juni Lestari 3:44am Jul 22
Selamat siang, terimakasih untuk Admin yang mengijinkan saya bergabung di group ini. Salam kenal untuk semuanya... :D

Johan Surya 3:48am Jul 22
admin disini emang baik2..aku baru gabung ud brhasil nanya byk hal

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: #tips-php Untuk menghindari eksekusi langsung fil...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
#tips-php Untuk menghindari eksekusi langsung fil...
Jul 22nd 2013, 03:41, by Erwin Sholeh Siregar

Erwin Sholeh Siregar 3:41am Jul 22
#tips-php

Untuk menghindari eksekusi langsung file php, maka kita dapat menggunakan kata define('INCLUDE_CHECK',true);. Misalnya kita tidak ingin orang mengeksekusi file koneksi.php secara langsung, misal url : http://websiteku.com/koneksi.php. File ini mau dilindungi, file ini harus dieksekusi dari file index.php

Caranya seperti berikut :
pada file koneksi.php, tambahkan kode berikut :
if(!defined('INCLUDE_CHECK')) die('Anda tidak berhak mengeksekusi file ini secara langsung');

Kemudian pada index.php, tambahkan kode berikut :
define('INCLUDE_CHECK',true);

Sekarang file koneksi.php aman dari serangan orang iseng.

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

PHP Indonesia - Facebook: Ada yang bisa kasih info cara2 " dlm ' maupun ' dl...

PHP Indonesia - Facebook
PHP Indonesia is a community for everyone that loves PHP. Our focus is in the PHP world but our topics encompass the entire LAMP stack. Topics include PHP coding, to memcached handling, db optimizations, server stack, web server tuning, code deploying, hosting options and much much more. NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Ada yang bisa kasih info cara2 " dlm ' maupun ' dl...
Jul 22nd 2013, 03:47, by Johan Surya

Johan Surya 3:47am Jul 22
Ada yang bisa kasih info cara2 " dlm ' maupun ' dlm " sampe n level...baik javascript maupun echo??

Yongki Agustinus 3:48am Jul 22
" dalam ' atau ' dalam " kan tinggal masukin aja gan

Yongki Agustinus 3:49am Jul 22
kecuali masukin " dalam "
di kasi backslash aja \"

Johan Surya 3:49am Jul 22
sampe n level gan..ntar ada kek \" \" trus dlmny lg ud enta gimana

Johan Surya 3:50am Jul 22
dlmnya \" \" ini apalg?

Yongki Agustinus 3:52am Jul 22
didalamnya itu ya sama aja,
kalo udah didalam echo / variable define itu kan \" udah kebaca sebagai karakter

Rahman Nur Hadi 3:53am Jul 22
.
1. "
2. \"
3. \\\"
4. \\\\\\\"

kalo kayak gitu bisa ndak? (agak ngaco dikit)

Yongki Agustinus 3:54am Jul 22
di coba aja gan, hahaha
echo"\\\\\\\\\\\\\""; keluarnya apa

Rahman Nur Hadi 3:54am Jul 22
soalnya kan \\ -> \ dan \" -> "
:3

gak bisa ya?

Johan Surya 3:56am Jul 22
g ngrti knapa bs 3 \ tapi work gan (y)

Rahman Nur Hadi 4:01am Jul 22
sebelumnya kan udah dijelasin kalo " -> \"
nah \ itu sendiri kalo mau ditampilin, ditulis \\
dst.

Fadel Nuariko 4:01am Jul 22
&quot; ???

You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions