Kamis, 05 September 2013

PHP Indonesia - Facebook: ASK gan baru belajar autosugest ni kira-kira ini ...

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/ 
Creating iOS Games: Beginner Course

Marin Todorov teaches you how to create an iPhone game easily and simply using Cocos2d in this $99 online course.
From our sponsors
ASK gan baru belajar autosugest ni kira-kira ini ...
Sep 6th 2013, 02:44, by Gunawan Frincencius

Gunawan Frincencius 2:44am Sep 6
ASK

gan baru belajar autosugest ni kira-kira ini salah di mana ya, tidak mau tampil soalnya

<?php
$db = new mysqli('localhost', 'root' ,'', 'dbskripsi');

if(!$db) {
echo 'Could not connect to the database.';
} else {

if(isset($_POST['queryString'])) {
$queryString = $db->real_escape_string($_POST['queryString']);

if(strlen($queryString) >0) {

$query = $db->query("SELECT tsiswa.nama_lengkap, tkelas.namakelas, tkelas.idkelas, ttapel.semester, ttapel.tahunajaran
FROM tsiswa, tkelas, ttapel
WHERE tsiswa.NIS=tkelas.NIS
AND ttapel.idtapel=tkelas.idtapel
ANF tkelas.aktif='Y'
AND tsiswa.nama_lengkap LIKE '$queryString%'");

if($query) {
echo '<ul>';
while ($result = $query ->fetch_object()) {
echo '<li onClick="fill5(\''.addslashes($result->['tahunajaran']).'\');"fill4(\''.addslashes($result->['semester]').'\');"fill3(\''.addslashes($result->['namakelas']).'\');"fill2(\''.addslashes($result->['nama_lengkap']).'\');fill(\''.addslashes($result->['idkelas']).'\');">'.$result->idkelas.'&nbsp;&nbsp;'.$result->nama_lengkap.'&nbsp;&nbsp;'.$result->namakelas.'&nbsp;&nbsp;'.$result->semester.'&nbsp;&nbsp;'.$result->tahunajaran.'</li>';
}
echo '</ul>';

} else {
echo 'OOPS we had a problem :(';
}
} else {
// do nothing
}
} else {
echo 'There should be no direct access to this script!';
}
}
?>

Gunawan Frincencius 2:46am Sep 6
UP

Abu Unaisah Setianto 2:53am Sep 6
error-nya apa om?

Gunawan Frincencius 2:54am Sep 6
Abu Unaisah Setianto ga tampil gan saat diketik muncul 'oops we had a problem

Gunawan Frincencius 2:56am Sep 6
sepertinya kesalahannya ada di sini

while ($result = $query ->fetch_object()) {
echo '<li onClick="fill5(\''.addslashes($result->['tahunajaran']).'\');"fill4(\''.addslashes($result->['semester]').'\');"fill3(\''.addslashes($result->['namakelas']).'\');"fill2(\''.addslashes($result->['nama_lengkap']).'\');fill(\''.addslashes($result->['idkelas']).'\');">'.$result->idkelas.'&nbsp;&nbsp;'.$result->nama_lengkap.'&nbsp;&nbsp;'.$result->namakelas.'&nbsp;&nbsp;'.$result->semester.'&nbsp;&nbsp;'.$result->tahunajaran.'</li>'

saya belum tahu caru penulisan untuk yang dari beberapa tabel

Abu Unaisah Setianto 2:57am Sep 6
ANF tkelas.aktif='Y' ??

Gunawan Frincencius 2:59am Sep 6
Iya maksudnya untuk yang siswa statusnya aktif

Abu Unaisah Setianto 3:03am Sep 6
seharusnya AND atau ANF?

Gunawan Frincencius 3:10am Sep 6
AND gan thanks koreksinya, da muncul nilai auto suggestnya cuma muncul permasalahn baru saat dipilih tidak terisi ke text field tahun pelajaran saja yan terisi

Gunawan Frincencius 3:22am Sep 6
javascrtpnya seperti ini

//auto suggest
function suggest(inputString){
if(inputString.length == 0) {
$('#suggestions').fadeOut();
} else {
$('#country').addClass('load');
$.post("modul/modul_guru/mod_nilai/autosuggest.php", {queryString: ""+inputString+""}, function(data){
if(data.length >0) {
$('#suggestions').fadeIn();
$('#suggestionsList').html(data);
$('#country').removeClass('load');
}
});
}
}

function fill(thisValue) {
$('#idk').val(thisValue);
setTimeout("$('#suggestions').fadeOut();", 10);
}

function fill2(thisValue) {
$('#nama').val(thisValue);
setTimeout("$('#suggestions').fadeOut();", 10);
}
function fill3(thisValue) {
$('#nk').val(thisValue);
setTimeout("$('#suggestions').fadeOut();", 10);
}

function fill4(thisValue) {
$('#s').val(thisValue);
setTimeout("$('#suggestions').fadeOut();", 10);
}
function fill5(thisValue) {
$('#t').val(thisValue);
setTimeout("$('#suggestions').fadeOut();", 10);
}

Gunawan Frincencius 3:23am Sep 6
text fieldnya seperti ini

<div id="suggest">
Id Kelas:<br>
<input type="text" onKeyUp="suggest(this.value);" name="idkelas" onBlur="fill();" id="idk" size="3"/>
*Ketik Nama Siswa
<div class="suggestionsBox" id="suggestions" style="display: none;">
<img src="images/arrow.png" style="position: relative; top: -12px; left: 30px;" alt="upArrow" />
<div class="suggestionList" id="suggestionsList"> &nbsp; </div></div>

<br> Nama Siswa:<br>
<input type="text" disabled="disabled" name="nama_lengkap" onBlur="fill2();" id="nama" size="10"/>
<br>Kelas:<br>
<input type="text" disabled="disabled" name="namakelas" onBlur="fill3();" id="nk" size="10"/>
<br>Semester:<br>
<input type="text" disabled="disabled" name="semester" onBlur="fill4();" id="s" size="10"/>
<br>Tahun Ajaran:<br>
<input type="text" disabled="disabled" name="tahunajaran" onBlur="fill5();" id="t" size="10"/>
<div>

Abu Unaisah Setianto 3:28am Sep 6
udah cek di error console?
ane juga ikut bingung :D

Gunawan Frincencius 3:29am Sep 6
ini screen shootnya

Abu Unaisah Setianto 3:29am Sep 6
ane biasanya pake datalist (simple) : http://www.w3schools.com/tags/tag_datalist.asp

Gunawan Frincencius 3:36am Sep 6
Abu Unaisah Setianto datalist ya saya belum pernah coba masih baru belajar

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 xampp running Mysql running pas di jalankan fi...

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
Ask xampp running Mysql running pas di jalankan fi...
Sep 6th 2013, 03:26, by Etric Hty

Etric Hty 3:26am Sep 6
Ask
xampp running
Mysql running
pas di jalankan file php di browser slalu unable to connect internet itu krna apa gan?
padahal sebelumnya lancar

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 gan baru belajar php,,ane coba buat barcode pa...

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
ask gan baru belajar php,,ane coba buat barcode pa...
Sep 6th 2013, 03:37, by Abdul Malik

Abdul Malik 3:37am Sep 6
ask
gan baru belajar php,,ane coba buat barcode pake php, udah banyak font barcode yang di pake mulai 3 of 9, barcode font dll tapi pas barcode udah dicetak koq tidak bisa di baca scanner, scanner udah di coba pada barcode2 yang ada di bungkus kemasan misal kemasan susu dll bisa baca dengan baik tapi klo baca barcode hasil print ane g bisa.ane ngeprintnya pake kertas hvs biasa, klo ane baca2 g masalah juga pake kertas hvs.. ini script ane
<font face="barcode font">
<?php
echo "$kode";
?>
</font>

kira2 apanya gan?

Amay Diam 3:39am Sep 6
fontnya dan diinstall blm di windowsnya ?

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: paramaster.. saya mau tanyak... gemana caranya mem...

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/ 
Creating iOS Games: Beginner Course

Marin Todorov teaches you how to create an iPhone game easily and simply using Cocos2d in this $99 online course.
From our sponsors
paramaster.. saya mau tanyak... gemana caranya mem...
Sep 6th 2013, 03:38, by Irfan Atjeh Rayeuk

Irfan Atjeh Rayeuk 3:38am Sep 6
paramaster..
saya mau tanyak...
gemana caranya membuat laporan ke pdf ....

Inan Firmansyah 3:39am Sep 6
fpdf..

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: mohon bantuannya gan. saya bikin script php buat ...

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
mohon bantuannya gan. saya bikin script php buat ...
Sep 6th 2013, 02:30, by Fnu Daryadi

Fnu Daryadi 2:30am Sep 6
mohon bantuannya gan.

saya bikin script php buat kirim email tp pesan gak terkirim, padahal sudah bisa ambil alamat email dari tabel. ada notif " Can't send mail: Please specify 1 or more recipients" apa ada pengaruh pada temporary ya?

Reza Syaiful Hamdani 2:36am Sep 6
kan jelas dari errornya, gak ada recipients. coba cek sebelum di send

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: Gan, text area yang ada menu2nya itu namanya apa y...

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
Gan, text area yang ada menu2nya itu namanya apa y...
Sep 6th 2013, 02:38, by Rock Lee

Rock Lee 2:38am Sep 6
Gan, text area yang ada menu2nya itu namanya apa ya gan ?

*tiba-tiba-lupa-ni-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: maaf mw nanya, bgmn caranya memisahkan nilai 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/ 
Creating iOS Games: Beginner Course

Marin Todorov teaches you how to create an iPhone game easily and simply using Cocos2d in this $99 online course.
From our sponsors
maaf mw nanya, bgmn caranya memisahkan nilai yang ...
Sep 6th 2013, 02:02, by Yuchan Kim

Yuchan Kim 2:02am Sep 6
maaf mw nanya, bgmn caranya memisahkan nilai yang dimasukan dalam textbox
misalnya d masukan 4 2 6 7 3, mw d pisahkan jadi array lalu diurutkan secara ascending, bgmn scriptnya??

tolong bantuannya
terima ksh

Budi Sasongko 2:06am Sep 6
http://www.php.net/manual/en/book.array.php

Cahya Dsn 2:14am Sep 6
php way: explode(); then sort(); may it help u ^_^V

Putra Fajar 2:15am Sep 6
http://www.php.net/manual/en/function.asort.php

Cahya Dsn 2:27am Sep 6
model model gini gan..http://pastie.org/8302062 cmiiw ^_^V

Reza Syaiful Hamdani 2:33am Sep 6
explode & asort

Yuchan Kim 2:34am Sep 6
klo syntax explodenya seperti bgmn kak??

Reza Syaiful Hamdani 2:34am Sep 6
gugel please

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