Google Translater

Saturday, 13 February 2016

Teri Umeed Tera Intezar Karte Hain Lyrics Sonu Kakkar

Teri Umeed, Tera Intezar Karte Hain,
Teri Umeed, Tera Intezar Karte Hain,
Aye Sanam, Hum Toh Sirf Tumse Pyar Karte Hain,
Aye Sanam, Hum Toh Sirf Tumse Pyar Karte Hain.

Jaaneman Hum Bhi Tumpe,
Jaan Nisaar Karte Hain,
Jaaneman Hum Bhi Tumpe,
Jaan Nisaar Karte Hain,
Aye Sanam, Hum Toh Sirf Tumse Pyar Karte Hain [x2].

Khaab Aankhon Mein Ab Nahi Aate,
Ab Toh Palkon Mein Tu Samaye Ho,
Har Ghadi, Saath Saath Rehte Ho,
Dilki Duniya Mein Ghar Basaye Ho [x2],

Teri Har Baat Pe Hum, Aitbar Karte Hain,
Teri Har Baat Pe Hum, Aitbar Karte Hain,
Aye Sanam, Toh Sirf Tumse Pyar Karte Hain [x2].

Humko Jiski Thi, Woh Talaash Ho Tum,
Khushboo Saanson Ki, Dilki Pyaas Ho Tum,
Tere Aashiq Tere Diwane Hain
Saari Duniya Se Hum Begane Hain [x2],

Jaan Hum Pyaar Tumhe, Beshumar Karte Hain [x2],
Aye Sanam, Hum Toh Sirf Tumse Pyar Karte Hain [x2],
Teri Umeed Tera Intezar Karte Hain,
Aye Sanam, Hum Toh Sirf Tumse Pyar Karte Hain [x2].

Wednesday, 10 February 2016

Why use a framework?

- As you likely already know, PHP is a solid application development platform. It provides services for handling email, database interaction, and more. Because of its power and flexibility, it's easy to get in there and start coding your application without using any framework. So, what is a framework, and why should we use one? It's a very good question.Let's have a look. Coding in straight PHP works, but if you're not careful, there are a number of things that can happen. For starters, we can get what we call spaghetti code.
Spaghetti code is exactly what it sounds like, meandering code that does a lot of different things in one single place. When we don't have our code organized, we can end up doing redundant changes because we end up having to copy and paste things to get them to work, or our code is embedded in long files, and in order to make changes, we have to change them in multiple places. Disorganization is a big problem with writing straight PHP code. You can put things wherever you want, and because of that, things can get very confusing.
You can't as easily reuse pieces of your code throughout a regular PHP application. One of the big problems of not using a framework is that whenever you go to make a change, you can easily break other items within your code. Testing is another problem that arises when using straight PHP code. Because things aren't broken up into fine units, it can be extremely difficultto test different aspects of your code. When you're using straight PHP, you often end up writing things from scratch. Many of the frameworks come with some code built in that can help you to prevent having to do this.
When you're working in a team, in a regular PHP application, it can be very difficult to have multiple people working on different aspects of the application at the same time. Frameworks provides solutions for many of these problems. The main thing that frameworks provide is a single recipe that we use for developing our applications. We break things up into nice, small pieces so that it's easy to reuse our code throughout different aspects of our application.Having these small pieces also means that if I need to change an aspect of my code, I can change it in the one piece that's being reused throughout the entire application.
Makes it much easier to make changes in the future. Using this recipe allows us to have a nice, clean organization to our code. If I want to go in and change how one particular screen works or functions, it's easy for me to find where that code is based on the recipe I've used from the framework. One of the large advantages of all the frameworks we'll discuss in this course is that there are components built in to the framework that we can use to do all kinds of functionality. This can be from very small, low-level aspects, like connecting to a database, all the way to large aspects of our code, like handling authentication.
Because our code is broken into these nice, small pieces, it's very easy to have a teamworking on the application. One of the key advantages to using frameworks is to allow multiple people on a team to access different aspects of the application at the same time. So, do you always need to use a framework? One thing to consider is that using a framework is going to take more steps. Whereas in a single PHP page I can have all of my logic, my database connection, and my view connected.
In a framework, I have to break these all up into different components, and that can take additional time. Frameworks do come with a learning curve. We have to learn how the code is organized. We have to learn the API and what's available inside of the framework. There isn't always a benefit to overorganizing your code. In general, smaller applications that require one or two pages, you might be able to get away with not using a framework. The end result is thatin an application using a framework, we have our code broken up in a fashion that's more organized, easier to reuse, and prevents us from redundant programming.
We get a head start if we're using components and services that are included in the framework.It can also be easier for teams negotiating to work on overlapping functionality because of the more granular pieces of this application. Ultimately, frameworks lead to better organization of code, which in most cases can make our application development experience less painful.

Frameworks MVC for Building PHP Web Applications Developments

MVC Frameworks for Building PHP Web Applications


PHP developers have a choice: they can design their own architecture, essentially re-inventing the wheel, or they can use a framework. Frameworks speed up development, enhance collaboration, and help keep code organized. So why start from scratch? In this course, Drew Falkman introduces the six most popular PHP frameworks: Zend, Symfony, CodeIgniter, CakePHP, Yii, and Laravel. He'll describe each framework's advantages, show how to get and install the software, and then demonstrate how to get the default pages for each framework up and running, so viewers can see how the code is structured. In the final chapter, Drew compares all the frameworks and provides resources to move forward with each one. Your framework choice is one of the biggest factors affecting the success of your project; start here to get the information you need to make the right decision.

Topics include:

  • Why use a framework?
  • Introducing MVC-framework concepts
  • Examining each framework's components
  • Setting up the software
  • Walking through sample apps built in each framework
  • Comparing frameworks

Model View Controller

Model–view–controller

Model–view–controller (MVC) is a software architectural pattern mostly (but not exclusively) for implementing user interfaces on computers. It divides a given software application into three interconnected parts, so as to separate internal representations of information from the ways that information is presented to or accepted from the user. 

Traditionally used for desktop graphical user interfaces (GUIs), this architecture has become extremely popular for designing web applications.


Model View ~Content~ Controller 
An easy way to understand MVC: the model is the data, the view is the window on the screen, and the controller is the glue between the two. -- Innovationalmedia

What is a Model View Controller?


MVC is one of three ASP.NET programming models. MVC is a framework for building web applications using a MVC (Model View Controller) design: The Model represents the application core (for instance a list of database records). The View displays the data (the database records).

ASP.NET MVC Introduction - W3Schools

www.w3schools.com/aspnet/mvc_intro.asp

Simple MVC Framework is a light but powerful PHP Framework for building web applications.

Simple MVC Framework is a PHP 5.5 MVC Framework. Designed to be lightweight and modular, 
allowing developers to build better and easy to maintain code with PHP.

What is the use of MVC architecture in asp net?

The ASP.NET MVC is an open source web application framework that implements the model–view–controller (MVC) pattern. In the latter versions of ASP.NET, ASP.NET MVCASP.NET Web API, andASP.NET, Web Pages (a platform using only Razor pages) will merge into a unified MVC 6.



 

Best Example To Understand MVC Framework for PHP Development

Wednesday, 3 February 2016

M Faraz Ahmed Sa Urdu Poetry

تیری گرفت میرا مرتبہ بڑھاتی ہے”
“مجھے تُو اپنی محبت میں مبتلا رکھنا‎
“Koi gam nh us s bicharna ka afsos itna he mera ho ka bi mera na ho saka”
“ Chalu Ek Bar Phir Se Ajnabi Ban Jain Hum Dono,
Wo Afasan Jise Anjam Tak Lana na Mumkin Hu
Use Ek Khobsurat Morh Dekar Chorna Achaw Hai,”
“ Jo sulook mujh sy kiya gaya
Meri har ghari mein wo aag hai,
Jo na dhul saky jo na mit saky
Meri zindagi mein wo daag hain..”
“December Ab K Jo Jau Tu Mujhe Bhi Sath Lejana,
Mujhe Bhi Sham Huna Hai, Mujhe Gumnam Hai,”
“ میں سارا دن بہت مصروف رہتا ہوں مگر جونہی
قدم چوکھٹ پہ رکھتا ہوں تو آنکھیں بھیگ جاتی ہیں”
“ وہ کہتی ہے سنو جاناں۔۔!!!
محبت موم کا گھر ہے
تپش یہ بد گمانی کی کہیں پگھلا نہ دے اس کو
میں کہتا ہوں
 کہ جس دل میں زرا بھی بد گمانی ہو
وہاں کچھ اور ہو تو ہو “محبت ہونہیں سکتی””
“ ہم پر تمہاری چاہ کا الزام ہی تو ہے
دشنام تو نہیں، یہ اکرام ہی تو ہے
بھیگی ہے رات فیض غزل ابتدا کرو
وقت سروو درد کا ہنگام ہی تو ہے”
“ مسلسل غم اٹھانے سے یہ بہتر ہےاگر مانو
کنارہ کرنے والوں سے کنارہ کر لیا جائے”
تیری کہانی ساری دنیا 
میرا خلاصہ! بس اک تو!!!"



M Faraz Ahmed Sa - Favorite Quotes

“No matter what has happened. No matter what you’ve done. No matter what you will do. I will always love you.”
“Someday you’ll miss me like I missed you, Someday you’ll cry
For me like I cried for you, Someday you’ll want me back like I
Wanted you, Someday you’ll understand why you broke my heart
When I didn’t, someday you’ll understand that I was the only
Girl that put up with all your mess, when your own family didn’t
Someday you’ll know how pain feels how you hurt me
Someday your life will turn upside down, like mine did when you broke my heart
Someday you’ll have someone hurt you like you hurt me
Someday you’ll realize how lonely life can be.
Someday you can sit down and think how much I meant to you
When you meant the world to me,
Someday you’ll know how I really felt
Someday you’ll try to come back to me like I tried with you
But someday you’ll love me when I won’t love you.”
“ Some people are going to leave,
but that’s not the end of your story.
 That’s the end of their Part in your Story..”
M Faraz Ahmed Sa Google Plus Profile
“ The most painful memory.. when I walked away and you let me go.”
“Its better to be lonely than to be played by wrong people.”
“ I will never stop caring, but if you decide to push me away, I will go.”