Posts Tagged ‘tutorial’

PHP Tutorials: Register & Login: User registration (Part 4)

Part of the ‘Register & Login’ Project from PHP Academy. This tutorials walks you through registering a user to allow them to log in to your site.

Duration : 0:9:55

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , , , , , , ,

PHP Login/Register Tutorial – Part 1

PHP Login/Register Tutorial – Part 1, enjoy!

COMMENT RATE SUBSCRIBE!

Duration : 0:6:36

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

PHP Tutorials: Creating a Guestbook (Part 2)

Create your own guestbook using PHP and a MySQL database.

Duration : 0:10:0

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , , , , ,

NinjaTrader Debugging with Visual Studio 2008 Tutorial

NinjaTrader Debugging with Visual Studio 2008 Tutorial.

NinjaTraderIndicators.Blogspot.com

You need to use a professional addition of Visual Studio or if you use the Express edition you will need to follow the steps outlined here-

www.ninjatrader-support2.com/vb/showthread.php?t=15671&highlight=visual+studio

Step 1- Enable Debugging in NT
Step 2- Bring up a chart and apply the indicators and strategies you want to debug
Step 3- Open Visual Studio (2005 or 2008 Professional Edition)
Step 4- Go to “Tools” and select attach to process and select NinjaTrader.exe (the title should be a chart- ie ES 5min)
Step 5- In Visual Studio open file and go to your ninjatrader directory and select the “.cs” files you want to debug.
Step 6- Add Break points on your selected file (you must add breakpoints in order to debug)
Step 7- Go to your open NT chart and right click and select “reload ninjascript”
Step 8- Visual studio should now pop up going from “running” to debugging” mode and should be focused on your first breakpoint.
Step 9- Add watch points and press F5 to step through.

Remember when debugging that you need to have 1 chart up with the indicators and strategies you want applied to the chart and the debugger starts stepping through at the very first bar on the chart (not the last bar). It is helpful to “add watch” on selected “indicators” and “time” when debugging.

Duration : 0:7:3

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , ,

PHP tutorial Make your own hit counter easy

Here’s a (NoobFriendly) tutorial on how to make your own hit counter in PHP. im using wampserver, and for the beginners it may be hard if you are using another program.
Thats why im giving you the directlink to download it:

http://www.wampserver.com/dl.php

—–
Here is the code for the index.php file:
//function 4 the counter
$myFile = “number.txt”;
$fh = fopen($myFile, ‘r’);
$number = fread($fh, 10);
fclose($fh);
$number++;
$fo = fopen($myFile, ‘w’);
fwrite($fo, $number);
fclose($fo);
$fh = fopen($myFile, ‘r’);
$number = fread($fh, 10);
fclose($fh);
—-
and in the “number.txt” file next to index, there must be a “0″ (zero) first. otherwise the fread() function will lag.

Duration : 0:1:51

Read the rest of this entry »

Technorati Tags: , , , , , ,

PHP Tutorials: Dynamic pages (Update)

An update to my Dynamic pages tutorial, showing how to include sub sections (as folders) in the GET variable in your URL bar. This helps create a better design for your directory structure.

Duration : 0:6:46

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , , , , ,

HTML Editing & Programming Tutorial -9- Forms + New Channel Info

Hey guys this is the 8th tutorials and this gets more advanced and it teaches about Forms and Form input data. Also check out my new Channel That will deal with all kinds of tutorials like PHP more CMD C++ and more. But CS3Tutorials001 will still be doing videos and posting and etc.
New Channel: http://www.youtube.com/TutorialsStudio

Twitter:http://www.twitter.com/CS3Tutorials001

Duration : 0:8:46

Read the rest of this entry »

Technorati Tags: , , , , , , , ,

Email Bomb Tutorial

Want to email bomb someone without any kind of keylogged program or other hassle’s? We are going to use http://000webhost.com and a simple PHP Script to bomb your enemy’s in this tutorial.

Watch the video to learn how to bomb someone’s email with just this PHP Script:

http://pastebin.com/f709a06c6

Duration : 0:9:52

Read the rest of this entry »

Technorati Tags: , , , , , , , , , ,

PHP Tutorials: MD5 Encryption

Learn how to encrypt passwords to a MD5 hash, securing against your plan text being read by unwanted eyes.

Duration : 0:9:34

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , , , , , ,

Javascript Tutorial – 5 – Prompt

visit www.thenewboston.com for all my tutorials!

Duration : 0:4:52

Read the rest of this entry »

Technorati Tags: , , , , , , , , , , , , , ,