-
16 Nov
Submit Checkbox values using javascript in form
We can submit checkbox values using javascript into form. Lets see how we can do it.
- Category :
- PHP
-
09 Nov
Upload image without refresh or post form in php
We can upload file or image in php using jQuery. Here you can see image uploading by jQuery library. Even you can upload image as well video file, audio file ….etc
- Category :
- PHP
-
26 Oct
How to URL Rewriting with .htaccess File
In this post, URL Rewriting is help to search page ranking and also looks like neat on the browser address bar. It’s called Friendly URL.
- Category :
- PHP
-
02 Oct
How we can call store procedure in PHP ?
Store Procedure is used for improve web application and reduse database request traffic on server.following way we can implement Store procedure and call it from PHP.
- Category :
- PHP
-
11 Sep
How to make form in ZEND Framework
Anyone can create form in Zend framework by following steps Zend Framework follow as MVC Framework (MODEL-VIEW-CONTROLLER) . So need to create three folder as per MVC structure
- Category :
- PHP
-
10 Aug
Create product thumbnail image from admin side in oscommerce
All online shop require product image in various size. In oscommerce we can easily create thumbnail image by following custom function. For the create thumbnail image PHP GD library must be enable to your web server. make it sure before use this function to your oscommerce based store.
- Category :
- PHP
-
24 Jul
Useful functions that are used to implement wordpress theme
get_bloginfo(‘home’) It retrieves the home URL for the current site. bloginfo(‘description’) Displays the “Tagline” set in Setting >General . This data is retrieved from the “blogdescription” record in the wp_options table. bloginfo(‘name’) Displays the “Site Title” set in Setting >General. This data is retrieved from the “blogname” record in the wp_options table.
bloginfo(‘template_directory’)
Displays URL of the active theme’s directory. -
22 Jul
Some useful Magic methods of php
The “magic” methods are ones with special names, starting with two underscores(__) They are functions that are always defined inside classes, and are not stand-alone (outside of classes) functions. The magic functions available in PHP are below: __construct() __destruct() __call() __callStatic()
__get()
__set()
__isset()
__unset()
__sleep()
__wakeup()
__toString()
__set_state()
__invoke()
__clone()- Category :
- Methods of PHP
- PHP
-
04 Jul
APNS (Apple Push Notification Service), Embed with Application.
Sometimes we need to notify users about the new updates or about an event in an application. Apple has provided features that can be use for this. One of these features is Local Notification and another is Push Notification. In these features we can have messages, or any other data from server.
In Local Notification, notification is local to device on which the application is installed. User can schedule local notification by setting date and time.
In Push Notification (remote notification), the message or data about an event is sent from remote server through APNS (Apple Push Notification Service) to the users devices. When Push Notification receives it contains payload that contains message or sound or any other data, which can be access through Remote notification methods.- Category :
- iPhone iOS
- PHP
-
02 Jul
MVC Framework
What Is MVC ? MVC is an architectural pattern used in software engineering. In complex computer applications that present lots of data to the user, one often wishes to separate data (model) and user interface (view) concerns, so that changes to the user interface do not impact the data handling, and that the data can be reorganized without changing the user interface. The model-view-controller solves this problem by decoupling data access and business logic from data presentation and user interaction, by introducing an intermediate component: the controller.