Showing posts with label php. Show all posts
Showing posts with label php. Show all posts

php paypal Integration

Here is the code that would help you to implement paypal in your php website.It is a simple code that you could use in your site and make a paypal run shopping cart easily. [...]

Pagination using Zend_Paginator

Any web application that retrieves large amounts of data for display is bound to have the need to split that data over several pages. Developing the code to do this from scratch is not trivial, so it is extremely useful that the Zend Framework has the Zend_Paginator module, which assists with this task. [...]

Simple validation functions using php and regex

In this post I provide you with php functions that validates username,password,first name,lastname and email.name_validate() is used to validate first name and last name,email_validate() to validate email,username_validate() to validate username and password_validate() to validate password. [...]

Easy to use php captcha

Here I am posting code of an easy to use and customizable php captcha code.You can change the font and number of characters easily by changing to lines of code.If you want to change the color you can also do that.Here is the code. [...]

Simple pagination script in php

Here is a simple php code to show pagination in your website.We just have to include the class file and call the methods in the class to implement the pagination.Implementation is shown below. [...]

php walkthrough part-2

This article covers variables,typecasting and various types of operators in php.
A variable’s type refers to the kind of data that is stored in it. [...]

php walkthrough part-1

php or hypertext preprocessor is a server-side scripting language.While we code a website we use two types of languages they are client side and server side scripts.HTML,javascript etc are examples of client side scripts.php,asp,jsp etc. [...]