Kamis, 04 Juli 2013

[ASK]ada yang punya tutorial CSS paling lengkap g...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Ïpoùng Bouwhat's Löutphý 6:24am Jul 5
[ASK]
ada yang punya tutorial CSS paling lengkap gak? format .PDF/.PPT...?

Ïpoùng Bouwhat's Löutphý 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736642091101
--
Manage subscription | Powered by rssforward.com

Selamat siangmw nannya ni ganko gk muncul ya ga...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Agustinus Silalahi 5:58am Jul 5
Selamat siang

mw nannya ni gan
ko gk muncul ya gan pesan "Maaf Anda belum terdaftar menjadi member kami "
jika kita memasukkan email dan password yang belum ada didatabase /belum daftar

dan satu lagi gan
ko gk muncul pesan "Maaf Username dan Password Anda Salah"
jika salah memasukkan password nya

ni scipt proses login nya gan :

<?php
session_start();

// PROSES LOGIN DISINI
include "lib_func.php";

$email = $_POST['email'];
$pass = md5($_POST['pass']);

$koneksi = koneksi_db();
$sql = "select * from dtmember where email='$email' and katasandi='$pass'";
$query = mysql_query($sql,$koneksi) or die(mysql_error());
$cekAda = mysql_num_rows($query) or die(mysql_error());
$if = mysql_fetch_array($query) or die(mysql_error());

if ($cekAda == 0) {
echo "<script language='javascript'>alert('Maaf Anda belum terdaftar menjadi member kami !');</script>";
echo "<script language='javascript'>window.location = 'index.php'</script>";
}else{

session_register("email","pass","id_member");
$_SESSION['email'] = $email;
$_SESSION['pass'] = $pass;
$_SESSION['id_member'] = $f['id_member'];

echo '<script language="javascript">alert("Selamat..Anda Berhasil Login!!!");window.location="home.php";</script>';
}
else
{
echo '<script language="javascript">alert(" Password Anda Salah");window.location="index.php";</script>';
}
?>

mohon pencerhan nya gan.
thanks.

Agustinus Silalahi 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736610651101
--
Manage subscription | Powered by rssforward.com

om cranya hapus dta di table otomatis gy mna . ?d...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Muzaki Coding Failed 5:51am Jul 5
om cranya hapus dta di table otomatis gy mna . ?
dlam htungan waktu mundur

Fikri Handa Herriansyah 5:55am Jul 5
5 4 3 2 1 HILANG !! :D

Muzaki Coding Failed 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736602326101
--
Manage subscription | Powered by rssforward.com

mbak2 n mas2 . mau tanya . ada yang punya panduan ...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Grevini Aja 5:27am Jul 5
mbak2 n mas2 . mau tanya . ada yang punya panduan php untuk membuat sistem perpustakaan umum ?? . tq

Biandika Ramadan 5:31am Jul 5
bikin ERDnya dulu aja

Ihvan Mulya Pradana 5:37am Jul 5
nyimak.

Grevini Aja 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736580831101
--
Manage subscription | Powered by rssforward.com

#ask mastah error ini kenapa y??ini scriptnya ...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Artupas Ybed 5:26am Jul 5
#ask mastah error ini kenapa y??

ini scriptnya

$sql = "SELECT * FROM costumer;";

$hasil = mysql_query($sql, $connect);
if (! $hasil)
die("Salah SQL");

$pdf=new FPDF();
$pdf->SetAuthor('Penjahit Yati');
$pdf->SetTitle('Daftar Pelanggan');
$pdf->AddPage();
$pdf->SetFont('Arial','B',20);
$pdf->Cell(0,0, 'Daftar Pelanggan',0,1,'C');
$pdf->SetLineWidth(1);
$pdf->Line(10,30,200,30);

while ($baris = mysql_fetch_row($hasil))
{
$costumerid = $baris[0];
$costumername = $baris[1];
$costumeraddress = $baris[2];
$telp = $baris[3];

$pdf->Cell(20, 6, $costumerid, 1, 0);
$pdf->Cell(40, 6, $costumername, 1, 1);
$pdf->Cell(60, 6, $costumeraddress, 1, 2);
$pdf->Cell(80, 6, $telp, 1, 3);
}

// Akhir pembacaan data

mysql_close($connect);
$pdf->Output();

Mizno Kruge 5:35am Jul 5
error itu artinya, sudah ada output sebelum generate pdf.
coba cek
$pdf->Output() itu ada 3 option
$pdf->Output('yourfilename.pdf','F'); // simpan ke file
$pdf->Output('yourfilename.pdf','D'); // paksa user untuk download
$pdf->Output('yourfilename.pdf','I'); //ditampilkan di browser

Artupas Ybed 5:38am Jul 5
udah pake yg $pdf->Output('yourfilename.pdf','I'); //ditampilkan di browser masih sama errornya padahal $pdf->output() nya cuma 1

Mizno Kruge 5:39am Jul 5
coba query ini bener ga
$sql = "SELECT * FROM costumer;";

Artupas Ybed 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736580281101
--
Manage subscription | Powered by rssforward.com

$sql = "select kd_kelas, tahun_ajar from mempela...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Catur Apri 4:46am Jul 5
$sql = "select kd_kelas, tahun_ajar from mempelajari where tahun_ajar='2010/2011'";
$query = mysql_query($sql);
$th = mysql_fetch_row($query);

saya punya skrip quary seperti diatas,,, rencana untuk mencetak rapot berdasaran tahun ajaran,

quary sql yang benar supaya bisa nyetak berdasarkan tahun ajaran seprti apa ya para master.

Catur Apri 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736538141101
--
Manage subscription | Powered by rssforward.com

master master mohon bantuannya jadi aku buat back...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Tri Wahyu Sora 4:02am Jul 5
master master mohon bantuannya
jadi aku buat backup marecovery (restore) di aplikasi PHP tetapi di restore (recovery) ada eror nya
--> Error performing query ' DROP TABLE (nama tabel); ': Cannot delete or update a parent row: a foreign key constraint fails

kira kira pemecahanya gmn ya ?
maklum newbie :)

Masdi 4:07am Jul 5
Pake SQL Yog, lebih teratur. #CMIW.

Tri Wahyu Sora 4:08am Jul 5
aku pakainya phpmyadmin o.O

Tri Wahyu Sora 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736487881101
--
Manage subscription | Powered by rssforward.com

Yo! Kalau mau "collapse" array gimana? Misalnya pu...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Fahri Reza 4:19am Jul 5
Yo! Kalau mau "collapse" array gimana? Misalnya punya data seperti ini:

$term_ids_weirdstuff = array(
0 => array('tid' => 1),
1 => array('tid' => 2),
2 => array('tid' => 3),
);

maunya jadi $term_ids = array(1, 2, 3);

Fahri Reza 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736505471101
--
Manage subscription | Powered by rssforward.com

thanks to admin yang sudah mengizinkan saya bergab...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Hamzah Sa Putra 4:15am Jul 5
thanks to admin yang sudah mengizinkan saya bergabung di group ini... :-)
salam kenal semuanya...

Hamzah Sa Putra 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736502561101
--
Manage subscription | Powered by rssforward.com

help please, ane mau nampilin data yang diambi dar...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
'Tri Wicaksono' 3:51am Jul 5
help please, ane mau nampilin data yang diambi dari API, gimana caranya ya klo APInya bentuknya kayak gini https://api.suararadio.com/Streaming/Lists/
oh ya ane pake CI.
tengkyu.

Spiritz Crew 3:52am Jul 5
itu JSON

Rahadian Bisma 3:54am Jul 5
tergantung mau butuh apanya??itu format json

Ahmad Afandi 3:54am Jul 5
bisa pake JSON.parse klo gak salah

'Tri Wicaksono' 3:54am Jul 5
iya format json om

'Tri Wicaksono' 3:55am Jul 5
maksud ane mau nampilin semua itu dalam bentuk table or whatever gitu,,, cara nya gimana ya ehehhe

Ahmad Afandi 3:57am Jul 5
kayak gini om http://stackoverflow.com/questions/4935632/how-to-parse-json-in-javascript

'Tri Wicaksono' 3:59am Jul 5
Ahmad Afandi : ada penjelasan yang simple om? ehehe

Bendt Öziel 3:59am Jul 5
Tuh sih ahmad udah ada ,,,

'Tri Wicaksono' 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736475406101
--
Manage subscription | Powered by rssforward.com

Gan, cara update data terakhir menggunakan MySQL g...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Dropb Nrro 3:26am Jul 5
Gan, cara update data terakhir menggunakan MySQL gimana ya??
Kasusnya seperti ini, saya punya sebuah sistem.
Setiap user yg sudah melakukan registrasi hanya dapat login jika statusnya sudah 'Y'

Jadi, setiap user melakukan registrasi, status yang masuk database adalah 'N'
Nah, gimana caranya setelah dia melakukan registrasi, misalnya saya mau 1 jam, otomatis status yang awalnya 'N' berubah menjadi 'Y'

Intinya, data terakhir yg diinputkan statusnya 'N' setelah satu jam data status yang awalnya 'N' berubah menjadi 'Y'

Makasih

Cahya Dsn 3:33am Jul 5
U can do this:

1. buat satu field yang berisi data bertype DATETIME yang isinya tanggal dan waktu saat register
2. pada script PHP tinggal ngecek saat waktu sekarang < 1jam dari yg ditabel maka tampilakn notifikasi, jika > 1 jam update statusnya jadi Y (atau tanpa melihat statusnya, selama user mengaksesnya >1 jam dri waktu registrasinya, maka bisa masuk, selain itu munculkan notif)

cmiiw ^_^V

Muqtafi Akhmad 3:35am Jul 5
buat script yang kedua bisa dieksekusi pake crontab (linux) atau task scheduler (windows), gitu bukan ya?

Dropb Nrro 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736444541101
--
Manage subscription | Powered by rssforward.com

maaf saya newbie

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Vieellennce Vashite Vgrewtu 3:12am Jul 5
maaf saya newbie

<?PHP
include("koneksi.php");
###############Maximal filesize#########################
$max="3000"; #3mb mximal
$size=$_FILES['uploaded']['size'];
$size=$size/1024;
#untuk menjadikannya dalam satuan MB
########################################################
###############for Extension file#######################
function get_ext($key) { #function get extension file
$key=strtolower(substr(strrchr($key, "."), 1));
$key=str_replace("jpeg","jpg",$key);
return $key;
}
#get extension file
$file_ext=get_ext($_FILES['uploaded']['name']);
#extension allowed
$allow_types=array("pdf","xls","xlsx","ppt","pptx","mp4","mkv","vob","midi","avi","mp3","jpg","gif","png","bmp","zip","txt","doc","rar","jpeg","exe","dew","psd","ico","docx","ocx","dll");
############################################################

gmna ya cara menambahkan size pada php uploader ?
sorry klw oot..

Alvi Sani 3:13am Jul 5
jalan2 ke http://www.cyberciti.biz/faq/linux-unix-apache-increase-php-upload-limit/

Vieellennce Vashite Vgrewtu 3:15am Jul 5
mksh infonya kang ..hehe

Vieellennce Vashite Vgrewtu 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736425041101
--
Manage subscription | Powered by rssforward.com

Pagi para suhu,.,.Saya mau tnya mengenai modul re...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Wahyu Surya 3:08am Jul 5
Pagi para suhu,.,.
Saya mau tnya mengenai modul rewrite,.,.
saya buat rewrite rule di .htaccess, tp url nya tetap gk mau di rewrite...
padahal modul rewrite di httpd.conf sudah di load.,.
mohon bantuannya, apa masalahnya ya.. atau apa lg yg harus di configur
terimaksih,.,.

sya pakai apache (xamp)

Pengaturan Privasi 3:10am Jul 5
ada keterangan tidak maunya?
htaccessnya seperti apa?

Wahyu Surya 3:13am Jul 5
tdk ada.,.
cuma url tdk ter-rewrite,.,.
saya buat rule yg sederhana :

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([A-Za-z0-9\-]+)/$ index.php?mod=$1 [NC,L]

Muhammad Saleh Hafizh Fajri 3:14am Jul 5
terus di urlnya seperti apa?

di a href nya seperti apa?

Pengaturan Privasi 3:14am Jul 5
berarti kalau nulis
host/abcdefg
keterangannya object notfound bukan page kamu?

Muzaki Coding Failed 3:15am Jul 5
pke yg simple azz . rewriteengine on rewriterule ^(.*)$ index.php?mod=$1

Wahyu Surya 3:18am Jul 5
dengan tdk pake rule:
localhost/test/index.php?mod=contact

di pakai rule juga masih sama urlnya...

yg ^(.*)$ index.php?mod=$1
saya uda nyoba juga tp tetep gk mau,.,.

apa ada yg salah di config apache / php nya ya.,.?

Muhammad Saleh Hafizh Fajri 3:19am Jul 5
di <a href=""> nya kamu buat apaan mas??

Wahyu Surya 3:20am Jul 5
<a href="index.php?mod=contact"><span>Journal</span></a>

sperti itu a href nya mas....

Wahyu Surya 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736419996101
--
Manage subscription | Powered by rssforward.com

maaf gan, ini kenapa ya, install wordpress offline...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
CYaif NiKu KuLo 3:16am Jul 5
maaf gan, ini kenapa ya, install wordpress offline kok failed, ada yang punya solusi ?

Arief Hidayat 3:17am Jul 5
udh bikin database blm mas???

Mahsun Hidayat 3:19am Jul 5
coba wp-config d sinkron kan dgn databasenya

Muhammad Saleh Hafizh Fajri 3:20am Jul 5
buat database, user, password

CYaif NiKu KuLo 3:21am Jul 5
sy baru mau install gan, stelah ngisi field pasword, dll ini terus klik submit, eh muncul error kayak di atas

CYaif NiKu KuLo 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736429641101
--
Manage subscription | Powered by rssforward.com

tolong master...gimana caranya convert file pdf k...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Arwani Aveiro 2:53am Jul 5
tolong master...
gimana caranya convert file pdf ke jpg
ane lagi bikin flipbook nih..
urgent
thank's for help

Arwani Aveiro 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736394041101
--
Manage subscription | Powered by rssforward.com

misi numpang nanya :Dkemaren aku dapet script bu...

Thank you for using rssforward.com! This service has been made possible by all our customers. In order to provide a sustainable, best of the breed RSS to Email experience, we've chosen to keep this as a paid subscription service. If you are satisfied with your free trial, please sign-up today. Subscriptions without a plan would soon be removed. Thank you!
Putra Fajar 2:48am Jul 5
misi numpang nanya :D

kemaren aku dapet script buat dapetin mac address kayak gini

<?php

ob_start(); // Turn on output buffering
system('ipconfig /all'); //Execute external program to display output
$mycom=ob_get_contents(); // Capture the output into a variable
ob_clean(); // Clean (erase) the output buffer

$findme = "Physical";
$pmac = strpos($mycom, $findme); // Find the position of Physical text
$mac=substr($mycom,($pmac+36),17); // Get Physical Address

echo $mac;
?>

mac address komputer aku emang berhasil di dapetin...
sekalinya aku coba pake komputer laen masuk ke web localhost komputerku, mac yang muncul malah tetep mac komputerku(komputer web localhost) bukan mac dari komputer yang akses web tadi

ada solusi???

Arie Wijayanto 2:49am Jul 5
karna php itu server side

jadi yg terbaca ya server anda

Putra Fajar 2:50am Jul 5
jadi ada solusi untuk dapetin mac address client gak?
soalnya kalo mau dapetin ip address, gak berlaku juga soalnya ip address di convert berkali kali sampe ke vpn..

Pengaturan Privasi 2:53am Jul 5
perlu bantuan yang bekerja di client,,, tapi apa? bawah saya akan menjawabnya...

Arie Wijayanto 2:57am Jul 5
tidak mungkin

Pengaturan Privasi 2:59am Jul 5
apanya yang tidak mungkin?

Arie Wijayanto 3:02am Jul 5
tidak mungkin php bisa membaca mac client

Putra Fajar 05 Jul, 2013


-
Source: http://www.facebook.com/groups/35688476100/?id=10151736387556101
--
Manage subscription | Powered by rssforward.com