How to Convert SQL Database into Excel File (*.xlxs) in PHP

Submitted by Mr.Niemand03 on
In this tutorial, we will convert sql to excel using PHP. This code will read all data from an SQL table then add it into an excel file using a class called "xlsxwriter.class.php". You can download the class using this link from Github Things to do You have to download and install XAMPP or any local server that run PHP scripts. In my case I used XAMPP as my local server, here's the download link

Simple Online File Archiver with Comment

Submitted by Mr.Niemand03 on
In this tutorial, we will create a Simple Online File Archiver with Comment using PHP. This code can compressed multiple files at the same time and write comments on the archive to mark who is the owner of those files. First thing to do You have to download and install XAMPP or any local server that run PHP scripts. In my case I used XAMPP as my local server, here's the download link for XAMPP

How to Backup MySQL Database using PHP

Submitted by nurhodelta_17 on
This tutorial tackles on how to back up MySQL database using PHP with MySQLi OOP extension. There are several ways on how to backup our MySQL database and if your hosting your site, there are CRON jobs where we can schedule back up of our database. In this tutorial however, we are going to backup our database using PHP.

C# - Uploading Image With SQLite

Submitted by razormist on
Learn on how to create a Uploading Image With SQLite using C#. C# is a general-purpose, object-oriented programming language. C# automatically manages inaccessible object memory using a garbage collector, which eliminates developer concerns and memory leaks. It has a designed for improving productivity in the development of Web applications. It has a friendly environment for all new developers.

How to Create a Text Editor Live Preview

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a simple live preview of a text editor using jquery/javascript with iframe. If your building a CMS site and integrated a function where users can be able to send articles and have a text editor. You can include this live preview to have a better user experience since the page wont reload on preview.

How to Embed Youtube Videos in HTML

Submitted by Mr.Niemand03 on
Step 1: Visit a Youtube video link you want to embed. Step 2: Under the video, click Share. Step 3: Click Embed. Step 4: From the modal box that appears, copy the HTML code Step 5: Paste the code wherever in your blog or website HTML Done Sample Code Here How to Embed Youtube Videos in HTML How to Embed Youtube Videos in HTML Note: &nbsp&nbsp Video Author: &nbsp&nbsp&nbsphttps://www.youtube.com

How to Dynamically Change Meta Tags in every Pages using PHP

Submitted by nurhodelta_17 on
This tutorial tackles on how to dynamically change meta tags in every pages in PHP. Meta tags provides metadata about the HTML document. It is usually used to boosts SEO of your site. Meta tags are placed in the header tag of your page. So, if you are templating your pages, it would be hard to make the metadata of one page unique with the other page.

How to Pretty Print PHP Array

Submitted by nurhodelta_17 on
This tutorial tackles on how to beautifully display PHP array. In manipulating array with PHP, often times we use print_r() or var_dump() function to display data in an array but the presentation of data in this functions is not usually eye-friendly for developers. This tutorial will provide you a simple solution on how to prettify your PHP array display.