Skip to content

ThirteeNov

My personal blog about coding and internet

Menu
  • About me
  • About Zofia Kreasi
  • Cart
  • Checkout
  • Making an airplane game from scratch in Unity
  • My account
  • Privacy Policy
  • Privacy Policy – zkLeaderboard
  • Sample Page
  • Shop
  • Tutorials on Learning JavaScript
  • ZKAccounts – Privacy Policy
Menu

Category: PHP

Nice and easy PHP Social Sharing Buttons for your site

Posted on August 9, 2020August 10, 2020 by Habibie

Just include this php file then call its function to make social share buttons on any page of your site easily. Watch how to do it in this video: Get the source code used in this video from my GitHub page: https://github.com/habibieamrullah/PHP-Social-Sharing-Buttons Sharing buttons powered by https://sharingbuttons.io/ For making dynamic PHP sharing buttons that you…

Read more

How to detect user’s IP address with PHP?

Posted on August 8, 2020August 8, 2020 by Habibie

Sometimes for security reason we need to detect and capture what is our user’s IP address. To detect client’s IP address we can use this simple PHP script. Watch the video here: Click here if you want to try to get your IP address live from this example: https://thirteenov.ciihuy.com/tutorials/getclientipaddress/

Read more

How to make any url in a string into clickable links with PHP & Linkify

Posted on August 8, 2020August 8, 2020 by Habibie

Let’s say we have a string variable containing article content and there is a url but not in a link format (not in an a href tag, for example). With Linkify function in PHP we can turn that url into a clickable link automatically. This video shows you how to use that function. Get this…

Read more

An easy example of making email based Contact Us page using PHPMailer

Posted on August 4, 2020August 5, 2020 by Habibie

PHP Mailer is a simple email sending PHP class that you can download it from here: https://github.com/PHPMailer/PHPMailer This blog post is showing you an example of a Contact Us page with a simple form, that if you fill the form and hit send button, it will send the form content to your email. You just…

Read more

Lipsum Cakes V3 – Free Cake Shop Online Order Website Form

Posted on August 3, 2020August 4, 2020 by Habibie

Hello every body, Habibie here. in this video i’m going to introduce the the tihrd version of Lipsum Cakes website template. With this website template, you will be able to sell cakes or any similar products. You can simply view cake images, click to choose and click again if you need more than one quantity….

Read more

How to PHP Localize and Translate your Website UI

Posted on July 8, 2020August 5, 2020 by Habibie

How to localize and translate your website UI into many different languages? How to make a language change switch buttons/links? Watch this video I will show you how:

Read more

Delicifood – A free PHP based ecommerce platform

Posted on June 25, 2020June 25, 2020 by Habibie

Delicifood is a free PHP based ecommerce platform that enable you to make a very simple and yet fully functioning ecommere platform, for example a food & beverage marketplace. Features:

Read more

PHP MySQL Travel History Questionnaire during Covid19

Posted on June 22, 2020 by Habibie

This is a simple single page PHP and MySQL based Questionnaire regarding travel history during Covid19. You will see a questionnaire page asking you 5 questions: Your name Phone number Have you been to China in last 2 weeks? Have you travelled out of Singapore in the last 2 weeks? Body temperature When you click…

Read more

Free Open Source Online Quran with Translations

Posted on June 11, 2020August 4, 2020 by Habibie

Online Quran with translation based on HTML5 and PHP. If you have any question, feel free to contact me 😀 It’s optimised for mobile view. Has language change feature, theme selection, and options for changing Arabic and translation text sizes. Available languages are: English, Bahasa Indonesia, Japanese and French

Read more

Lorem Ipsum Cakes V2 – Simple Cake Shop Online Order System

Posted on June 7, 2020June 8, 2020 by Habibie

Lorem Ipsum Cakes V2 is a simple cake shop online order system using HTML5 and PHP. It simply record client’s orders on your website database and your client can simply chat with you by using WhatsApp, either web version on their desktop devices or mobile phones using installed WhatsApp app.

Read more

How to list all files in a directory and read each of them in PHP

Posted on March 8, 2020 by Habibie

This code snippet is useful to me when I need to read all files inside a directory and showing it on web browser in PHP:

Read more

One line PHP code to remove characters except numbers and letters

Posted on February 17, 2020 by Habibie

I found this few lines of PHP script useful to sanitize user input, it removes characters except numbers and letters: Or this one: Original post is here: https://coderwall.com/p/bn47ka/remove-all-characters-except-letters-and-numbers-in-php

Read more

HealthCon Responsive HTML5 Website Template

Posted on February 14, 2020August 4, 2020 by Habibie

A responsive and excellence HTML5 website with slide-able style menu and sub menu feature for both mobile and desktop version. Below image is the desktop version of this website template: You can view it in action in this video: Get this template from this link: https://creativeshop.ciihuy.com/product/healthcon-responsive-html5-website-template/

Read more

How to send POST request to another website from a PHP script

Posted on February 4, 2020 by Habibie

Let’s say we have a website like somewebsite.com and there is an input form, but we don’t want to submit that form from that website, instead we send POST request to that page from another website. Here is a handy PHP script to do so:

Read more

PHP listing files in a directory and renaming them

Posted on January 27, 2020February 3, 2020 by Habibie

I have a tons of files in a directory that has underscore in their names, and I need to rename them by replacing underscore to dash. I wrote this script in PHP and it worked!

Read more

How to resize QR Code image generated by phpqrcode library

Posted on December 13, 2019December 13, 2019 by Habibie

In this tutorial I will show you how to modify the phpqrcode library to generate more bigger and larger QR Code image. By default if we generate a QR Code of short text or string, we will get a small QR Code image approximately less than 100 pixels. But we can multiply by any number…

Read more

Simple and easy PHP and Unity POST and GET http request tutorial

Posted on December 1, 2019August 10, 2020 by Habibie

This tutorial is about simple and easy HTTP POST and GET request from Unity. Watch this video to see how it works: First, take a look this php program, you can test sending POST and GET request directly from web browser if you are running it on your localhost server.

Read more

How to use Facebook Comments plugin dynamically in your PHP websites

Posted on November 23, 2019August 4, 2020 by Habibie

This tutorial in this video showing you how to use Facebook Comments Plugin dynamically on each page of your website without adjusting it one by one on each page with the help of PHP.

Read more

Generating random a mix of random letters and numbers in PHP

Posted on November 11, 2019August 4, 2020 by Habibie

By calling str_shuffle method in PHP, we can generate a random mix of latters and numbers. For example, if we want to fill $bookid string variable with 10 letters and numbers (mixed of them), we can do it this way: And the result is this: nzm5gnde9i You can modify the content of allowed characters and…

Read more

Checking uploaded file extension with PHP before storing it on our server

Posted on November 10, 2019August 4, 2020 by Habibie

We often allow our users to upload files to our server. It is important to limit file extensions that we accept. For example, we need to only accept .pdf and .txt files from our users, we don’t want them to send us any other files instead of pdf and txt. Then this snippet is useful…

Read more

Posts pagination

  • Previous
  • 1
  • 2
  • 3
  • Next
ciihuy2020

Welcome!

  • My YouTube Channel
  • My GitHub Page
  • About me

Categories

  • 3DVista
  • Android
  • Apache
  • C#
  • Cordova
  • Electron & Node JS
  • HTML5, CSS & JavaScript
  • iOS
  • Let's Make Unity Games
  • Misc
  • Photoshop
  • PHP
  • Python
  • Uncategorized
  • Unity
  • WordPress

Recent Posts

  • Hover Reveal script for Unity to show and hide object on mouse hover
  • How to Prevent UI Clicks in Unity from “Bleeding Through” to 3D Objects Behind Them
  • Make objects like wires and cables easily in Unity using Ciihuy Curved Mesh
  • [SOLVED] Can’t Add Custom Domain to Blogger After Losing CNAME Verification
  • iOS App Icon Generator by CiihuyCom
© 2026 ThirteeNov | Powered by Superbs Personal Blog theme