Object Oriented C Programming In PHP With advance query and trapping sql injection

Submitted by michael.galanza on
1. Create Database name OOP 2. Create table about your project 3. include or require the MySqlDb.php to any of your project query 3. Create $Db = new MySqlDb('localhost', 'root', '', 'OOP'); depending on your localhost username and password 4. your automatic query are in delete,save,edit and update are $Db->where('tableid', table subject); $Db->delete('database table'); 5. database example in

Shutdown Manager

Submitted by donbermoy on
We always used our computer system program to shutdwon, log-off, and restart our pc. But here in vb.net we can also do that. Now, let's start this 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.

Number Only in a TextBox

Submitted by donbermoy on
There are many fields in an information that we must only type a number in a textfield or in a textbox such as phone number, zip code, or any fields that must have a number type only. So, now we will begin this filtering a textbox into number only. Now, let's start this 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.

Top Five Best Programming Languages for First-Time Learners

Submitted by blinkremz1 on
A programming site has listed its top five best programming languages for first-time learners following its recently conducted poll survey. According to Lifehacker, the following are the top five best programming languages for the firs-timers whose gearing up to learn on how to code: Python C/C++ Java JavaScript Ruby Based on the survey, Python leads as the most popular particularly for first

Import Database Tables Using PHP/MySQL

Submitted by argie on
This tutorial will teach you on how create a script that restore or import database tables using PHP. The feature of this tutorial is it allows the user to restore or imports database backup without using the phpmyadmin panel. To understand more about this tutorial 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 "tutorials".

Creating Our Form

The code bellow will provide us the form where we can attach our sql file.

How to Create a Guess My Number Game in Python

Submitted by Yorkiebar on
Introduction: This tutorial is on how to make a guess my number game in Python. The Game: This is a simple game where the computer chooses a random number, then the player has a certain amount of guesses to guess the correct number by following the feedback (too high, or too low). The Imports: First we need to import the random module to let the computer choose a random number...

Insert multiple data from your database using While Loop in PHP and MySQL

Submitted by ronard on
Hi sourcecodester, Do you wish to insert multiple data to your database using While Loop? Will PHP and MySQL can do that. Just select the table you want to insert in another table then loop it using "While Loop". And just define a variable you want to insert to another table and call it to your insertion query. Then run it to your web browser. The multiple data will automatically add to your table

Play Music in VB.NET

Submitted by donbermoy on
Music is a sound that is sung by voices or played on musical instruments. I know all of us are music lovers :) In this tutorial, we will create a program that can play a song or a music file. Now, let's start this Font Dialog 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.

Reorder List Items in Vb.net

Submitted by donbermoy on
Hi! this is my another tutorial in vb.net that reorder an item in the listbox into descending order to ascending, or into ascending to descending order; vice versa. Now, let's start this 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. Next, add one TextBox named Texbox1 which serves as your input items in the Listbox.