Rabu, 03 November 2010

skrip timer

after we give an example calendar php script, then we can make a timer using php which we paste on our site, so please write the php code below and run it with your php program

calender php

in the previous article we discussed how to calculate the difference in dates with php, here is a php script to create a calendar. please copi paste the code below in your php program

Minggu, 10 Oktober 2010

Menghitung Selisih tanggal dengan php bagian 2

Menghitung selisih tanggal bagian ke 2, setalah kemarin membahas menghitung selisih tanggal dengan php bagian pertama, kini kita akan memberi contoh script php yang lain untuk menghitung selisih tanggal

<html>
<head>
<title>Date and Time PHP</title>
</head>

Menghitung Selisih tanggal dengan php

 Sebelumnya kita membahas  menghitung umur dengan script php , untuk kali ini kita akan membuat contoh fungsi php untuk menghitung selisih tanggal dengan php
<html>
<head>
<title>Date and Time PHP</title>

Menghitung Umur dengan script php

 bahasa pemograman php banyak fungsinya diantarany bisa dibuat fungsi untuk menghitung umur seseorang, berikut source code untuk menghitung umur seseorang...
<html>
<head>
<title>Hitung Umur</title>

Kamis, 07 Oktober 2010

Export Mysql to excel

 Setelah contoh eksport table mysql ke excel, ini ada contoh eksport table mysql keword, silahkan copy paste code ini ke program php anda..
<?php
$konek= mysql_connect("localhost","root","root");
mysql_select_db("karyawan");

Export Mysql to excel

mengekspor data dari database mysql ke  microsoft excel menggunakan script php, silahkn copy pastekan kode di bawah ini kemudian jalankan dengan pogram php anda
<?php
mysql_connect("localhost","root","root");
mysql_select_db("Karyawan");
$qry_data=mysql_query("SELECT * FROM pribadi ORDER BY nip");