Tutorials

Creating a Simple GUI in Python

Submitted by Yorkiebar on
Introduction: This tutorial is going to be on how to create a GUI in Python using Tkinter. Tkinter: Tkinter is a basic package to give your projects a simple GUI with the essential GUI elements such as textboxes, checkboxes, buttons and more. Our Program: Our program is going to be a simple program where the user enters text in to a textbox, then clicks a button to get it output to the console.

Count The Number Of Rows In The Database Table Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how to count the number of rows in your database table using PHP PDO query. to start with, follow the steps bellow.

Creating Our Database

First we are going to create our database which stores our data. To create a database: 1. Open phpmyadmin 2. Then create database and name it as "tutorial". 3.

Forum Tutorial - MOTD and Banning Messages

Submitted by Yorkiebar on
Introduction: This tutorial is going to be covering message of the days and banning messages. Database Setup: First we are going to set the database up ready for storing our information, create a new table named "reasons", then give it the following columns of structure: id - INT - 5 Length - Primary Key - Auto Increment (AI/A_I) use - VARCHAR - 255 Length message - VARCHAR - 255 Length additional - VARCHAR - 255 Length We are going to make the use value "motd" for Message of the Day, or "ban" for the banning message.

Spelling Checker

Submitted by donbermoy on
Hi! this is my other tutorial for VB.NET that is an ideal in a program that will check if the spelling is correct or wrong. Now, let's start this spelling checker tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Check Valid or Invalid URL in VB.NET

Submitted by donbermoy on
A URL is the address of a specific Web site or file on the Internet. It cannot have spaces or certain other characters and uses forward slashes to denote different directories. Some examples of URLs are http://www.sourcecodester.com/, http://google.com/, etc. Now, let's start this validating a URL tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Display Text File Content In The Page Using PHP

Submitted by argie on
This is a continuation of previous tutorial on Save Data To Text File Using PHP. This tutorial will teach you on how to display text file content in our page using PHP. The feature of this program is it allows you to echo or output all the save in our text file. Follow the details bellow on how to this code.

Creating Our Script that Display text file Content

The code bellow includes the link source of our text file. I used nl2br and file_get_contents to display the text file contents.

Sending E-mail with Attachment

Submitted by donbermoy on
Last month, I had lectured on how to make a program that can send an e-mail using visual basic.net. Now, we will create a program that can send also e-mails but has an attachment. For this tutorial we will use the System.Net.Mail namespace as it contains classes used for sending e-mails to a Simple Mail Transfer Protocol (SMTP) server for delivery. Now, let's start this sending an e-mail with attachment tutorial! 1.

Forum Tutorial - User Levels #3 - Admin Privileges, Banning Users & Logging Out

Submitted by Yorkiebar on
Introduction: This tutorial is the third and final episode to the User Levels section of my Forum Creation Tutorial series. In this part, we are going to be adding banning functionality and giving the admins their privileges. Admin Privileges: This part is essentially the same as the moderator privileges part found the previous tutorial.