Kamis, 05 September 2013

PHP Indonesia - Facebook: Bagi yg blum tahu, dan ingin menggunakan Senthot ...

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
Bagi yg blum tahu, dan ingin menggunakan Senthot ...
Sep 5th 2013, 11:39, by Iwan Suryadmo

Iwan Suryadmo 11:39am Sep 5
Bagi yg blum tahu, dan ingin menggunakan

Senthot PHP Framework
sites : http://www.senthot.com
grup fb : https://www.facebook.com/groups/idframework/

tutorial :
Senthot 2.2.2 Quick Start - Dasar : http://www.senthot.com/dev/question/3
Senthot 2.2.2 Memulai CURD 2 : http://www.senthot.com/dev/question/9

Isman Subarkah 11:44am Sep 5
kelebihannya apa mas ?

Drow Fallén 11:55am Sep 5
namanya ga enak dibaca gkgk

Singgih Pranowo 11:56am Sep 5
ahaha.. Drow Fallén bener juga, tapi kerasa id banget. ntar coba deh

Yanuar Arifianto 12:18pm Sep 5
Buatan orang Indonesia bukan ya?
Menarik nih, nanti dilihat dulu de.

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: brother, mohon bantuan dan koreksinya. script be...

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
brother, mohon bantuan dan koreksinya. script be...
Sep 5th 2013, 12:17, by R Khaerul Huda

R Khaerul Huda 12:17pm Sep 5
brother, mohon bantuan dan koreksinya. script berikut tidak bisa keluar ceklist yang sudah dipilih maupun jika disimpan tidak bisa tersimpan :

<html>
<head>
<title>Halaman Buat Relasi Gejala Penyakit</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore) { //v5.0 eal (targ+".location='"+selObj.options[selObj. selectedIndex].value+"'");

if (restore) selObj.selectedIndex=0;

}
//->
</script>
</head> <body>
<form name="form1" method="post"
action="?module=relasia">
<div align="center">
<table width="500" border="0" cellpadding="2"
cellspacing="1"bgcolor="#99FFFF">
<tr bgcolor="#22B5DD">
<td height="48" colspan="2" align="center">
<b> [ RELASI GEJALA DAN PENYAKIT ] </b> </td> </tr>
<tr>
<td colspan="2" bgcolor="#22B5DD">
<b>Nama Penyakit</b></td>
</tr>
<tr>
<td colspan="2" bgcolor="#22B5DD">
<b>Nama Penakit : </b> </td>
</tr>
<td colspan="2" bgcolor="#DBEAF5">
<select name="CmbPenyakit"
onChange=MM_jumpMenu ('parent',this,0)">
<option value="<?php echo $_SERVER['PHP_SELF'];?>">
[ Daftar Penyakit ] </option>
<?php
$sqlp = "SELECT * FROM penyakit ORDER BY kd_penyakit";
$qryp = mysql_query($sqlp)
or die ("SQL Error: ".mysql_error());
while ($datap=mysql_fetch_array($qryp)) {
// Untuk Nilai Terpilih
if ($datap['kd_penyakit']==$kdsakit) {
$cek ="selected";
}
else {
$cek ="";
}
//kode untuk tampilin daftar
echo "<option value='RelasiAddPilih.php?
kdsakit=$datap[kd_penyakit]' $cek>
$datap[nm_penyakit] or $datap[nm_latin]
</option>:";
}
?>
</select>
<input name="TxtKodeH" type="hidden"
value="<?php echo $kdsakit; ?>"></td>
</tr>
<tr>
<td colspan="2" bgcolor="#22B5DD">
<b>Daftar Gejala</b></td>
</tr>
<?php

$sql = "SELECT * FROM gejala ORDER BY kd_gejala" ;
$qry = mysql_query($sql)
or die ("SQL Error: ".mysql_error());
while ($data=mysql_fetch_array($qry)) {
@$no++;
$sqlr = "SELECT * FROM relasi WHERE kd_penyakit='$kdsakit' AND kd_gejala='$data[kd_gejala]'";
$qryr = mysql_query($sqlr);
$cocok= mysql_num_rows($qryr);
// kode nilai gejala terpilih
// kode warna pada nilai terpilih
if ($cocok==1) {
$cek = " checked" ;
$bg = "#CCFF00";
}
else {
$cek = "";
$bg = "#FFFFFF";
}
?>

<tr bgcolor="#FFFFFF">
<td width="20" bgcolor="<?= $bg; ?>">
<input name="CekGejala[]" type="checkbox"
value="<?php echo $data ['kd_gejala']; ?>"<? echo $cek; ?>
</td>
<td width="469"><?php echo $data['nm_gejala']; ?> </td>
</tr>
<?php
}
?>
<tr bgcolor=#DBEAF5">
<td colspan="2" align="center" bgcolor="DBEAF5">
<input type="submit" name="Submit" value="Simpan Relasi">
<input type="reset" name="reser"
value="Normalkan"></td>
</tr>

</table>
</div>
</form>
</body> </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: Malem gaan... ane ada kendalan niih, lagi nyobain ...

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
Malem gaan... ane ada kendalan niih, lagi nyobain ...
Sep 5th 2013, 12:28, by Taufik Ramadhan

Taufik Ramadhan 12:28pm Sep 5
Malem gaan...
ane ada kendalan niih, lagi nyobain simple CMS tapi ada error nya di display.php ?
ada yang bisa bantu gan ?

Ini Codingnya gan..
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>Simple CMS with PHP</title>

<link rel="stylesheet" type="text/css" href="style.css" />
</head>

<body>
<div id="page-wrap">
<?php

include_once('_class/simpleCMS.php');
$obj = new simpleCMS();

/* CHANGE THESE SETTINGS FOR YOUR OWN DATABASE */
$obj->host = 'localhost';
$obj->username = 'root';
$obj->password = '';
$obj->table = 'simplecms';
$obj->connect();

if ( $_POST )
$obj->write($_POST);

echo ( $_GET['admin'] == 1 ); $obj->display_admin(); $obj->display_public();

?>
</div>
</body>

</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: [Tutorial Membuat Web Dinamis] Selamat sore para m...

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
[Tutorial Membuat Web Dinamis] Selamat sore para m...
Sep 5th 2013, 11:00, by Jun Sharing Learning

Jun Sharing Learning 11:00am Sep 5
[Tutorial Membuat Web Dinamis]
Selamat sore para master php.. ada yg punya ebook tutorial membuat web dinamis..atau tempat download ebookny..trmksh..

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

Rabu, 04 September 2013

PHP Indonesia - Facebook: permisi gan mau numpang tanya cara upload multiple...

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
permisi gan mau numpang tanya cara upload multiple...
Sep 5th 2013, 04:53, by Taufik Ismail

Taufik Ismail 4:53am Sep 5
permisi gan mau numpang tanya cara upload multiple image menggunakan PHP mysql? thanks sebelumnya

Anton Sofyan 5:09am Sep 5
http://blog.rosihanari.net/script-multiple-file-upload-dengan-php/#more-834

Taufik Ismail 5:10am Sep 5
thanks agan anton

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: Assalam'alaikum .. [ASK] Ada yg tau multiple inser...

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
Assalam'alaikum .. [ASK] Ada yg tau multiple inser...
Sep 5th 2013, 05:10, by Uhuk Uhuk Tokk

Uhuk Uhuk Tokk 5:10am Sep 5
Assalam'alaikum ..
[ASK]
Ada yg tau multiple insert checkbox .. ?
googling ra nemu2.. ;D
#Help :)

Isnu Arief Darmawan 5:14am Sep 5
Chain select/checkbox..

Uhuk Uhuk Tokk 5:22am Sep 5
ad g yg g pake.function?

Cahya Dsn 5:23am Sep 5
script yang udah dibuat untuk 'form' inputannya dan script pemroses nilai yang disubmit gimana tuh 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: #tanya Ada yang bisa Membuat Slideshow Gambar deng...

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
#tanya Ada yang bisa Membuat Slideshow Gambar deng...
Sep 5th 2013, 03:29, by Khoirul Islam

Khoirul Islam 3:29am Sep 5
#tanya Ada yang bisa Membuat Slideshow Gambar dengan Jquery dan Udah Konek ke Database, Saya Sudah Mencoba Tanpa Pengambilan File Dari Database Bisa tapi begitu dikonek Database malah Error, Mohon Bantuannya #Tanya ????
<style> .fadein {height:150x; width:180px; } .fadein img {left:0; top:0; } </style>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(function(){
$('.fadein img:gt(0)').hide();
var speed="2000";//Slide show speed
setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein');}, speed);
});
</script> <br />
<?php include "koneksi.php";
$tampil="SELECT * FROM tbl_foto ORDER BY tbl_foto.id ASC LIMIT 0 , 5";
$qryTampil=mysql_query($tampil);
while ($dataTampil=mysql_fetch_array($qryTampil)) ?>
<div class="fadein"><img src="Amin/mod_foto/upload/<?php echo $dataTampil['nama_file']; ?>" alt="" height="150" width="180" />
</div>
<br>
<?php ?>

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