Senin, 16 September 2013

PHP Indonesia - Facebook: gan caranya tau OS apa yg di pakai di hostingan ki...

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/ 
Manage your social media

Best social media tool for image publishing to Facebook and Twitter. Look amazing and delight your followers. Get 40% off when you sign up today.
From our sponsors
gan caranya tau OS apa yg di pakai di hostingan ki...
Sep 17th 2013, 05:33, by Sigit Darmanto

Sigit Darmanto 5:33am Sep 17
gan caranya tau OS apa yg di pakai di hostingan kita gamana gan??

Cahya Dsn 5:37am Sep 17
[1] tanya CS/admin hosting-nya
[2] lihat di spesikisai hostingnya
[3].. ke dukun? gak lah yau...

cmiiw ^_^V

Sigit Darmanto 5:42am Sep 17
hehe.. owh jd ga bsa ya klo di liat dr script/cpanel hehe..
tp biasanya pke OS apa ya gan?? cman sekedar ingin tau hhe :D

Andi Malik Rizki Maula 5:42am Sep 17
echo PHP_OS; atau echo php_uname();

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] code: // Input album elseif ($module=='alb...

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/ 
The Best Way to Manage your Money.

Start using Mint today to set a budget, track your goals and do more with your money.
From our sponsors
[ASK] code: // Input album elseif ($module=='alb...
Sep 17th 2013, 06:17, by Albet Sagan S

Albet Sagan S 6:17am Sep 17
[ASK]

code:

// Input album
elseif ($module=='album' AND $act=='input'){
$lokasi_file = $_FILES['fupload']['tmp_name'];
$tipe_file = $_FILES['fupload']['type'];
$nama_file = $_FILES['fupload']['name'];
$acak = rand(000000,999999);
$nama_file_unik = $acak.$nama_file;

// Apabila ada gambar yang diupload
if (!empty($lokasi_file)){
if ($tipe_file != "image/jpeg" AND $tipe_file != "image/pjpeg"){
echo "<script>window.alert('Upload Gagal, Pastikan File yang di Upload bertipe *.JPG');
window.location=('media.php?module=album')</script>";
}
else{
UploadAlbum($nama_file_unik);
mysql_query("INSERT INTO album(jdl_album,
album_seo,
gbr_album)
VALUES('$_POST[jdl_album]',
'$album_seo',
'$nama_file_unik')");
header('location:media.php?module='.$module);
}
}
else{
mysql_query("INSERT INTO album(jdl_album,
album_seo)
VALUES('$_POST[jdl_album]',
'$album_seo')");
header('location:media.php?module='.$module);
}
}

// Update album
elseif ($module=='album' AND $act=='update'){
$lokasi_file = $_FILES['fupload']['tmp_name'];
$tipe_file = $_FILES['fupload']['type'];
$nama_file = $_FILES['fupload']['name'];
$acak = rand(000000,999999);
$nama_file_unik = $acak.$nama_file;

// Apabila gambar tidak diganti
if (empty($lokasi_file)){
mysql_query("UPDATE album SET jdl_album = '$_POST[jdl_album]',
album_seo = '$album_seo',
aktif='$_POST[aktif]'
WHERE id_album = '$_POST[id]'");
header('location:media.php?module='.$module);
}
else{
if ($tipe_file != "image/jpeg" AND $tipe_file != "image/pjpeg"){
echo "<script>window.alert('Upload Gagal, Pastikan File yang di Upload bertipe *.JPG');
window.location=('media.php?module=album')</script>";
}
else{
UploadAlbum($nama_file_unik);
mysql_query("UPDATE album SET jdl_album = '$_POST[jdl_album]',
album_seo = '$album_seo',
gbr_album = '$nama_file_unik',
aktif='$_POST[aktif]'
WHERE id_album = '$_POST[id]'");
header('location:media.php?module='.$module);
}
}
}

Albet Sagan S 6:17am Sep 17
kalau boleh tau ini kenapa 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: gan, klo koneksi dari php ke ms sql server gimna 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/ 
Exotic travel ideas.

Searching for your next vacation destination? Subscribe to Off The Beaten Path, a newsletter featuring captivating locales to help you to plan your next trip.
From our sponsors
gan, klo koneksi dari php ke ms sql server gimna y...
Sep 17th 2013, 05:50, by Dt

Dt 5:50am Sep 17
gan, klo koneksi dari php ke ms sql server gimna ya??? kok ane dari tadi coba gak bisa. ane pake php 5.4 n sql server 2012 Express.
thanks Gan.

Willy 6:04am Sep 17
barusan aja udh ada yg tanyakan.
Akan saya tag ya.
Jawabannya sudha ada di thread yg lain

Willy 6:05am Sep 17
http://www.facebook.com/groups/35688476100/permalink/10151888183506101/

Dt 6:06am Sep 17
thanks 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: mastah nanya

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/ 
Book your hotel early for a discount!

You can reap the rewards with great discounts at participating Pullman, M Gallery, Grand Mercure, Novotel, Mercure, ibis and Formule 1 hotels.
From our sponsors
mastah nanya saya pake ini
Sep 17th 2013, 05:57, by Danura Aditya

Danura Aditya 5:57am Sep 17
mastah nanya
saya pake ini
<input type=hidden name="aid" value="<?php echo $list[$i]['mid'];?>">
<input type='text' name="nama">
<input name="ok" type="submit" value="Aktivasi" class="cs-button"
onclick="window.location.href=?aid=<?php echo $list[$i]['mid'];?>&kode=<?php echo $nama;?>" />

di addres bar udah begini
kode=11&aid=C9112511
tapiketika saya input data lain selalu saja yang paling bawah yg Munculnya

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} mas gimana cara akses file php nya dikompu...

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/ 
Exotic travel ideas.

Searching for your next vacation destination? Subscribe to Off The Beaten Path, a newsletter featuring captivating locales to help you to plan your next trip.
From our sponsors
[TANYA} mas gimana cara akses file php nya dikompu...
Sep 17th 2013, 04:45, by Wawan Mns

Wawan Mns 4:45am Sep 17
[TANYA}
mas gimana cara akses file php nya dikomputer A dan databasenya di komputer B

Abu Unaisah Setianto 4:47am Sep 17
$con=mysql_connect("ip-komputer-b","user","password");

Wawan Mns 4:49am Sep 17
saya menggunakan mssql mas, saya sudah coba arahkan ip databese malah nampilnya "Fatal error: Call to undefined function mssql_connect()", kira2 apa masalahyna

Eka Mahargiyak 4:49am Sep 17
klo itu mah bs. jd file php d komp A, databaseñya d komp B, aksesnya di komp C. gtu y maksutnya ? tp pd dasarnya bisa kug

Eka Mahargiyak 4:50am Sep 17
klo errornya itu. biasax nm dbnya ato user ato passwordx ato ipnya tdk sama..

Tunjung Trafizap Utomo 4:52am Sep 17
klo mssql saya ga nguasai ya,tp klo keterangannya bilang gitu ya berarti salah script

Wawan Mns 4:52am Sep 17
saya sudah coba untuk nyamain db, user,pass dan ip nya tapi gak mau nampil jg mas

Rahman Surya Praja 4:54am Sep 17
Mengizinkan Koneksi MYSQL Client Untuk Remote Mysql Server?

mysql> GRANT ALL ON *.* to root@'ip-komputer-A' IDENTIFIED BY 'pass';

mysql> FLUSH PRIVILEGES;

mysql> SELECT host, user FROM user;

Eka Mahargiyak 4:55am Sep 17
weu.. lg g OL d lptop ni. jdne g bs bntu pnuh.. tp coba cek lg. d dbya jg

Willy 4:56am Sep 17
"Call to undefined function mssql_connect()"

di komputer situ agan pakainya Microsft punya SQL? atau mysql?
kalo mysql, ganti jadi mysql

untuk akses MS SQL, cooba tilik PDO karena seingat saya fungsi mssql udh dihilangkan..

http://www.php.net/manual/en/ref.pdo-sqlsrv.connection.php

Indra Tux Bw 5:03am Sep 17
Cek support mssql d phpinfo

'sang Timur' 5:04am Sep 17
Udah yakin konek komputer A dengan B dan bisa diakses?

Wawan Mns 5:13am Sep 17
saya coba ping dari komputer A ke komputer B konek mas

Wawan Mns 5:16am Sep 17
saya aktifkan mssql dengan mengedit di file php.ini

Willy 5:17am Sep 17
ya, sudah ada taro dll nya di komputer tujuan kan? yg diedit php.ini komputer tujuann kan?
trus coba konek pake PDO yang saya sebutkan diatas.
Saya bisa kok gan.

Wawan Mns 5:19am Sep 17
tetap gak mau gan, udah dicoba dari tadi mas, file dll udah sy copy ke komputer a dan b

Wachid Daga Suryono 5:20am Sep 17
privileges nya juga di cek gan...
di ping udah bisa, tinggal setting privilege di mysql nya.

Wawan Mns 5:21am Sep 17
cara ngeceknya gmn gan

Cahya Dsn 5:23am Sep 17
[1] as php 5.3+ this extension (mssql) is not available anymore on Windows
[2] pastikan extension mssql-nya sudah diaktifkan
[3] pastikan dari database server mssql-nya di B mengijinkan utk akses dari A dengan konfigurasi yang diberikan
[4] bawah ane jagonya klo masalah gini.. ane nubi cuman bisa asal koming aja ^_^V

Wachid Daga Suryono 5:23am Sep 17
di phpmyadmin gan...
buat yang privilege di bagian database nya trus diganti privilege nya.

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 tanya donk..

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/ 
Want free Kindle ebooks?

Sign up to receive the best freebie Kindle ebook deals in your email every day.
From our sponsors
gan tanya donk..
Sep 17th 2013, 04:46, by זי סוטשינהאַ

זי סוטשינהאַ 4:46am Sep 17
gan tanya donk..

<?php
$no = 1;
mysql_connect('localhost','root','');
mysql_select_db('dbmhs');

$tampil="SELECT * FROM upload";
$qryTampil=mysql_query($tampil);
while ($dataTampil=mysql_fetch_array($qryTampil)) {
$no++
?>
<?php

echo "<a href=index.php?app=upload>Upload File</a><br/><br/>";
//database connection
$con = mysql_connect('localhost', 'root', '') or die(mysql_error());
//select database
$db = mysql_select_db('dbmhs', $con);
$query = "SELECT id, name FROM upload";
$result = mysql_query($query) or die('Error, query failed');
if(mysql_num_rows($result) == 0)
{
echo "Database is empty <br>";
}
else
{
while(list($id, $name) = mysql_fetch_array($result))
{
?>
<tr bgcolor="#FFFFFF">
<td><?php echo $no ; ?></td>
<td><?php echo $dataTampil['name']; ?></td>
<td><?php echo $dataTampil['type']; ?></td>
<td><a href="app/download.php?id=<?php echo urlencode($id);?>">Download</a> <br></td>

kok hasil;a malahan semua nama file jadi di ulang sebanyak 15x ya ? mohon bantuan dan pencerahannya 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