473,670 Members | 2,511 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Just PHP will give you nothing unless you upgrade yourself



I have been working with PHP for more than 3yrs (I believe still I am
beginner in this category) - I was present in several interview board.
Which things disappointed me most is the "lack of eagerness" to
learn what comes new. Sometime developers thinks that learning Only PHP
will help them to get lucrative jobs!! OMG

Especially most of the time PHP developers plays multiple roles in the
companies, they are developer, they are template designers, they are
HTML coders, they are DBA, they are PMs....what the heck. Only few
companies have different people for these roles.

How far you can go just learning PHP (RAW code, in ancient style, that
means PHP+HTML together, yak!!)? You have to have knowledge in CSS, JS,
Frameworks, Multiple DBS

When it comes the question of CSS, you should maintain a list of
websites where from you can get updates. Dont learn the CSS from book,
but goto websites and see what is happening... If you are still using
Tables to design ur pages, let me say man, it sucks. Got any idea about
Liquid Layout?? not yet?? OMG

Lets go for JS. Javascript is simple yet powerful language (I better
say a mandatory one for web application developers) to learn. Unless u
have proper knowledge in JS, its very hard to develop "usable" web
2 apps. But wait, I never meant RAW JS. you have to have some basic
skills on basic javascript, but dont spend time for re inventing the
wheels. Go for popular libs like Prototype, jQuery, Moo, Mootools,
Scriptaculous, Dojo, Rico.... Why you are sitting man?? go learn them.

MySQL becomes very popular by last couple of years becoz of it's
performance. By the meantime PostgreSQL also developed a lot. Now its
hardly a factor between them, if you talk abt performance. Beside that
I must say postgre is much more mature, feature rich and thats why it
is called "open source oracle". Never wait for only MySQL. Learn
postgreSQL. And it is also necessary to learn atleast one of the
embedded database like SQLite. Dont ever think that SQLite is less
powerull. You can develop amazing apps using simply SQLite, with some
"hacks" and "optimizati ons"

Team development attitude is another important thing. If you are
introvert, restricting and never share your knowledge with others, you
dont cost a dime. What is the value of yor knowledge unless you explore
it? Also you must posses a very friendly attitude while you are working
in a team. Dont think your team mates are your competitor but they are
just working with you to build a big result together....not hing
personal. Participate in forums and write blogs.

If you are PHP developer and think you have learned enough already, let
me give some suggestions. Please DONT think you have finished learning.
Everyday there are new release from PEAR, PECL and many other
providers. Please learn useful packages from PEAR. Also learn the
following

1. ezComponents
2. Zend Framework (dont mix framework with the MVC concept.. MVC is
just a part of Zend Framework)
3. Popular opensource packages
4. PEAR
5. Templating engines like Smarty, Savant

also keep yourself uptodate from the following sites

1. www.phparch.com
2. www.phpmag.net
3. www.phpmagazine.net
4. www.ajaxian.com
5. www.mashable.com
6. www.programmableweb.com
7. www.planet-php.org

Please Please Please - Upgrade Yourself....

Hasin Hayder
http://hasin.wordpress.com

Jan 25 '07 #1
5 2084
Hasin Hayder wrote:
And it is also necessary to learn atleast one of the embedded database
like SQLite. Dont ever think that SQLite is less powerull.
SQLite still has a long way to go before it can be considered a contender
for anything more than very basic projects. I imagine that the lack of
foreign key constraints alone is enough to put it out of the running for
many projects.

My current project is being built on PostgreSQL, and I plan to also
support MySQL for the 1.0 release, and then Firebird for shortly later.
(PDO helps!) I've considered supporting SQLite in the first release, but
with its current feature set, it just won't cut it. Perhaps if a future
release includes foreign keys and, triggers, I'll reassess the situation.

BTW, nice rant.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

Jan 25 '07 #2

If thats the issue with SQLite, let me share some info. The FK is
available in MySQL also , but unfortunately If the table type is
MyISAM, it doesnt maintain the FK forcefully. The FK is somewhat
actually working if and only if ur table type is InnoDB

I am not biased by PGSQL or SQLite, I just recently moved to PG.

Regards
Hasin Hayder
http://hasin.wordpress.com

On Jan 25, 4:25 pm, Toby Inkster <usenet200...@t obyinkster.co.u k>
wrote:
Hasin Hayder wrote:
And it is also necessary to learn atleast one of the embedded database
like SQLite. Dont ever think that SQLite is less powerull.SQLite still has a long way to go before it can be considered a contender
for anything more than very basic projects. I imagine that the lack of
foreign key constraints alone is enough to put it out of the running for
many projects.

My current project is being built on PostgreSQL, and I plan to also
support MySQL for the 1.0 release, and then Firebird for shortly later.
(PDO helps!) I've considered supporting SQLite in the first release, but
with its current feature set, it just won't cut it. Perhaps if a future
release includes foreign keys and, triggers, I'll reassess the situation.

BTW, nice rant.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~http://tobyinkster.co.uk/contact
Jan 25 '07 #3
..oO(Hasin Hayder)
>If thats the issue with SQLite, let me share some info. The FK is
available in MySQL also , but unfortunately If the table type is
MyISAM, it doesnt maintain the FK forcefully.
The MyISAM engine is only useful for small projects or really simple
databases. For anything more sophisticated you're usually better off
with a transactional engine like InnoDB. A bit slower than MyISAM, but
full of useful features.

A while ago I considered to have a look at PostgreSQL, but meanwhile
recent versions of MySQL support all the features I need. So I'll stay
with MySQL, but keep PG in mind as an option.

Micha
Jan 25 '07 #4
..oO(Hasin Hayder)
>Lets go for JS. Javascript is simple yet powerful language (I better
say a mandatory one for web application developers) to learn.
Depends on the application. I consider it nice-to-have, but optional.
>Unless u
have proper knowledge in JS, its very hard to develop "usable" web
2 apps.
"Web 2.0" is just a marketing gag, a buzzword. There's nothing special
about it.

And when it comes to usability then "usable" means (for me) that it also
has to work if JS is disabled or not available. Of course if used
properly then JS can be a real improvement to a website/webapp, but it
shouldn't be used for the most fundamental functionality, unless you
have total control over your client's browser configuration (like in an
intranet maybe). There's always an alternative non-JS way. That's what I
consider a properly written webapp.
>MySQL becomes very popular by last couple of years becoz of it's
performance. By the meantime PostgreSQL also developed a lot. Now its
hardly a factor between them, if you talk abt performance. Beside that
I must say postgre is much more mature, feature rich and thats why it
is called "open source oracle".
Compared to MySQL 5.0/5.1 there's not much of a difference.
>Never wait for only MySQL. Learn
postgreSQL.
Learn PDO. ;)

Micha
Jan 25 '07 #5
On Jan 25, 1:26 am, "Hasin Hayder" <countdracu...@ gmail.comwrote:
I have been working with PHP for more than 3yrs (I believe still I am
beginner in this category) - I was present in several interview board.
Which things disappointed me most is the "lack of eagerness" to
learn what comes new. Sometime developers thinks that learning Only PHP
will help them to get lucrative jobs!! OMG

Especially most of the time PHP developers plays multiple roles in the
companies, they are developer, they are template designers, they are
HTML coders, they are DBA, they are PMs....what the heck. Only few
companies have different people for these roles.

How far you can go just learning PHP (RAW code, in ancient style, that
means PHP+HTML together, yak!!)? You have to have knowledge in CSS, JS,
Frameworks, Multiple DBS

When it comes the question of CSS, you should maintain a list of
websites where from you can get updates. Dont learn the CSS from book,
but goto websites and see what is happening... If you are still using
Tables to design ur pages, let me say man, it sucks. Got any idea about
Liquid Layout?? not yet?? OMG

Lets go for JS. Javascript is simple yet powerful language (I better
say a mandatory one for web application developers) to learn. Unless u
have proper knowledge in JS, its very hard to develop "usable" web
2 apps. But wait, I never meant RAW JS. you have to have some basic
skills on basic javascript, but dont spend time for re inventing the
wheels. Go for popular libs like Prototype, jQuery, Moo, Mootools,
Scriptaculous, Dojo, Rico.... Why you are sitting man?? go learn them.

MySQL becomes very popular by last couple of years becoz of it's
performance. By the meantime PostgreSQL also developed a lot. Now its
hardly a factor between them, if you talk abt performance. Beside that
I must say postgre is much more mature, feature rich and thats why it
is called "open source oracle". Never wait for only MySQL. Learn
postgreSQL. And it is also necessary to learn atleast one of the
embedded database like SQLite. Dont ever think that SQLite is less
powerull. You can develop amazing apps using simply SQLite, with some
"hacks" and "optimizati ons"

Team development attitude is another important thing. If you are
introvert, restricting and never share your knowledge with others, you
dont cost a dime. What is the value of yor knowledge unless you explore
it? Also you must posses a very friendly attitude while you are working
in a team. Dont think your team mates are your competitor but they are
just working with you to build a big result together....not hing
personal. Participate in forums and write blogs.

If you are PHP developer and think you have learned enough already, let
me give some suggestions. Please DONT think you have finished learning.
Everyday there are new release from PEAR, PECL and many other
providers. Please learn useful packages from PEAR. Also learn the
following

1. ezComponents
2. Zend Framework (dont mix framework with the MVC concept.. MVC is
just a part of Zend Framework)
3. Popular opensource packages
4. PEAR
5. Templating engines like Smarty, Savant

also keep yourself uptodate from the following sites

1.www.phparch.com
2.www.phpmag.net
3.www.phpmagazine.net
4.www.ajaxian.com
5.www.mashable.com
6.www.programmableweb.com
7.www.planet-php.org

Please Please Please - Upgrade Yourself....

Hasin Hayderhttp://hasin.wordpress .com
While I agree with the point that one should not remain content with
what they've learned, I have to disagree with the idea of jumping on
popular popular libraries that support the latest buzz. You'll learn
far more if you actually learn what's going on behind the scenes.
"Ajax" and the Web 2.0 buzz has notoriously _spurred many of its
participants_ to exclude usability. Understanding JavaScript is
understanding how to implement it in a transparent manner, when it's
available, great! When it's not, the user shouldn't be feeling the
effects of it. I'm quite fluent in JavaScript and very much enjoy
writing cool UIs, but my driving focus is to ensure the user doesn't
have to go out of their way to accommodate its implementation. Michael
Fesser said this more eloquently and concisely than I have. :-)

What people should be learning is the general concepts of programming,
the ability to approach problems in a programmer way. Not many place
emphasis enough on the ability to take in a situation, use Google to
find **useful** results, and work in a solution. If you take several
years to learn how to think in terms of "the" programming approach, you
should be at a point where you can learn a new language in days. Of
course, to do that, you'd need to learn varying types of programming
languages. Downloading Dojo or the latest PEAR package won't really
improve the essential *core* knowledge you need to become a
self-sufficient programmer. I think this is one of the reasons I like
the idea behind C so much. Anyone could write their own standard
library, if they wanted. Of course, practically and for portability
reasons, that's not a great idea.

Sorry, just had to let off a rant of my own.

--
Curtis

Jan 26 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
6465
by: Conax | last post by:
Hi there, My boss is hoping that I can come up with a page that displays some information. The information will always be displayed on specific part of the page, with auto refresh. But he doesn't want the whole page to be refreshed so that buttons and images around the information do not get reloaded each time. Is this really possible? Other pages on this site don't use frames, so this page can't use frams too. Creating an ActiveX...
72
4842
by: Herbert | last post by:
I'm still relativey new to stylesheets, so I'm hoping that the way I'm going about things can be seriously improved upon, i.e . I just haven't undersood something obvious about the 'cascading' nature of the coding, which I believe concerns the way attributes relate to one another when 'nested'... I think I can illustrate the nature of the beast with this example, using just two text styles:
16
1774
by: John Rivers | last post by:
http://www.15seconds.com/Issue/030812.htm?voteresult=1 poor guy worked his heart out, just to make a page control and then they published it ha ha ha ha ha to "help" others
12
1495
by: Jeff | last post by:
Looking for your highly subjective opinions (from those of you who have been working extensively with VS 2005). I have a client that needs/wants a complete rewrite of an existing application. I will be proposing a .NET Windows application with a supporting SQL Server database. It will likely take 4-5 months before we roll out the first production version. Because of the apparent issues with VS 2005 (poor performance, unpredictable and...
18
2329
by: bsruth | last post by:
I tried for an hour to find some reference to concrete information on why this particular inheritance implementation is a bad idea, but couldn't. So I'm sorry if this has been answered before. Here's the scenario: We have a base class with all virtual functions. We'll call this the Animal class. We then make two classes Fish and Bird that both inherit from Animal. In the program, we have a single array of Animal pointers that will...
1
1464
by: Daniel Klein | last post by:
I have a few Python programs that use popen2, and they work quite nicely and dependably, so I don't really have any reason to change them to use the new subprocess module...unless of course there any future plans to deprecate popen2. Is this something I will have to plan for ?
31
2908
by: Sam of California | last post by:
Is it accurate to say that "the preprocessor is just a pass in the parsing of the source file"? I responded to that comment by saying that the preprocessor is not just a pass. It processes statements that the compiler does not process. The good people in the alt.comp.lang.learn.c-c++ newsgroup insist that the preprocessor is just one of many passes. The preprocessor processes a grammer unique to the preprocessor and only that grammer. ...
0
8466
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8384
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8591
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8659
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6212
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5683
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4208
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2799
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1791
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.