logo
Sep
2
Marijan Šuflaj

PHP Walker Class

In this tutorial we will create walker class. This class will load results by executing given SQL query and then create multidimensional array that will have entries in right position. Let’s say that you have this data in your database.

Read the rest

Aug
18
Marijan Šuflaj

Permissions Using Bitwise

This will be a quick tutorial on how to use bitwise operators in PHP to create permissions control. Some of next tutorials will cover how to implement it in application and how to use database to store permissions for users. Now some basics.

Read the rest

Aug
11
Marijan Šuflaj

Sql Queries Cache

This will be intermediate tutorial about caching SQL query results. We will use interface to make support for extending available ways of caching your results. We will create cache that will use MySQL database and flat text files to store cache.

Read the rest

Jul
16
Marijan Šuflaj

Advanced PHP User Login

If you ever had a bank account you are familiar with TAN-s (Transaction Authentication Number). What we will do today, is create user login using that kind of system. This will be just simple overview how to do it so you can create more complex and secure login systems. You need to have basic knowledge about classes, HTML, CSS and AJAX because I will not explain in depth what I do.

Read the rest

Jun
29
Marijan Šuflaj

jQuery AJAX tutorial

This tutorial cover some of basics about jQuery and AJAX. We will build AJAX form submit where we will have 1 field. If we lave it blank and submit our form, we will get error message. If we fill it with some data we will get that text. We will also add some loader image.

Read the rest

Jun
24
Marijan Šuflaj

PHP Antispam

Today web programmers have big problems with spam comments. There are a lot of tutorials about captchas and how to implement them, so I will not cover it here (I can do it f next tutorial if you wish). Anyway, I will show you some other methods that are good. Note that none of them is not 100% secure.

Read the rest

Jun
5
Marijan Šuflaj

PHP Disk Space Explorer Class

In this tutorial I’ll show you how to create a script that will create graphs. Those graphs will contain information about your files, their extensions and their size. We will use Google and their API for creating graphs. So lets start.

Read the rest

May
8
Marijan Šuflaj

Search class

I’ve made a class that will search files for a given word/words. All you have to do is set parent folder, query and you’ll get results.
Script uses objects and I plan to make it better and more features. For now it’s very simple.

Read the rest

Apr
26
Marijan Šuflaj

Adjustable visit counter

Here’s a simple tutorial on how to create a simple and adjustable visits counter. Our counter will use MySQL database to store information about visitors. If someone wants I can make a small tutorial on how to rebuild it to use XML instead of MySQL database.

Read the rest

Apr
19
Marijan Šuflaj

Multi-query function

I needed a function that will take a string or a file and then split it into small SQL queries. I found few functions on Internet but they did not work as i expected. They all had following principle of work:

  1. Take a string
  2. Use function explode and “;” as a delimiter to create an array
  3. Execute each row in array

Read the rest

Previous Entries Next Entries

logo
Powered by Wordpress | Designed by Elegant Themes | CopyRight ©2012 php4every1.com