Threads

Creating Threads in VB.NET

Submitted by donbermoy on
Today in VB.NET, I will teach you how to create threads. We all know that a thread is a basic processing unit in our computer to which an operating system allocates processor time, and more than one thread can be executing code inside a process. Thus, threads have priority. It is just like a racing program. Now, let's start this tutorial! 1.

Forum Tutorial - Deleting Posts

Submitted by Yorkiebar on
Introduction: This tutorial is on how to add the ability for a user to delete their posts. The Theory: We could add a user panel where it lists all the users posts along with options to delete them, but instead we are going to add a delete option adjacent to the post itself to save space - plus I'm planning on making an admin panel tutorial soon. The PHP: So in the part of the PHP where we actually output each reply to a thread, we want to check if the logged in users' username held in the session variable is equal to the author of the post,

PHP/MySQLi Creating a Forum - Part 1 - Database and Creating Threads

Submitted by Yorkiebar on
Introduction: This tutorial will be starting my series of creating a forum in PHP/MySQLi/HTML. As this is the first part, we will be; Creating the database. Making a create thread page. Pre-creation: First you will need a host for your PHP, either a web host or localhost is fine but you will need PHP and MySQL(i) capabilities. Also, this will not be covering creating users, or styling the pages.