Re: [ITCENTER] Tanya PHP

2007-05-02 Terurut Topik Alpha Bagus Sunggono
Pada tanggal 02/05/07, Angwar S <[EMAIL PROTECTED]> menulis:
>
>
>
>
>
>
> Yth,
>
>  Teman2 saya sudah Mempelajari sedikit ttg PHP Dari Buku, dan berikut ini
>  bbrp pertanyaan yang saya ga ngerti :
>
>  1.  Dlm mempelajari Database phpmyadmin telah diajarkan bagaimana membuat
>  database, tabel dan mengisi tabel yg salah satunya nanti berguna untuk
>  menyimpan data buku tamu, forum dll *Pertanyaannya : *Bagaimana jika
>  kita upload ke Web Hosting tentunya script yang dibuat mencari server local
>  (Localhost) dan akhirnya website tdk bisa di akses, apakah kita konsul ke
>  Web Hosting atau kita rubah sendiri scriptnya, krn pelajaran ini tdk ada dlm
>  Buku2 PHP.

@@@ : untuk bagian localhost tersebut silakan konsultasikan ke admin hosting.

>
>
>
>
>
>
>  2.  Dalam membuat website, saat peng-update-an saya lihat contoh-contoh
>  website kelihatannya tdk perlu upload sebagian  page ke webhosting tp kita
>  bisa update melalui website itu sendiri... *bgm caranya *dan  apakah ini
>  yang disebut "website interactive", dan kalau memang ada artikelnya mohon
>  dikirimkan atau cara membuatnya mungkin dengan script2nya atau juga buku
>  rekomendasi tolong berikan petunjuk judul, pengarang dan penerbitnya..
>  ..(mungkin untuk PHP Lanjutan barang kali)

@@@ untuk model seperti Wordpress, ada 2 hal:
1. Script utk instalasi / konfigurasi nya
2. Script program web site itu.

Jadi setelah kita mengisi Konfigurasi (sesuai manual / read me dari
Wordpress) tentang,
akses databasenya, maka Script penginstall, akan meng create database,
table, isi, dll.
Setelah itu baru deh Program Website itu bisa mengakses Databasenya.

>
>  3.  Jika kita mempunyai website atau membuatkan website untuk orang lain,
>  bgm securitynya misalnya dr Hacker atau sejenisnya, mohon petunjuk nya bisa
>  dengan penjelasan dari artikel atau petunjuk jenis buku2 atau link
>  internetnya untuk newbe seperti saya ini, (tp Bhs Indonesia klw bisa).
>

@@@ nah kalau ini mah musti ikut milis2 security, supaya tidak
ketinggalan jaman.

>  Terima kasih
>
>  Angwar
>
>  [Non-text portions of this message have been removed]
>
>



-- 
Salam Revolusi IT Indonesia 

Alpha Bagus Sunggono
--
http://bagusalfa(dot)blogspot(dot)com


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [ITCENTER] Tanya PHP & MySQL

2007-04-04 Terurut Topik kasiman peranginangin
Pastikan Eka sudah punya tabelnya, lalu lakukan penyisipan dengan perintah :
insert into nama_tabel(nama, alamat) values 
('Andi','Bandung'),('Dedi','Semarang'),(,...); lalu Enter



Danny Eka <[EMAIL PROTECTED]> wrote:  Halo 
ITers,
 
 Mo tanya, klo mo insert data ke dalam database MySQL, perintahnya gimana,
 datanya dalam bentuk multiple, maksud aku recordnya lebih dari satu, misal :
 Cth nama & alamat yg mo di insert ke MySQL
 1. Andi   Bandung
 2. Dedi   Semarang
 3. ToniBali
 4. Dewi   Jakarta
 5. Dewo  Bandung
 
 jadi pas di MySQL recordnya langsung ada 5 records, perintah MySQLnya gimana
 ya..?
 
 Thanks in Advance
 Rgds
 Danny
 
 [Non-text portions of this message have been removed]
 
 
 
   

 
-
Food fight? Enjoy some healthy debate
in the Yahoo! Answers Food & Drink Q&A.

[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [ITCENTER] Tanya PHP & MySQL

2007-04-04 Terurut Topik Acho
Kl insertnya manual, berarti :

INSERT INTO contoh ( nama, alamat ) VALUES ('Andi', 'Bandung');
INSERT INTO contoh ( nama, alamat ) VALUES ('Dedi', 'Semarang');
INSERT INTO contoh ( nama, alamat ) VALUES ('Toni', 'Bali');
INSERT INTO contoh ( nama, alamat ) VALUES ('Dewi', 'Jakarta');
INSERT INTO contoh ( nama, alamat ) VALUES ('Dewo', 'bandung');

Kalo looping schema nya(5x insert), berarti :

for($i=1; $i<=5; $i++)
{
$input_[$i]="INSERT INTO user (nama,alamat) 
VALUES('$nama_[$i]','$alamat[$i]')";
mysql_query($input_[$i]);
}

kira2 begitu..

Muhadkly - Acho- , http://muhadly.info

- Original Message - 
From: Danny Eka
To: itcenter
Sent: Wednesday, April 04, 2007 11:35 AM
Subject: [ITCENTER] Tanya PHP & MySQL


Halo ITers,

Mo tanya, klo mo insert data ke dalam database MySQL, perintahnya gimana,
datanya dalam bentuk multiple, maksud aku recordnya lebih dari satu, misal :
Cth nama & alamat yg mo di insert ke MySQL
1. Andi Bandung
2. Dedi Semarang
3. Toni Bali
4. Dewi Jakarta
5. Dewo Bandung

jadi pas di MySQL recordnya langsung ada 5 records, perintah MySQLnya gimana
ya..?

Thanks in Advance
Rgds
Danny

[Non-text portions of this message have been removed]


 



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [ITCENTER] Tanya PHP & MySQL

2007-04-04 Terurut Topik Charpus
pake mysql berapa ya?
kalo nda salah di mysql 5 insyaAlloh bisa kayak gini misal:

insert into data(kode, nama, kota) values((1, 2, 3, 4, 5), ('Andi', 'Dedi',
'Toni', 'Dewi', 'Dewo'), ('Bandung',  'Semarang', 'Bali', 'Jakarta',
'Bandung'))

coba aja kalo di mysql 4 :D

[CMIIW]


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


Re: [ITCENTER] tanya php

2006-10-29 Terurut Topik Mirza Khadnezar
yup
makasih
hehehe kayaknya gara2 kepagian nih belajar nya
makasih yah

On 10/29/06, Bansat <[EMAIL PROTECTED]> wrote:
>
> Nama table nya bukannya information bukan TABLE_INFORMATION
>
> Querynya :
> SELECT information_id, info_title, parent_id information
> WHERE visible='1' and languages_id ='1' ORDER BY v_order
>
> On 10/28/06, Mirza Khadnezar <[EMAIL PROTECTED] >
> wrote:
> >
> > sorry kali ajah ada yang ngerti
> >
> > 1146 - Table 'portal_osc1.TABLE_INFORMATION' doesn't exist
> >
> > SELECT information_id, info_title, parent_id FROM TABLE_INFORMATION
> > WHERE visible='1' and languages_id ='1' ORDER BY v_order
> >
> > [TEP STOP]
> >
> > itu kenapa yah ?
> > padahal udah di add sbb :
> >
> > #
> > # Table structure `information`
> > #
> >
> > DROP TABLE IF EXISTS information;
> > CREATE TABLE information (
> > information_id tinyint(3) unsigned NOT NULL auto_increment,
> > visible enum('1','0') NOT NULL default '1',
> > v_order tinyint(3) unsigned NOT NULL default '0',
> > info_title varchar(255) NOT NULL default '',
> > description text NOT NULL,
> > languages_id int(11) DEFAULT '0' NOT NULL,
> > `parent_id` int(11) default NULL,
> >
> > PRIMARY KEY (information_id,languages_id)
> > ) TYPE=MyISAM;
> >
> > salah di mana nya yah :(
> >
> >
> >
>
> --
> Kalau Tuhan mau ..Sekarang tidak ada aku, tapi mengapa ada aku ?
>
> [Non-text portions of this message have been removed]
>
> 
>


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



RE: [ITCENTER] tanya php

2006-10-29 Terurut Topik Kurniawan
Jelas aja….
“TABLE_INFORMATION” tidak sama kan dengan “information”
 
Nama tabel harus sama persis dan jangan lupa case sensitive.
 
Salam,
Kurniawan.
 
   _  

From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Mirza Khadnezar
Sent: 28 Oktober 2006 5:30
To: ITCENTER@yahoogroups.com
Subject: [ITCENTER] tanya php
 
sorry kali ajah ada yang ngerti

1146 - Table 'portal_osc1.-TABLE_INFORMATIO-N' doesn't exist

SELECT information_-id, info_title, parent_id FROM TABLE_INFORMATION
WHERE visible='1' and languages_id ='1' ORDER BY v_order

[TEP STOP]

itu kenapa yah ?
padahal udah di add sbb :

#
# Table structure `information`
#

DROP TABLE IF EXISTS information;
CREATE TABLE information (
information_-id tinyint(3) unsigned NOT NULL auto_increment,
visible enum('1','0'-) NOT NULL default '1',
v_order tinyint(3) unsigned NOT NULL default '0',
info_title varchar(255) NOT NULL default '',
description text NOT NULL,
languages_id int(11) DEFAULT '0' NOT NULL,
`parent_id` int(11) default NULL,

PRIMARY KEY (information_-id,languages_-id)
) TYPE=MyISAM;

salah di mana nya yah :(
 

--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.11/497 - Release Date: 25/10/2006


-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.408 / Virus Database: 268.13.11/497 - Release Date: 25/10/2006
 


[Non-text portions of this message have been removed]




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] tanya php

2006-10-29 Terurut Topik Bansat
Nama table nya bukannya information bukan TABLE_INFORMATION

Querynya :
SELECT information_id, info_title, parent_id information
WHERE visible='1' and languages_id ='1' ORDER BY v_order

On 10/28/06, Mirza Khadnezar <[EMAIL PROTECTED]> wrote:
>
>   sorry kali ajah ada yang ngerti
>
> 1146 - Table 'portal_osc1.TABLE_INFORMATION' doesn't exist
>
> SELECT information_id, info_title, parent_id FROM TABLE_INFORMATION
> WHERE visible='1' and languages_id ='1' ORDER BY v_order
>
> [TEP STOP]
>
> itu kenapa yah ?
> padahal udah di add sbb :
>
> #
> # Table structure `information`
> #
>
> DROP TABLE IF EXISTS information;
> CREATE TABLE information (
> information_id tinyint(3) unsigned NOT NULL auto_increment,
> visible enum('1','0') NOT NULL default '1',
> v_order tinyint(3) unsigned NOT NULL default '0',
> info_title varchar(255) NOT NULL default '',
> description text NOT NULL,
> languages_id int(11) DEFAULT '0' NOT NULL,
> `parent_id` int(11) default NULL,
>
> PRIMARY KEY (information_id,languages_id)
> ) TYPE=MyISAM;
>
> salah di mana nya yah :(
>
>  
>



-- 
Kalau Tuhan mau ..Sekarang tidak ada aku, tapi mengapa ada aku ?


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##

## Jaket ITCENTER tersedia di http://shop.itcenter.or.id 
 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/ITCENTER/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 



Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik leon grosso


kalau pake database gampang..

contoh pake sql server

tinggal pake keyword "datediff" ...




- Original Message -
From: "kasiman peranginangin" <[EMAIL PROTECTED]>
To: 
Sent: Thursday, July 20, 2006 12:42 PM
Subject: [ITCENTER] Tanya PHP??


>
> Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan  ...
hari.
>   Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
>   Please help...!!!
>
>
> -
> Do you Yahoo!?
>  Everyone is raving about the  all-new Yahoo! Mail Beta.
>
> [Non-text portions of this message have been removed]
>
>
>
> --
> www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
> Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
> :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
> ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
> $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
>
> [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
>
>
>
>
> Disclaimer: Although this message has been checked for all known viruses
>  using Trend Micro InterScan Messaging Security Suite, Bukopin
>accept no liability for any loss or damage arising
>from the use of this E-Mail or attachments.
>







Disclaimer: Although this message has been checked for all known viruses
 using Trend Micro InterScan Messaging Security Suite, Bukopin 
   accept no liability for any loss or damage arising
   from the use of this E-Mail or attachments.




-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik Octanoviar

listing

function datediff($interval, $datefrom, $dateto, $using_timestamps = false) {
  /*
$interval can be:
 - Number of full years
q - Number of full quarters
m - Number of full months
y - Difference between day numbers
  (eg 1st Jan 2004 is "1", the first day. 2nd Feb 2003 is "33". The 
datediff is "-32".)
d - Number of full days
w - Number of full weekdays
ww - Number of full weeks
h - Number of full hours
n - Number of full minutes
s - Number of full seconds (default)
  */
  
  if (!$using_timestamps) {
$datefrom = strtotime($datefrom, 0);
$dateto = strtotime($dateto, 0);
  }
  $difference = $dateto - $datefrom; // Difference in seconds
   
  switch($interval) {
   
case '': // Number of full years

  $years_difference = floor($difference / 31536000);
  if (mktime(date("H", $datefrom), date("i", $datefrom), date("s", 
$datefrom), date("n", $datefrom), date("j", $datefrom), date("Y", 
$datefrom)+$years_difference) > $dateto) {
$years_difference--;
  }
  if (mktime(date("H", $dateto), date("i", $dateto), date("s", $dateto), 
date("n", $dateto), date("j", $dateto), date("Y", 
$dateto)-($years_difference+1)) > $datefrom) {
$years_difference++;
  }
  $datediff = $years_difference;
  break;

case "q": // Number of full quarters

  $quarters_difference = floor($difference / 8035200);
  while (mktime(date("H", $datefrom), date("i", $datefrom), date("s", 
$datefrom), date("n", $datefrom)+($quarters_difference*3), date("j", $dateto), 
date("Y", $datefrom)) < $dateto) {
$months_difference++;
  }
  $quarters_difference--;
  $datediff = $quarters_difference;
  break;

case "m": // Number of full months

  $months_difference = floor($difference / 2678400);
  while (mktime(date("H", $datefrom), date("i", $datefrom), date("s", 
$datefrom), date("n", $datefrom)+($months_difference), date("j", $dateto), 
date("Y", $datefrom)) < $dateto) {
$months_difference++;
  }
  $months_difference--;
  $datediff = $months_difference;
  break;

case 'y': // Difference between day numbers

  $datediff = date("z", $dateto) - date("z", $datefrom);
  break;

case "d": // Number of full days

  $datediff = floor($difference / 86400);
  break;

case "w": // Number of full weekdays

  $days_difference = floor($difference / 86400);
  $weeks_difference = floor($days_difference / 7); // Complete weeks
  $first_day = date("w", $datefrom);
  $days_remainder = floor($days_difference % 7);
  $odd_days = $first_day + $days_remainder; // Do we have a Saturday or 
Sunday in the remainder?
  if ($odd_days > 7) { // Sunday
$days_remainder--;
  }
  if ($odd_days > 6) { // Saturday
$days_remainder--;
  }
  $datediff = ($weeks_difference * 5) + $days_remainder;
  break;

case "ww": // Number of full weeks

  $datediff = floor($difference / 604800);
  break;

case "h": // Number of full hours

  $datediff = floor($difference / 3600);
  break;

case "n": // Number of full minutes

  $datediff = floor($difference / 60);
  break;

default: // Number of full seconds (default)

  $datediff = $difference;
  break;
  }

  return $datediff;

}

contoh : 
echo datediff('w', '9 July 2003', '4 March 2004', false);

semoga bermanfaat

- Original Message - 
From: kasiman peranginangin 
To: ITCENTER@yahoogroups.com 
Sent: Thursday, July 20, 2006 12:42 PM
Subject: [ITCENTER] Tanya PHP??


Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya lahir 
tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ... hari.
Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
Please help...!!!


-
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail Beta.

[Non-text portions of this message have been removed]



 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-20 Terurut Topik AmiGelz
ya bisa pak
$waktu_awal=mktime(0,0,0,11,25,1985); ==> kan tak isi tanggal lahir saya ini
== 25-11-1985
ya tinggal ganti tanggal yang mau bapak pakek :D



Pada tanggal 06/07/20, kasiman peranginangin <[EMAIL PROTECTED]>
menulis:
>
>   kalau tanggal lahirnya sebelum tanggal 1 Januari 1970 , misalnya ya
> tanggal 19 Juli 1962. dan sistem operasi yang saya gunakan Windows XP, bisa
> ndak ya?
>
> --
>
> AmiGelz <[EMAIL PROTECTED] > wrote: fungsi
>
> function datediff($per,$d1,$d2) {
> $d = $d2-$d1;
> switch($per) {
> case "": $d/=12;
> case "m": $d*=12*7/365.25;
> case "ww": $d/=7;
> case "d": $d/=24;
> case "h": $d/=60;
> case "n": $d/=60;
> }
> return round($d);
> }
>
> cara manggil :D
>
> $waktu_awal=mktime(0,0,0,11,25,1985);
> $waktu_akhir=mktime(0,0,0,date("m"),date("j"),date("Y"));
> echo datediff("",$waktu_awal,$waktu_akhir)." tahun ";
> echo datediff("m",$waktu_awal,$waktu_akhir)." bulan ";
> echo datediff("ww",$waktu_awal,$waktu_akhir)." minggu ";
> echo datediff("d",$waktu_awal,$waktu_akhir)." hari ";
> echo datediff("h",$waktu_awal,$waktu_akhir)." jam ";
> echo datediff("n",$waktu_awal,$waktu_akhir)." detik ";
>
> nich contoh penggalan program dengan menggunkan php moga membantu
>
> Pada tanggal 06/07/20, kasiman peranginangin <
> [EMAIL PROTECTED] >
> menulis:
> >
> > Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
> > lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan
> ...
> > hari.
> > Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
> > Please help...!!!
> >
> >
> > -
> > Do you Yahoo!?
> > Everyone is raving about the all-new Yahoo! Mail Beta.
> >
> > [Non-text portions of this message have been removed]
> >
> >
> >
>
> --
> "Urip Pisan Jo` Digawe Soro"
> add fs and YmId AmiGelz [at] yahoo [dot] com
> -=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-
>
> [Non-text portions of this message have been removed]
>
>
>
>
>
>
> -
> How low will we go? Check out Yahoo! Messenger's low PC-to-Phone call
> rates.
>
> [Non-text portions of this message have been removed]
>
>  
>



-- 
 "Urip Pisan Jo` Digawe Soro"
 add fs and YmId   AmiGelz [at] yahoo [dot] com
-=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP??

2006-07-19 Terurut Topik kasiman peranginangin
kalau tanggal lahirnya sebelum tanggal 1 Januari 1970 , misalnya ya  tanggal 19 
Juli 1962. dan sistem operasi yang saya gunakan Windows XP,  bisa ndak ya?
  
  --

AmiGelz <[EMAIL PROTECTED]> wrote:  
fungsi
  
  function datediff($per,$d1,$d2) {
  $d = $d2-$d1;
  switch($per) {
  case "": $d/=12;
  case "m": $d*=12*7/365.25;
  case "ww": $d/=7;
  case "d": $d/=24;
  case "h": $d/=60;
  case "n": $d/=60;
  }
  return round($d);
  }
  
  cara manggil :D
  
  $waktu_awal=mktime(0,0,0,11,25,1985);
  $waktu_akhir=mktime(0,0,0,date("m"),date("j"),date("Y"));
  echo datediff("",$waktu_awal,$waktu_akhir)." tahun ";
  echo datediff("m",$waktu_awal,$waktu_akhir)." bulan ";
  echo datediff("ww",$waktu_awal,$waktu_akhir)." minggu ";
  echo datediff("d",$waktu_awal,$waktu_akhir)." hari ";
  echo datediff("h",$waktu_awal,$waktu_akhir)." jam ";
  echo datediff("n",$waktu_awal,$waktu_akhir)." detik ";
  
  nich contoh penggalan program dengan menggunkan php moga membantu
  
  Pada tanggal 06/07/20, kasiman peranginangin <[EMAIL PROTECTED]>
  menulis:
  >
  >   Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
  > lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ...
  > hari.
  > Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
  > Please help...!!!
  >
  >
  > -
  > Do you Yahoo!?
  > Everyone is raving about the all-new Yahoo! Mail Beta.
  >
  > [Non-text portions of this message have been removed]
  >
  >  
  >
  
  -- 
   "Urip Pisan Jo` Digawe Soro"
   add fs and YmId   AmiGelz [at] yahoo [dot] com
  -=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-
  
  [Non-text portions of this message have been removed]
  
  
  



-
How low will we go? Check out Yahoo! Messenger’s low  PC-to-Phone call rates.

[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Tanya PHP??

2006-07-19 Terurut Topik AmiGelz
fungsi

 function datediff($per,$d1,$d2) {
$d = $d2-$d1;
switch($per) {
case "": $d/=12;
case "m": $d*=12*7/365.25;
case "ww": $d/=7;
case "d": $d/=24;
case "h": $d/=60;
case "n": $d/=60;
}
return round($d);
}

cara manggil :D

$waktu_awal=mktime(0,0,0,11,25,1985);
$waktu_akhir=mktime(0,0,0,date("m"),date("j"),date("Y"));
echo datediff("",$waktu_awal,$waktu_akhir)." tahun ";
echo datediff("m",$waktu_awal,$waktu_akhir)." bulan ";
echo datediff("ww",$waktu_awal,$waktu_akhir)." minggu ";
echo datediff("d",$waktu_awal,$waktu_akhir)." hari ";
echo datediff("h",$waktu_awal,$waktu_akhir)." jam ";
echo datediff("n",$waktu_awal,$waktu_akhir)." detik ";

nich contoh penggalan program dengan menggunkan php moga membantu

Pada tanggal 06/07/20, kasiman peranginangin <[EMAIL PROTECTED]>
menulis:
>
>   Bagaimana caranya untuk mengetahui selisih antara dua tanggal? misalnya
> lahir tanggal 17-08-1945 mau tahu umurnya sekarang ... tahun ... bulan ...
> hari.
> Kalau bisa ada rekan-rekan yang bantu beri skripnya pada PHP yah.
> Please help...!!!
>
>
> -
> Do you Yahoo!?
> Everyone is raving about the all-new Yahoo! Mail Beta.
>
> [Non-text portions of this message have been removed]
>
>  
>



-- 
 "Urip Pisan Jo` Digawe Soro"
 add fs and YmId   AmiGelz [at] yahoo [dot] com
-=*=-AmiGelz || NFS || Agen_dosa A.K.A Nurma A K H -=*=-


[Non-text portions of this message have been removed]



-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP

2006-03-23 Terurut Topik ORANGE BEBASE
Dear Dewi Indah

Kalo mau belajar php+mysql, Dewi bisa download dulu
phptriad, di 
http://www.download.com search aja, kalo udah
didownload, nanti akan 
kebentuk icon di menu start.
Trus aktifkan apache servernya + aktifkan mysql-nt.

Kalo mo ngetik scriptnya Dewi bisa pake notepad, atau
mo yang lebih bagus 
lagi pake phpdesigner, download juga di
http://www.download.com

Selamat Mencoba
- Original Message - 
From: "Andriansah" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, March 22, 2006 2:38 PM
Subject: Re: [ITCENTER] Tanya PHP


> On 3/22/06, dewi indah <[EMAIL PROTECTED]> wrote:
>>
>> halo rekan milis semua, saya mo tanya nih
>> gimna sih cara instal php for windows, jadi web
servernya pake IIS trus
>> dimana ya saya bisa download softwarenya dan apakah
hasil download
>> itu  komplit dengan databasenya, databasenya pake
mysql yaa gimna caranya
>> tolong infonya masih awam nih makasih yaa teman2
semua
>
>
>
> lebih gampang lagi donlot xampp, sudah lengkap
dengan apache, mysql, php
>
>
> --
> Andriansah
>
> syukuri aja yg ada...
> nanti yg not really good akan hilang dengan
sendirinya...
>
>
> [Non-text portions of this message have been
removed]
>
>
>
>
>
> -- 
> www.itcenter.or.id - Komunitas Teknologi Informasi
Indonesia
> Info, Gabung, Keluar, Mode Kirim :
[EMAIL PROTECTED]
> :: Hapus bagian yang tidak perlu (footer, dst) saat
reply! ::
> ## Jobs: itcenter.or.id/jobs ## Bursa:
itcenter.or.id/bursa ##
> $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
>
> [@@] Jaket ITCENTER tersedia di
http://shop.itcenter.or.id
>
>
> Yahoo! Groups Links
>
>
>[EMAIL PROTECTED]
>
>
>
>
>
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP

2006-03-22 Terurut Topik RIFKI HERUPRASETYO
pake appserv aja, disitu udah lengkap php, apache, dan mysqlnya. phpMyAdmin 
juga udah disediain, pokoke lengkap.

dewi indah <[EMAIL PROTECTED]> wrote:  halo rekan milis semua, saya mo tanya 
nih 
gimna  sih cara instal php for windows, jadi web servernya pake IIS trus  
dimana ya saya bisa download softwarenya dan apakah hasil download itu  komplit 
dengan databasenya, databasenya pake mysql yaa gimna caranya 
tolong infonya masih awam nih makasih yaa teman2 semua


  
-
Brings words and photos together (easily) with
 PhotoMail  - it's free and works with Yahoo! Mail.

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links



 




Send instant messages to your online friends http://uk.messenger.yahoo.com 

[Non-text portions of this message have been removed]






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] Tanya PHP

2006-03-22 Terurut Topik Andriansah
On 3/22/06, dewi indah <[EMAIL PROTECTED]> wrote:
>
> halo rekan milis semua, saya mo tanya nih
> gimna sih cara instal php for windows, jadi web servernya pake IIS trus
> dimana ya saya bisa download softwarenya dan apakah hasil download
> itu  komplit dengan databasenya, databasenya pake mysql yaa gimna caranya
> tolong infonya masih awam nih makasih yaa teman2 semua



lebih gampang lagi donlot xampp, sudah lengkap dengan apache, mysql, php


--
Andriansah

syukuri aja yg ada...
nanti yg not really good akan hilang dengan sendirinya...


[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] Tanya PHP

2006-03-21 Terurut Topik dhaman
1. download php nya dulu lalu extract ke c:\php atau yg lainnya 
(www.php.net)
2. copy php.ini-dist yang ada di c:\php ke c:\windows atau c:\winnt
3. rename file tersebut jadi php.ini
   - doc_root = "c:\inetpub\wwwroot"
   - extension_dir = "c:\php"
   - extension=php_mysql.dll
4. copy file php5isapi.dll ke c:\windows\system atau 
c:\windows\system32  atau c:\winnt\system  atau c:\winnt\system32
5. nah sekarang coba di restart deh iis nya
6. untuk ngetest


semoga membantu


.


##
CNI Mendapatkan Predikat Superbrands
Satu lagi bukti dedikasi kami pada kualitas dan pelayanan
##
.






-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [ITCENTER] Tanya PHP

2006-03-21 Terurut Topik Denis Arifin
kalo mau make IIS, itu harus ada beberapa software yg didownload yaitu :
1. php (download dari www.php.net)
2. mysql (download dari www.mysql.com)

abis itu untuk install IIS, masuk aja ke add/remove program, trus pilih
windows component, trus centang pada IIS, nanti akan diminta masukin cd
windows.

trus beres deh.

Kalo mau test, klik kanan pada folder tempat web dibuat, kemudian pilih web
sharing, kemudian beri nama deh alamat webnya misal test.

kemudian buka IE, trus ketikan "http://localhost/test/"; beres dah.

Semoga bisa membantu.

Denis Arifin
-
EDP Departement
PT. Anugerah Idealestari
Jl. Pulokambing II Kav II/1 No 20



-Original Message-
From: ITCENTER@yahoogroups.com [mailto:[EMAIL PROTECTED]
Behalf Of dewi indah
Sent: Tuesday, March 21, 2006 9:46 PM
To: ITCENTER@yahoogroups.com
Subject: [ITCENTER] Tanya PHP


halo rekan milis semua, saya mo tanya nih
gimna sih cara instal php for windows, jadi web servernya pake IIS trus
dimana ya saya bisa download softwarenya dan apakah hasil download itu
komplit dengan databasenya, databasenya pake mysql yaa gimna caranya
tolong infonya masih awam nih makasih yaa teman2 semua



-
Brings words and photos together (easily) with
 PhotoMail  - it's free and works with Yahoo! Mail.

[Non-text portions of this message have been removed]





--
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id


Yahoo! Groups Links













-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] tanya php

2006-01-25 Terurut Topik Lirva32
On 1/25/06, bayu <[EMAIL PROTECTED]> wrote:
>
> > dear all,
> > saya mo nanya nih, selain phptriad dan winLamp, app/soft apa y yang
> sudah
> > membundel php,apache, dan mysql jadi satu,
> > klo phptriad  mslhnya kan php,mysqlnya versinya lama, terus kalo pake
> > winlamp cuma bisa dipake di windows NT.gmn??mohon bantuannya y
> >
> > --
> > <>>
>
--
 bisa pake :
 . XAMP  :  http://labyrinth.opweb.nl/xamp
 .WAMP  : http://www.wampserver.com/index.php
 
 
 
 
 .thx
 lirva32:echo|staff
 








-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] tanya php

2006-01-25 Terurut Topik totok
coba ke http://www.appservnetwork.com/ 

On 1/25/06, bayu <[EMAIL PROTECTED]> wrote:
>
> > dear all,
> > saya mo nanya nih, selain phptriad dan winLamp, app/soft apa y yang
> sudah
> > membundel php,apache, dan mysql jadi satu,
> > klo phptriad  mslhnya kan php,mysqlnya versinya lama, terus kalo pake
> > winlamp cuma bisa dipake di windows NT.gmn??mohon bantuannya y
> >
> > --
> > <>>
>
> wampserver http://www.wampserver.com/
> easyphp http://www.easyphp.org/
> apachetriad2 http://apache2triad.net/
> etc..
>
>
> --
> www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia
> Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED]
> :: Hapus bagian yang tidak perlu (footer, dst) saat reply! ::
> ## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
> $$ Iklan/promosi : www.itcenter.or.id/sponsorship $$
>
> [@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
>
>


[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Balasan: Re: [ITCENTER] tanya php

2006-01-25 Terurut Topik irvan 2004
ada software yg praktis : easyphp. menunya bahs prancis tapi udah ada yg buat 
menu yg bahasa inggris

"Mr. pArMin" <[EMAIL PROTECTED]> menulis:  XAMPP boleh tuh di coba ..

On 1/25/06, gefer hasan wrote:
> dear all,
> saya mo nanya nih, selain phptriad dan winLamp, app/soft apa y yang sudah
> membundel php,apache, dan mysql jadi satu,
> klo phptriad mslhnya kan php,mysqlnya versinya lama, terus kalo pake
> winlamp cuma bisa dipake di windows NT.gmn??mohon bantuannya y
>

--
:: pArMin ::


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 


Yahoo! Groups Links









__
Apakah Anda Yahoo!?
Lelah menerima spam?  Surat Yahoo! memiliki perlindungan terbaik terhadap spam  
http://id.mail.yahoo.com 

[Non-text portions of this message have been removed]





-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




Re: [ITCENTER] tanya php

2006-01-24 Terurut Topik bayu
> dear all,
> saya mo nanya nih, selain phptriad dan winLamp, app/soft apa y yang sudah
> membundel php,apache, dan mysql jadi satu,
> klo phptriad  mslhnya kan php,mysqlnya versinya lama, terus kalo pake
> winlamp cuma bisa dipake di windows NT.gmn??mohon bantuannya y
>
> --
> <>>

wampserver http://www.wampserver.com/
easyphp http://www.easyphp.org/
apachetriad2 http://apache2triad.net/
etc..


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





Re: [ITCENTER] tanya php

2006-01-24 Terurut Topik Mr. pArMin
XAMPP boleh tuh di coba ..

On 1/25/06, gefer hasan <[EMAIL PROTECTED]> wrote:
> dear all,
> saya mo nanya nih, selain phptriad dan winLamp, app/soft apa y yang sudah
> membundel php,apache, dan mysql jadi satu,
> klo phptriad  mslhnya kan php,mysqlnya versinya lama, terus kalo pake
> winlamp cuma bisa dipake di windows NT.gmn??mohon bantuannya y
>

--
:: pArMin ::


-- 
www.itcenter.or.id - Komunitas Teknologi Informasi Indonesia 
Info, Gabung, Keluar, Mode Kirim : [EMAIL PROTECTED] 
:: Hapus bagian yang tidak perlu (footer, dst) saat reply! :: 
## Jobs: itcenter.or.id/jobs ## Bursa: itcenter.or.id/bursa ##
$$ Iklan/promosi : www.itcenter.or.id/sponsorship $$

[@@] Jaket ITCENTER tersedia di http://shop.itcenter.or.id 

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ITCENTER/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/