Articles
Share Text/URL on Facebook, Twitter and LinkedIn
Share Text/URL on Facebook, Twitter and LinkedIn A common and very important activity in web development. How to allow our website content to our visitors, share on their walls ? You need to keep an eye on these steps : 1- Facebook : https://www.facebook.com/sharer/sharer.php?u=www.naveedramzan.com Title, description will be grabbed automatically from the meta and title …
Share Text/URL on Facebook, Twitter and LinkedIn Read More »
Why to Choose CakePHP
Why to Choose CakePHP When we start working with CakePHP. We having experience of web development in PHP. We need to findout a framework on the following needs : Fast Learning Helpfull Documentation Code examples to get clear idea of workings Find opensource so easy to upgrade and integrate add-on(s) Its important that which kind …
What is Cake PHP
What is Cake PHP CakePHP is an open source web application framework. It is written in PHP, modeled after the concepts of Ruby on Rails, and distributed under the MIT License. CakePHP uses well-known software engineering concepts and software design patterns, as Convention over configuration, Model-View-Controller, ActiveRecord, Association Data Mapping, and Front Controller.
Five Tips for Business Analysis in to Projects
Five Tips for Business Analysis in to Projects Ensure That Requirements Support Your Overall Business Needs Having a list of business requirements is certainly an integral part of your long journey toward project success. However, before celebrating, you need to be absolutely certain that those requirements support your organization’s overall business objectives. Clearly Understand the …
Email Validation in PHP
Email Validation in PHP function email_validation($email){ if(ereg(“^[^@ ]+@[^@ ]+.[^@ ]+$”,$email,$trashed)){ return true; }else{ return false; } }
Phone Validation in PHP
Phone Validation in PHP function phone_validation($phone){ if(preg_match(‘/^[0-9]{10||11}$/’, $phone)){ return true; }else{ return false; } }
Great Website for Tutorials
Great Website for Tutorials http://www.lynda.com/
How to include Header footer in PHP project
How to include Header footer in PHP project PHP provides four functions which enable you to insert code from other files. * include() * require() * include_once() * require_once() All four can take a local file or URL as input. None of them can import a remote file. require() and include() functions are virtually similar …
Get Record from database based on field id and record id in php and mysql
Get Record from database based on field id and record id in php and mysql Mostly we need to get all record details of foriegn key used in another table. Such as, we have Three tables: Orders (id, order_date, order_status, user_id) Products (id, name, price, quantity, status) Users (id, name, email, password, status) in order, …
Get Record from database based on field id and record id in php and mysql Read More »
15 Amazing Facts About Google
15 Amazing Facts About Google 1) Google began as a research project in 1996. 2) The original nickname was BackRub due to the backlink technology used to determine site importance but eventually changed the name to Google originating from the misspelling of the word “Googol to signify the large quantities of information for people that …
Keyboard Shortcuts
Keyboard shortcuts Getting used to using your keyboard exclusively and leaving your mouse behind will make you much more efficient at performing any task on any Windows system. I use the following keyboard shortcuts every day: Windows key + R = Run menu This is usually followed by: cmd = Command Prompt iexplore + “web …
Major mistakes in HTML
Major mistakes in HTML Do not use Block elements inside the Inline elements <a href=””><h3>Click Me</h3></a> In Correct <h3><a href=””>Click Me</a></h3> Correct Do not avoid to insert ALT and TITLE tags in image and hyperlinks tags <img src=”images/logo.png”> In …
