Skip to main content

Mencetak SK SKS dengan Spesifikasi Tertentu

SKS Rekap ditambahkan kolom cetak:

/* INI UNTUK MENAMPILKAN CETAK SK SKS */
echo "
<a href=

'excel_sks_x/cetak_sks.php?kd_dosen=" . $row[1]. "
 &FE=" . $row[3]. "&FH=" . $row[4]. "&FTSP=" . $row[5]. "&FTI=" . $row[6]. "&FMIPA=" . $row[7]. "&FIAI=" . $row[8]. "&FPSB=" . $row[9]. "&FK=" . $row[10]. "&D3K=" . $row[11]. "
'


class='btn btn-small btn-lg'>Cetak</a></center></td>";

Sementara cetak_sks, di config ditambah:

//config
$judul='SURAT KEPUTUSAN REKTOR';
$nomor_sk_rektor ='553';
//config
$tahun_semester = '20161';
$kode_dosen = $_GET['kd_dosen'];
$semester = 'GANJIL';
$tahun_akademik = '2016/2017';
$tanggal_rapat_bidang_1 = '2016/08/16';

//membuat SQL nomor surat fakultas
$sks_FE = $_GET['FE'];

if ($_GET['FH'] <= 1) {
  $sql_FH = "";
} else {
  $sql_FH = "AND surat_dekan_fakultas LIKE '%Fakultas Hukum%'";
}

if ($_GET['FK'] <= 1) {
  $sql_FK = "";
} else {
  $sql_FK = "AND surat_dekan_fakultas LIKE '%Fakultas Kedokteran%'";
}

if ($_GET['FIAI'] <= 1) {
  $sql_FIAI = "";
} else {
  $sql_FIAI = "AND surat_dekan_fakultas LIKE '%Fakultas Ilmu Agama Islam%'";
}

if ($_GET['FTI'] <= 1) {
  $sql_FTI = "";
} else {
  $sql_FTI = "AND surat_dekan_fakultas LIKE '%Fakultas Teknologi Industri%'";
}

if ($_GET['FTSP'] <= 1) {
  $sql_FTSP = "";
} else {
  $sql_FTSP = "AND surat_dekan_fakultas LIKE '%Fakultas Teknik Sipil dan Perencanaan%'";
}

if ($_GET['FMIPA'] <= 1) {
  $sql_FMIPA = "";
} else {
  $sql_FMIPA = "AND surat_dekan_fakultas LIKE '%Fakultas MIPA%'";
}

if ($_GET['FPSB'] <= 1) {
  $sql_FPSB = "";
} else {
  $sql_FPSB = "AND surat_dekan_fakultas LIKE '%Fakultas Psikologi dan Ilmu Sosial Budaya%'";
}

if ($_GET['FE'] <= 1) {
  $sql_FE = "";
} else {
  $sql_FE = "AND surat_dekan_fakultas LIKE '%Fakultas Ekonomi%'";
}

if ($_GET['D3K'] <= 1) {
  $sql_FMIPA = "";
} else {
  $sql_FMIPA = "AND surat_dekan_fakultas LIKE '%Fakultas MIPA%'";
}

$query_surat_dekan = "SELECT
surat_dekan_fakultas, surat_dekan_nomor, surat_dekan_tanggal
FROM
surat_dekan
WHERE
surat_dekan_thsms ='".$tahun_semester."'

".$sql_FH ." ".$sql_FK ."  ".$sql_FIAI ." ".$sql_FE ." ".$sql_FMIPA ." ".$sql_FTI ." ".$sql_FTSP ." ".$sql_FPSB ."
";

//merubah nomor surat
//rubah tanggal ke tahun ----

Comments

Popular posts from this blog

Menggenerate nomor id

<?php //config $database = "dopo"; $tabel = "po"; $kolom_generate ="id"; $kolom_referensi = "id"; /* Database connection start */ $servername = "localhost"; $username = "root"; $password = ""; $dbname = $database; $mysqli = mysqli_connect($servername, $username, $password, $dbname) or die("Connection failed: " . mysqli_connect_error()); $q1 = "select * from $tabel order by $kolom_referensi DESC"; /* Database connection end */ echo '<table>'; // connect to the database // number of results to show per page $per_page = 10000; // figure out the total pages in the database if ($result = $mysqli->query($q1)) { if ($result->num_rows != 0) { $total_results = $result->num_rows; // ceil() returns the next highest integer value by rounding up value if necessary $total_pages = ceil($total_results / $per_page); // check if the 'page' variab...

Hack File .xlsb

For first you must create a backup copy of your Workbook!!! Then you have to rename the XLSB file with ZIP extension. Test.XLSB => Test.ZIP             Opening your ZIP file using a compression software (e.g. WinRar) I can see the content of the file, structured in folders Inside the folder xl you can find a binary file named vbaProject.bin. Extract it on your desktop and edit it using a text editor. In my case I used Notepad++. Using the Find function of your editor, you must search the text DPB And replace the DPB string with DPx Then save the vbaProject.bin and replace this file inside the .ZIP File, renaming then .ZIP file in XLSB. Reopening the XLSB file using Excel, you will get an error message: you have to answer Yes to this error message. Then  Save , Close and Reopen your XLSB file. Now, if you go to VBA Editor (ALT + F11), you ca...

Instal font baru di FPDF.

1. buka url www.fpdf.org/makefont 2. pilih ttf yang akan dimasukkan. sebaiknya pindahkan file ttf dari c:/windows/font ke folder lain. karena C: adalah windows. 3. Upload dan generate. 4. Donwload nama font.php dan font.z copykan ke folder fpdf/font. <?php require( 'fpdf.php' ); $pdf = new FPDF (); $pdf -> AddFont ( 'Calligrapher' , '' , 'calligra.php' ); $pdf -> AddPage (); $pdf -> SetFont ( 'Calligrapher' , '' , 35 ); $pdf -> Write ( 10 , 'Enjoy new fonts with FPDF!' ); $pdf -> Output (); ?>