Sunday, March 27, 2016

Websocket with PHP

There are many ways to create real time web application with PHP, but in this case I will show you a best websocket library will be useful for making a real time web application. What is Websockt? It is full-duplex (data can transmitted in both directions) clinet/Server commnuication over TCP. so...

Friday, March 25, 2016

How To Install Node.js on Windows

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. To install Node.js on your Windows, please follow all steps below. Node.js on Machinetos 1.1. Download Node.js Go to https://nodejs.org/en/download/ and download Windows Installer (.msi/.exe) (32bits/64bits) 1.2. Install...

Thursday, March 24, 2016

How to Install Node.js on Mac

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. To install Node.js on your Machinetos, please follow all steps below. Node.js on Machinetos 1.1. Download Node.js Go to https://nodejs.org/en/download/ and download Mac OS X Installer (.pkg) 1.2....

Wednesday, March 23, 2016

Create nested menu with PHP, Mysql, CSS

How to create a nested menu , Before starting to implement , I would sure that you will understand the PHP, Mysql, HTML and CSS. 1- You have to download this project and try to create the database which you will be able to find in the zip file. 2- Test it on your computer, then if everything...

Some Useful PHP Tricks You May Not Know

After I read many articles, I found some cool tricks in PHP that are very useful for our projects. Please have a look at 5 tricks below you may satisfy with them. 1. Array in Form FieldsNot only the form input fields that create array like <input name="name['fullname']">but you can create arrays...

Tuesday, March 22, 2016

Create component to validate IPN (Instant Payment Notification) with Cakephp

It's seem to be for senior programmer, but I just want to let somebody know the benefit or how to implement the IPN of PayPal using PHP or Cakephp, before you can understand what to do with IPN you have take a look this website. If you don't know at all about Paypal please read the previous...

7 Cool Clock Tutorials with jQuery

Before you are going to build something, please search for it if it is existed or not. If it were existed, please kindly to try to use it as much as you can to get the existed concepts from the existed things. Before you are going to build your very own beautiful clock with jQuery + CSS, I would...

Best PHP Frameworks for Beginner

Now a day, there are many PHP framework such as: CodeIgniter, Yii, Laravel, PHPCake, Zend etc. If you are a beginner PHP Developer who want to develop website with PHP Frameworks, we recommend you to try CodeIgniter. CodeIgniter is a powerful PHP framework with a very small footprint, built for...

phpDesigner 8 Best IDE for Your Next PHP Projects

phpDesigner 8 is a fast PHP IDE and PHP editor with built-in HTML5-, CSS3- and JavaScript editors boosted with features to help you create amazing websites. phpdesigner The main pro of this one is that it's NOT Java based. This keeps the whole thing quick. Features: Intelligent...

Monday, March 21, 2016

Change default jQuery Validation

This jQuery plugin makes simple client side form validation easy, whilst still offering plenty of customization options. It makes a good choice if you’re building something new from scratch, but also when you’re trying to integrate something into an existing application with lots of existing...

Configure PayPal with Instant Payment Notification

1- Login to your PayPal Business Account 2- Go My Account -> Profile -> My selling tools 3- Click update on Website preferences 4- Choose off for Auto Return and remove the url inside 5- Choose off for Payment Data Transfer 6- Click save button 7- Go to Instant Payment Notification...

Check OS and Browser Agent with PHP

The user agent string is a text that the browsers themselves send to the webserver to identify themselves, so that websites can send different content based on the browser or based on browser compatibility. Mozilla is a browser rendering engine (the one at the core of Firefox) and the fact...