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

Simple HTML and PHP program to submit a blog post to Google’s Blogger using its API

Posted on March 20, 2025 by Habibie

Here’s an HTML + PHP implementation to submit a blog post to Blogger using the Google Blogger API. You’ll need: Steps: index.html (Front-end Form) <!DOCTYPE html><html lang=”en”><head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Blogger Post Submission</title></head><body> <h2>Submit a Blog Post</h2> <form action=”post.php” method=”post”> <label>Title:</label><br> <input type=”text” name=”title” required><br><br> <label>Content:</label><br> <textarea name=”content” rows=”5″ required></textarea><br><br> <button type=”submit”>Submit…

Read more

Make your own WiFi file transfer system – Simple HTML and PHP local file upload script

Posted on August 1, 2023August 1, 2023 by Habibie

Let’s say we have our local webserver, in my case I use XAMPP so I can have a local web in my localhost. Then, by accessing this local web page over wifi from my mobile phone web browser, I can upload some files from my phone to the local web server. This way I can…

Read more

PHP JSON to Unity C# and Vice Versa

Posted on February 8, 2022February 8, 2022 by Habibie

So, you have a backend script in PHP that returns JSON string and you want to parse that data from your Unity game. What would you do?Based on my experience, here is how I do it. PHP Let’s say I have a PHP script (index.php) like this: And that php script is placed somewhere on…

Read more

Some handy PHP functions to create database table and add a column to it easily

Posted on March 8, 2021March 8, 2021 by Habibie

I personally really like to do “make a table if not exists” and “add a column if not exists” to mysql database when working with PHP. By doing that I don’t have to manually create table and add column before populating it with data from my website. That’s why I’ve made this two functions to…

Read more

How to access your localhost website running with XAMPP from another devices (like Android phone)

Posted on February 16, 2021March 1, 2021 by Habibie

Hi there, I know you often develop an online websites on your local environment using local webserver such as XAMPP before you deploy it on real web server online. Sometimes you need to access your local website that is running on localhost for example in this link: http://localhost/yourwebsite from your mobile phone. To do so,…

Read more

How to develop a WordPress plugin : Very Simple Way

Posted on February 15, 2021February 15, 2021 by Habibie

Basically making a WordPress plugin is very easy. If you know the basic, you can make it super complicated, depending on what you want to achieve. First Step: Make the directory and plugin file To make a plugin, simply create a directory inside wp-content->plugins folder of your WordPress installation directory. Then inside that directory, create…

Read more

How to retrieve current database name, user and password of a WordPress site

Posted on February 15, 2021February 15, 2021 by Habibie

When you are working on WordPress development (theme deelopment or plugin development), probably you will need to retrieve current website database name, database user and password. To get those information you can write these lines on your theme/plugin: The last three lines will echo the database name, username and password. Hope that’s helpful.

Read more

How to make your own online file storage with this simple PHP program

Posted on November 7, 2020November 7, 2020 by Habibie

This PHP program you can use it to upload your personal files to your website directory so you can access them anywhere. By default username and password are admin and admin, you can change them by editing index.php file. To get the source code, go to my GitHub link here: https://github.com/habibieamrullah/SuperSimplePHPFileStorageAndUploader Watch the demo video…

Read more

PHP File Downloader

Posted on November 5, 2020November 8, 2020 by Habibie

It is a simple PHP program to download any file from URL to your server Let’s say we have two websites, the old one has some files that we need to move them or copy them to the second website. Obviously we can download those files from 1st website and upload them to 2nd website….

Read more

How to get the size of a directory in PHP

Posted on November 1, 2020November 1, 2020 by Habibie

Sometimes we need to know how much is the size of a directory including files inside it in PHP. Here is a nice simple PHP function to do so. Just call the function and it takes one parameter which is directory location. For example we can use it like:

Read more

Simple PHP function to convert numbers in bytes to nice kb, mb, gb etc…

Posted on November 1, 2020November 1, 2020 by Habibie

Hi, this is a nice function maybe useful for your coding need in PHP. This function will convert any numbers in bytes to a nice format like kb, mb, gb and so on. Here we go:

Read more

WhatsUp Online Shop – A PHP, MySQL and WhatsApp based online store CMS for free

Posted on October 19, 2020February 22, 2021 by Habibie

This tutorial teaches you how to make an online shop that works with WhatsApp for free without using WordPress or Joomla CMS. This PHP software is a lightweight and simple CMS system that allows you to post products with pictures, description, pricing, quantity and options. It has easy to use Shopping cart, add to cart…

Read more

How to use array and object-array in PHP

Posted on October 16, 2020October 16, 2020 by Habibie

There is Array in PHP, and there is also object. We can simply make array that each member contains a value such as string or integer or we can also store object as the value of each array member. This is the example that I experimented with: Then the output will be this:

Read more

How to make Unity & PHP Login Logout and Register

Posted on October 16, 2020November 10, 2020 by Habibie

Hello guys! Watch this series of my videos to see how we can make Unity login, logout and register easily: And here are the code I wrote: First, config.php file Then the index.php backend file And the last file is UnityLoginLogoutRegister.cs file In case you have problem seeing above scripts, check out this github link:…

Read more

How to make PHP based cooldown button

Posted on October 3, 2020October 3, 2020 by Habibie

This cooldown button program detects is the current visitor already visited the website or not, if he/she visited already it checks when is that, and then decide does he/she can click the cooldown button again or not. Here is the code, a bit messy:

Read more

How to read and write file in PHP

Posted on October 3, 2020October 3, 2020 by Habibie

My previous post shows you how to read a file and retrieve its content in PHP. This one, you will see how to read file and also write to a file with easy: Here is the code:

Read more

How to read a file in PHP

Posted on October 3, 2020October 3, 2020 by Habibie

This simple script can be used to read a file and displaying it contents into a web browser. Watch the video here:

Read more

How to make Videos Website with Ciihuy Online Videos CMS

Posted on August 24, 2020August 24, 2020 by Habibie

This is a PHP based online videos website content management system. Features included: Post publishing Video file upload Video thumbnail image upload Category management Search entire content Custom logo, color and icon change ability And so on… Watch this video to see how to set it up:

Read more

How to make an Online Listing Directory Website with Delicifood 2

Posted on August 23, 2020August 24, 2020 by Habibie

Delicifood is a free PHP based ecommerce platform or online listing website system that enable you to make a very simple and yet fully functioning ecommere platform, for example a food & beverage marketplace, electronics, property and so on. Features: User login & registration Add a product with basic information, including a photo Edit and…

Read more

Upload and resize image with PHP before storing in upload folder

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

We can not allow users to upload any files and any images to our server, we need to make rule, for example we don’t allow them to upload an image bigger than 1mb/2mb or image that its width is more than 512px. Here with this script we can prevent users to upload excessive big files…

Read more

Posts pagination

  • 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
© 2025 ThirteeNov | Powered by Superbs Personal Blog theme