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

Silly PHP Number Encoder and Decoder Program

Posted on July 16, 2019August 4, 2020 by Habibie

Imagine you are creating a PHP program and you can pass some number parameter in url to retrieve content from your server. Then maybe you are thinking if you let people seeing those numbers in their url, they can change that number to any number to retrieve another content. This program can prevent that. Instead…

Read more

Very Easy and Simple PHP Login and Logout Tutorial

Posted on January 4, 2019August 4, 2020 by Habibie

Login and Logout is a must have feature if you are creating a website. In PHP, I can show you the basic method and mechanism of Login and Logout without any database, at this point. Watch the video tutorial here:

Read more

Basic Unity and Client-Server Request-Response with PHP

Posted on December 31, 2018August 4, 2020 by Habibie

In order to make our Unity game connected to the online world, it must be able to send requests to and get responses from our server. In this tutorial you will see the basic way to make our game able to communicate to PHP server side script.

Read more

Simple PHP read and write to a text file

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

This code snippet reads a text file that if it is not existed it will create one with some text in it. Next time this code is executed, if the file existed, PHP echoes the content of the file. <?php $settingfile = “settings.txt”; $filelink = fopen($settingfile, “r”); $filecontent = fread($filelink, filesize($settingfile)); echo $filecontent; fclose($filelink); $newContents…

Read more

PHP & MySQL useful snippets

Posted on May 15, 2018March 23, 2022 by Habibie

For us, working with database in web development is a mandatory task. Here in this post I’m going to list, as much as I know, PHP & MySQL snippets that I frequently use.

Read more

Inserting Arabic text with PHP into MySQL Database

Posted on May 14, 2018August 4, 2020 by Habibie

We need to set the encoding of texts we store into database to UTF-8 if we work with Arabic texts. Otherwise, Arabic texts appear like ?????????? in our database.

Read more

Very easy and simple .htaccess & PHP tutorial

Posted on May 11, 2018August 4, 2020 by Habibie

If you work with PHP, you notice that this URL: http://yoursite.com/index.php?post=2 is not pretty at all. There is term “Pretty URL” and a lot of tutorials how to make your URL prettier. In this post I’m going to share a few line of .htaccess codes to make your URL more prettier.

Read more

Pick an Image from Android device and upload it to server using PHP

Posted on April 25, 2018August 4, 2020 by Habibie

To upload an image from Android device to online server using PHP, first we need to create a PHP script to handle “post” request and store the image to a folder. So write this simple script on your server:

Read more

.htaccess tutorial : Removing .php extension

Posted on February 22, 2018August 4, 2020 by Habibie

If you have a page with .php extension and you don’t want to show that extension in page’s url in address bar, you will need an .htaccess file.

Read more

A useful PHP function to use Google reCAPTCHA

Posted on February 20, 2018August 4, 2020 by Habibie

This one php function snippet can return true or false value after user submitted a form with Google reCAPTCHA in it.

Read more

PHP useful snippets

Posted on February 20, 2018August 4, 2020 by Habibie

This page is dedicated for a bunch of PHP useful snippets and codes that we often use it in web development.

Read more

Posts pagination

  • Previous
  • 1
  • 2
  • 3
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