Kamis, 31 Oktober 2013

PHP Indonesia - Facebook: [INFO] Lagi" modus penipuan dar telkomsel nya moh...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Marketing Mobile Apps

This online course focuses on marketing efforts that will increase your app's exposure and establish a mobile app marketing plan. Enroll today for $99.
From our sponsors
[INFO] Lagi" modus penipuan dar telkomsel nya moh...
Nov 1st 2013, 05:53, by Kuere Angel

Kuere Angel 5:53am Nov 1
[INFO]

Lagi" modus penipuan dar telkomsel nya mohon dr teman" semua tolong d share supaya tidak tertipu alamat website nya adalah
http://www.surprise-telkomselpoin2013.com/
dengan nama contact

Registrant Contact Details:
N/A
Muhammad Rahmat (email@gmail.com)
jln batu nempo no 234
Batam
Riau,29432
ID
Tel. +62.85201777747

Whois Server: whois.hostingservicesinc.net
Referral URL: http://www.resell.biz/
Name Server: POJOKHOST.EARTH.ORDERBOX-DNS.COM
Name Server: POJOKHOST.MARS.ORDERBOX-DNS.COM
Name Server: POJOKHOST.MERCURY.ORDERBOX-DNS.COM
Name Server: POJOKHOST.VENUS.ORDERBOX-DNS.COM
Status: clientTransferProhibited
Updated Date: 29-may-2013
Creation Date: 28-may-2013
Expiration Date: 28-may-2014

mohon di share ya k teman" yang lainnya biar tidak terkena penipuan WASPADALAH!!!!

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: [Tanya | JavaScript] Menurut beberapa sumber yang...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Mobile Game Development Course

Learn how to create awesome HTML5 games that run on iPhone, iPad, Android and Desktop! Sign up today for this $99 online course.
From our sponsors
[Tanya | JavaScript] Menurut beberapa sumber yang...
Nov 1st 2013, 05:50, by Idle Track

Idle Track 5:50am Nov 1
[Tanya | JavaScript]

Menurut beberapa sumber yang saya baca bahwa PHP adalah server side dan JavaScript adalah Client Side, berarti kalau PHP tidak bisa komunikasi dengan PC Client sedangkan JS berarti sangat bisa.

Pertanyaan :
--> Bagaimanakah cara menuliskan file text ke Komputer Client baik itu pada drive C ataupun pada drive yang lainnya.

Gembel Berkelas 6:04am Nov 1
loh ???

Idle Track 6:05am Nov 1
Gembel Berkelas : bagaimana mas ? apa ada yang salah dalam pertanyaan saya, kalau salah mohon dikoreksi aja mas,

Fajar Khairil Amin 6:06am Nov 1
karena alasan security tidak bisa

Idle Track 6:07am Nov 1
Fajar Khairil Amin : Jadi tidak bisa yah mas ???

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: mau tanya kalau buat looping sql yang kita tentuin...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Join Delanceyplace

Sign up to receive a free quote from a non fiction book every weekday.
From our sponsors
mau tanya kalau buat looping sql yang kita tentuin...
Oct 31st 2013, 14:56, by Eko Agustiawan

Eko Agustiawan 2:56pm Oct 31
mau tanya kalau buat looping sql yang kita tentuin gimana ya, misalnya cuman mau nampilin 10 pesan / looping.
contoh script :
--------------------
while($data = mysql_fetch_array($result))
{
echo "<b>".$data['nama']."</b> : ".$data['pesan']."</td><br>";
}
}

-------------------
baru belajar sql , biasanya pake db flat.

makasih sebelumnya

Ardha Herdianto 3:00pm Oct 31
#nyimak

Biasanya ane kalo nampilin beberapa main di sql query nya, pake LIMIT

Happy Coding 3:06pm Oct 31
pakek limit sja mas Eko Agustiawan

Anton Wahyu Pramono 3:07pm Oct 31
if ($i==10) break;

Kholid Aljohani 3:08pm Oct 31
$query = "SELECT* FROM buku_tamu WHERE kode_page = $kode_page ORDER BY id LIMIT $offset, $dataPerPage"; $result = mysql_query($query) or die('Error');

Asep Aziz 3:15pm Oct 31
diujung query'nya ditambahin LIMIT x,y
dimana x adalah nomor record pertama yg akan ditampilkan, dan y adalah jumlah record yg akan ditampilkan.
ex: limit 0,10 => record yg akan ditampilkan sebanyak 10 record, dimulai dari record ke-0

Ferdi Ferdian 4:31pm Oct 31
bisa pake limit atau breaks setelah 10 kali looping tapi disaranin pake limit

Izey Linuxer 4:32pm Oct 31
limit 10

Rudye 4:44pm Oct 31
limit ohm

Zakky 4:51pm Oct 31
$i = 0;
while($data = mysql_fetch_array($result))
{
echo "<b>".$data['nama']."</b> : ".$data['pesan']."</td><br>";
if($i == 10) {
break;
}
$i++;
}

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 malam, ada sedikit masalah ni bos... ane k...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Join Delanceyplace

Sign up to receive a free quote from a non fiction book every weekday.
From our sponsors
selamat malam, ada sedikit masalah ni bos... ane k...
Oct 31st 2013, 14:45, by Armen Al Habsyi

Armen Al Habsyi 2:45pm Oct 31
selamat malam, ada sedikit masalah ni bos...
ane kan buat validasi form dengan cara yang masih konvensional: contoh script nya:
if ($username==""){
echo ("<script>alert('Username Anda Masih Kosong!')</script>");
exit();
}

dan ini berjalan dengan baik, tatapi ketika pesan error keluar karena ada field yang masih kosong, maka field yang sudah diisi dengan benar sebelumnya juga ikut terhapus. jadi dengan terpaksa ngisi lagi dari awal, ada solusi gak guys?

Armen Al Habsyi 2:46pm Oct 31
ada solusi gak, agar yang sudah terisi tidak terhapus

Ardha Herdianto 2:48pm Oct 31
Mungkin bisa pakek window.history.back() , kalo ndak salah itu ndak ke apus

Armen Al Habsyi 2:50pm Oct 31
ok saye coba bos

Gandara Fajar Umbara 2:52pm Oct 31
pake javascript lebih ringN

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: Makasih udah diijinin gabung... Salam kenal aja un...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
LSAT prep from HLS-educated instructors

LSATMax includes video lessons, unlimited personal attention & support, and over 6,000 real questions from previous LSAT's. Enroll for just $299.
From our sponsors
Makasih udah diijinin gabung... Salam kenal aja un...
Oct 31st 2013, 15:43, by Bambang Untara

Bambang Untara 3:43pm Oct 31
Makasih udah diijinin gabung...
Salam kenal aja untuk semuanya...

Pika Chaw 5:21pm Oct 31
Bambang Untara <-- nama asli, om?
kl "untara" mah kayanya orang sunda yah? udah nikah ya, om?

salam kenal jg deh...

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: maap kl dianggap OOT dan masuk kategori jaringan. ...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Join Delanceyplace

Sign up to receive a free quote from a non fiction book every weekday.
From our sponsors
maap kl dianggap OOT dan masuk kategori jaringan. ...
Oct 31st 2013, 17:07, by Pika Chaw

Pika Chaw 5:07pm Oct 31
maap kl dianggap OOT dan masuk kategori jaringan. tp karena masih ada hubungan dg web, saya pengen nanya...masuk akal gak kl misal saya pengen web saya gak bisa dimirror termasuk pake wget yg diakalin user agentnya? colek om2 yg sering maen2 server.

bukan apa2, jaman sekarang (dari dulu deng), mirroring tool tu selalu nyediain fasilitas ngeganti user agent buat ngakalin server.

Dwight Alvin Giovanno Setyawardhana 6:54pm Oct 31
ada contohnya mas? saya main server juga tapi kurang paham sama maksud mas pika chaw.

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: Malam Gan.... Ada yang punya script buat munculin ...

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. Youtube Channel : http://www.youtube.com/user/OurPHPIndonesia Twitter : @php_indonesia NOTE: Rules for Wall posting: https://www.facebook.com/groups/35688476100/doc/10151597056316101/ Daftar Keanggotaan : http://www.facebook.com/groups/35688476100/doc/10150671770741101/ 
Join Delanceyplace

Sign up to receive a free quote from a non fiction book every weekday.
From our sponsors
Malam Gan.... Ada yang punya script buat munculin ...
Oct 31st 2013, 15:39, by Cak Khoiron

Cak Khoiron 3:39pm Oct 31
Malam Gan....
Ada yang punya script buat munculin dropdown dari sebuah tabel kayak screen di bawah ini kah????
Terima Kasih banyak

Made RaUciha 3:48pm Oct 31
kata kuncinya : jquery accordion

R Indra Adji Nasution 3:58pm Oct 31
jquery, liat aja dr klik kanan view source :P

Pika Chaw 5:19pm Oct 31
kq pake plugin? bukannya cm $('targetnya').show('fast');

ato di css nya pakein animate. ntar diatur animasinya apaan, delaynya berapa ms.

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