Selasa, 23 Juli 2013

PHP Indonesia - Facebook: Pengen Kolom Comment kayak begini gimana ya ?

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/ 
Pengen Kolom Comment kayak begini gimana ya ?
Jul 24th 2013, 03:57, by Muzakki Ahmad

Muzakki Ahmad 3:57am Jul 24
Pengen Kolom Comment kayak begini
gimana ya ?

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] cara facebook langsung nampilin komentar or...

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] cara facebook langsung nampilin komentar or...
Jul 24th 2013, 04:17, by Sonia G. Caechialium

Sonia G. Caechialium 4:17am Jul 24
[ask]
cara facebook langsung nampilin komentar orang tu gimana?
ajax tiap sekian detik, ato ada teknik php/js yang bikin bisa broadcast begitu ada yang baru?

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: Bagi siapa saja yang ingin alamat webnya di lampir...

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/ 
Bagi siapa saja yang ingin alamat webnya di lampir...
Jul 24th 2013, 04:37, by A'noe Van Maximuz

A'noe Van Maximuz 4:37am Jul 24
Bagi siapa saja yang ingin alamat webnya di lampirkan di pasarkode bisa masuk ke link ini http://www.pasarkode.com/tukar-link.html

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: Numpang Nanya Gan.. ada yang punya tutor untuk daf...

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/ 
Numpang Nanya Gan.. ada yang punya tutor untuk daf...
Jul 24th 2013, 04:31, by Arul Tenacious

Arul Tenacious 4:31am Jul 24
Numpang Nanya Gan..
ada yang punya tutor untuk daftar isi article website gak..
Kira2 seperti inilah modelnya...

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: assalamualaikum...saya mau tanya..saya lagi blajar...

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/ 
assalamualaikum...saya mau tanya..saya lagi blajar...
Jul 24th 2013, 03:38, by Okki Setyawan

Okki Setyawan 3:38am Jul 24
assalamualaikum...saya mau tanya..saya lagi blajar bikin paging pake php...cuma ini selalu muncul.
Undefined index....bla bla bla..
mungkin ada yang tau salah nya dimana...

Okki Setyawan 3:39am Jul 24
ini script nya :
<?php

function buat_paging($curPage,$totalRec,$maxRec){
$totalPage;
$totalPage=ceil($totalRec/$maxRec);
$str="";

/*--------------------------Tombol Prev-----------------------*/

if($curPage>1){
$prevPage = $curPage-1;
$str.=" ".makeLink("prev","?p=".$prevPage)." ";
}

/*-------------------------Untuk Page Number----------------*/

for($i=1;$i<=$totalPage;$i++){
if($i==$curPage){
$bold=true;
}else{
$bold=false;
}
$str.=" ".makeLink($i,"?p=".$i,$bold)." ";
}

/*--------------------------Tombol Next-----------------------*/

if($curPage<$totalPage){
$nextPage=$curPage+1;
$str.=" ".makeLink("next","?p=".$nextPage)." ";
}

return $str;

}
function makeLink($str,$url,$bold="false"){
if($bold){
$str="<b>".$str."</b>";
}
return '<a href="'.$url.'">'.$str.'</a>';
}

//connection
$con = mysql_connect("localhost","root","");
mysql_select_db("paging",$con);
$total=mysql_query("select * from berita",$con);
$total=mysql_num_rows($total);
$total=ceil($total/4);
$curPage=abs((int)$_GET['p']);
if ($curPage==null){$curPage=1;}
elseif($curPage>$total){$curPage=$total;}
$maxRec=4;

$startRec = ($curPage-1)*$maxRec;
$sql = "select * from berita limit ".$startRec.",".$maxRec;
$rs=mysql_query($sql,$con);
while ($row = mysql_fetch_array($rs)) {
echo "Ini adalah : ".$row['artikel']."<br />";
}
$total_record=mysql_query("select * from berita",$con);
$total_record=mysql_num_rows($total_record);

echo "<br>";

echo buat_paging($curPage,$total_record,$maxRec);

?>

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: Mencoba php 5.5.0 menggunakan xampp 1.8.3 windows ...

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/ 
Mencoba php 5.5.0 menggunakan xampp 1.8.3 windows ...
Jul 24th 2013, 02:55, by Ahmad Ibrahim

Ahmad Ibrahim 2:55am Jul 24
Mencoba php 5.5.0 menggunakan xampp 1.8.3 windows 8 32bit terasa jauh lebih cepat dari php versi sebelumnya, untungnya pake framework yii jadi semuanya lancar. Untuk aplikasi demo yang masih menggunakan mysql_connect dan mysql_pconnect ada warning. beberapa demo yang menggunakannya untuk output json seperti demo jquery datatables tidak bisa digunakan, tapi hanya diakali dengan ob_start() dan ob_end_clean()

Fikri Handa Herriansyah 2:57am Jul 24
cara migrasi ke 5.5 gmn ya ?

Vinsensius Angelo 2:58am Jul 24
apakah mungkin terkait mysqli() ??

Ahmad Ibrahim 3:02am Jul 24
kalau pakai framework yii mestinya gak perlu migrasi, soalnya databasenya pakai PDO, untuk yang nativ hanya "ngakali" supaya warning tidak tampil

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: Misalnya saya punya 2 buah field utk tanggal. Fiel...

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/ 
Misalnya saya punya 2 buah field utk tanggal. Fiel...
Jul 24th 2013, 03:39, by Dropb Nrro

Dropb Nrro 3:39am Jul 24
Misalnya saya punya 2 buah field utk tanggal.
Field pertama untuk tanggal masuk.
Field kedua untuk tanggal keluar.

Misalnya pada field pertama saya masukkan tanggal 24 Juli 2013, maka pada field keluar saya tidak boleh memasukkan tanggal 24 Juli 2013 ke bawah

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: brainstroming yuk. ada yang pernah buat aplikasi 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/ 
brainstroming yuk. ada yang pernah buat aplikasi s...
Jul 24th 2013, 03:04, by Chandra Sutrisno Tjhong

Chandra Sutrisno Tjhong 3:04am Jul 24
brainstroming yuk. ada yang pernah buat aplikasi silsilah ?

kasusnya :

seorang suami bisa punya istri lebih dari satu (legal atau tidak legal) dan dari masing-masing istri, masing-masing anak di-record juga (namanya juga silsilah). selama ini saya kalo buat aplikasi tree cuma pake satu table. berhubung di silsilah bisa lebih dari satu istri, kira-kira para master akan gunakan satu table atau lebih dari satu table ? mohon penjelasannya.

Gunawan Mujur Wibisono 3:06am Jul 24
pake satu..

Chandra Sutrisno Tjhong 3:08am Jul 24
lagi mikir kalo ternyata si istri poliandri. makin ribet ya

Gunawan Mujur Wibisono 3:10am Jul 24
enggak.. yg ribet itu kl ada paman nikah ama ponakan

Novarli Siradjuddin 3:10am Jul 24
Model child-parent.

Cahya Dsn 3:15am Jul 24
paling ribet kalo jomblo gak dapet2 pacar... wah isinya galau mulu #eh

.. pake satu aja deh

Abi Dehya Al-Qolbi 3:15am Jul 24
harusnya pemisah logika nya di religion, jika poliandri, kaga mungkin dia itu muslim.. :) #sayahanyapemerhatipoligami ^_^

Raden Johannes Heryo Priambodo 3:18am Jul 24
satu bisa kk . asal bisa optimal aja data base . intinya tiap individu punya id masing2 , siapa aja pasangannya asal yang di record id aja. begitu juga anak

Budi Prastyo 3:19am Jul 24
ini logikanya kayak bikin category yang punya child category tanpa batas ya..

Chandra Sutrisno Tjhong 3:22am Jul 24
kan di sini ada istri yg posisinya sejajar dan anak dari masing2 istri (kalo poligami). satu memang rasanya cukup. lagi mikir keras. maaf newbie.

Gifttra Pratama 3:26am Jul 24
Kalo d Sql apa th primary key n foreign key? ga mungkin suami primary key.

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

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
Jul 24th 2013, 03:35, by Ĉhoirul IyunkDhua-satu

Ĉhoirul IyunkDhua-satu 3:35am Jul 24
Ask

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: coba gan di cek. Ini website militer tapi akunnya ...

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/ 
coba gan di cek. Ini website militer tapi akunnya ...
Jul 24th 2013, 01:43, by Ipin Caem

Ipin Caem 1:43am Jul 24
coba gan di cek.
Ini website militer tapi akunnya kok seperti ini ya?

http://rekrutmen-tni.ilmci.com

Heru Purwito 1:49am Jul 24
hati² penipuan gan.. :D
TNI seharusnya pake domain mil.id

Ipin Caem 1:51am Jul 24
tapi ini resmi gan. Tmen ane dftar jg d web ini.

Ruli Armando 1:53am Jul 24
mungkin buat pendaftaran aja, dialihkan kesitu

Ipin Caem 1:55am Jul 24
mungkin jga gtu gan.

Tj Syufii 1:55am Jul 24
kalo dari website resminya di tni.mil.id memang diarahkan kesitu..
tapi alasannya apa belum jelas..
kenapa gk pake domain asal aja ya biar lebih terpercaya..

Freddy Wicaksono 1:57am Jul 24
hati2 aja mas ....

Hari Aspriyono 1:57am Jul 24
ya mungkin pemegang akun domain asal berbeda sama penerimaan ini om... bisa jadi proyeknya beda dan ada .... gitu..

Lungit Baratha 1:57am Jul 24
Setauku itu buat pendaftaran online aja. Dan pihak militer (adminnya website militer) tau soal itu. Malah kalo ada pertanyaan soal pendaftaran selalu diarahin kesitu.

Eko Prasetyo 2:03am Jul 24
EUGH, ilmci.com itu situs apa sih? gak ada halaman aboutnya.
Trus banyak layanan2 gitu disana seperti email disana.

Hipotesis: perusahaan IT (entah private atau BUMN, saya lebih condong private) yang dimiliki oleh anggota TNI (ILMCI <- I Love My Country Indonesia :v )
Jadinya proyek2 macam pendaftaran online gitu di alihkan ke sana.

Verri Andriawan 2:04am Jul 24
mungkin buru2 appnya.. biasanya pengen simple.. sehari jadi.. ya jadinya saadanya.. #govermentStyle

Anggoro Triono 2:08am Jul 24
kx kgak tni.mil.id or apa ke gtu :D

Lungit Baratha 2:11am Jul 24
Mungkin proyekan gan. Jadi ngga pake situs resmi. Mungkin loh mungkiiin. Atau mungkin tanya langsung ke admin tni nya aja gan biar lega.

Eko Prasetyo 2:12am Jul 24
Oh dear god, they need new better web designer :v

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: Hallo para master.. ada website yang kalo saya sea...

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/ 
Hallo para master.. ada website yang kalo saya sea...
Jul 24th 2013, 01:59, by Firman Firdaus

Firman Firdaus 1:59am Jul 24
Hallo para master.. ada website yang kalo saya search di google website itu terindex di halaman google padahal website itu tidak mempunyai konten dari pencariannya. seakan2 web itu bisa membaca hasil pencarian dari google. Biasanya hasil pencarian kita hanya jadi judul dari website tersebut tanpa ada isinya. mungkin para master juga pernah menemukan web2 seperti itu. Nah itu gimana sih cara bikinnya?

Ipin Caem 2:01am Jul 24
ada bnyak kmungkinan. Mngkin krna web itu udah d hpus, tp di db.x google msih trindex. Mngkin jga krna pkai teknik seo blackhat

Firman Firdaus 2:04am Jul 24
seo blackhat ? saya baru denger?

Ipin Caem 2:07am Jul 24
hehehe, tp jngan d tiru gan. Haram

Firman Firdaus 2:07am Jul 24
owhh haram... hahaha

Awal Sams U 2:10am Jul 24
Itu menyebalkan, pas di kira artikel yang beneran di cara tapi setelah di buka = nuLL

Firman Firdaus 2:18am Jul 24
Pertimbangannya sih saya ingin tau itu. karena orang IT mesti tau hal sperti itu. Jangan kan hal kaya gitu.. orang2 awam mengira orang IT juga bisa perbaiki Play station yang rusak elektroniknya .. :D

Ipin Caem 2:28am Jul 24
orang IT emang serba bisa yach...??

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