jQuery AJAX Tutorial Pt2

Heres Part 2 of the jQuery AJAX login tutorial. If you haven’t already, i suggest you read part 1 located here.
We are going to start writing the PHP code to process the form. This is fairly basic stuff, using $_POST to get the values from the form, then checking them against pre-assigned values, if they [...]

Filed under: Uncategorized, ajax, code, jquery, php, tutorial, , ,

jQuery AJAX Login Series Pt1

Heyo. This is going to be the first of 4 tutorials on making a jQuery powered AJAX login system with a PHP backend. The series of tutorials will go like so.

Plan, code the form (This tutorial)
Code the PHP backend, make it work
Code the AJAX, implement it.
Tidy it up, make it look snazzy

Ok then. So [...]

Filed under: ajax, jquery, php, tutorial, , , ,

PHP-GTK 2

Im a big Fan of PHP and one day i wanted to make a desktop application that could pull down posts and private messages from one of my forums. I didn’t want to learn a whole new language, just code the small application so i dismissed C, and looked at Python. I saw there was [...]

Filed under: code, php-gtk, tutorial, ,

Manipulation in jQuery

So far you should have read/watched:

Basics of jQuery and Slides
Using Selectors to Select HTML Elements in jQuery

So you know the very basics of jQuery, and multiple ways to select the HTML element that you want to manipulate. In this tutorial i’ll show you how to manipulate that element after you have selected it; changing the [...]

Filed under: jquery, tutorial, ,

Selectors in jQuery

In this tutorial i’ll go over some of the frequently used Selectors and show you how to use them. Most of jQuery’s manipulations revolve around selectors, so it’s a vital skill to know.

<table class="holder" border="1">

<tbody>

<tr>

<td id="1">One</td>

<td id="2">Two</td>

<td id="3">Three</td>

<td id="4">Four</td>

<td id="5">Five</td>

</tr>

</tbody></table>

So.. we want to select the first td. We do this by first selecting all the [...]

Filed under: Uncategorized, jquery, tutorial, ,