Posts Tagged ‘PHP’

PHP Login/Register Tutorial – Part 2

PHP Login/Register Tutorial – Part 2, enjoy!

COMMENT RATE SUBSCRIBE!

Duration : 0:9:0

Read the rest of this entry »

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

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: , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Rasmus Lerdorf – Inventor of PHP

Rasmus Lerdorf is the initial creator of the php web programming language in 1993. Rasmus now works for Yahoo! and continues to lead the large open source community around the development and use of the php programming language. Rasmus talks about the history of PHP, some of the more recent work, and looks toward the future of PHP.

Duration : 0:8:46

Read the rest of this entry »

Technorati Tags: , , , ,

PHP Tutorial #1 – Syntax

Remember this video has been uploaded in full HD, 1280X720! If you have a good internet connection please view in HD for better viewing.

This is the first video of many. In this lesson we will show you the very basic of PHP, Syntax.

A short overview about what is talked about in the video:
-PHP code tags, starting and ending a PHP script.
-All commands and lines executed must end in a semi colon ;

Thank you for watching.

P.S: You can now see this tutorial on the XCodec Official gallery, http://gallery.thexcodec.com

Duration : 0:0:39

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: , , , , , , , , , , , , , , , , , , ,

Steps to get free sample codes for IP2Location

A short tutorial provided by IP2Location (http://www.ip2location.com) on how to get the FREE sample codes for using IP2Location databases.

IP2Location provides wide range of cost-effective database packages from DB1 to DB18, each with a different mix of geolocation information, ranging from the common data like Country, Region and City to more advanced information like Connection speed, Area code and Weather station.

This variety of information gives IP2Location the flexibility to meet the needs of all our customers.

To attain customer confidence, IP2Location offers FREE sample codes using PHP, ASP, ASP.NET, C#, VB.NET, ACCESS, MSSQL, MySQL and other languages for developers to evaluate the products before purchase.

Customer can be select the database package from homepage at http://www.ip2location.com, and fill up their Email Address as well as their Name in the ‘Request Free Sample Codes’ form to submit the form.

IP2Location will email the requested sample codes in ZIP file to their email address. The ZIP file contains the Sample Codes in different programming languages, Product Catalog, Product Specification and Sample Database in CVS format.

To request for FREE sample codes, please visit http://www.ip2location.com for more information.

Duration : 0:1:48

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: , , , , , , , , , , , , , , , , , , ,

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: , , , , , , , , , ,