vote up 0 vote down star

I'm looking for problems I can generalize, recognize later (in design), and say "Hey, if I continue down this road I'm going to hit trouble. PHP + JS just weren't meant for this."

If I'm using PHP+JS.. what can't I do? What shouldn't I attempt? What do you suggest instead?

Thanks!

flag

78% accept rate
This question is far too ambiguous to answer in a reasonable fashion. – Rob Feb 20 at 19:33
I'm hoping to hear from people that set out one way, hit a wall, and found they needed a different set of tools. I don't want to duplicate their mistakes. – ThomasGHenry Feb 20 at 19:43
They can be a pain in the ass sometimes, but those walls are always breakable. – Ant P Feb 21 at 0:45

4 Answers

vote up 0 vote down

The only problem you will encounter is at least 10 years away when Javascript or some kind of open source scripting framework becomes the Web standard. Server side scripting languages like PHP, ASP, JSP, etc and Plugins like Flash, SVG, VRML fill in gaps that a relatively slow client side scripting language like Javascript cannot accomadate. In the future, as PCs get faster and Javascript engines continue to get more efficient, you will see the gradual decline of 3rd party solutions like Server side scripting and plugins. Then the only problem you will face is a bunch of old code that gets laughed at by the cyber punks zooming by on their anti gravity boards. Ofcourse, this is in the future, and by the looks of things the specs people loving dragging their feet.

So in short, PHP is your only hope for doing anything useful in a browser for the forseeable future. Your only worry should be whether you want to learn ASP instead, its pretty cool. Although PHP has a huge community and code snippets galore.

link|flag
thanks for this. I dabbled in ASP (for a semester). C# is nice, but the whole notion of proprietary entrapment is unappealing to me. No knowledge is ever wasted though. Skills is skills. – ThomasGHenry Feb 21 at 1:03
vote up 7 vote down

It is software, almost anything you can imagine is possible, given enough time and resources. I don't see how PHP would preclude you from doing anything in JavaScript, or anything in JavaScript could preclude you doing something in PHP. They are separate technologies which run at each end of the client/server architecture which can be built to work cooperatively.

link|flag
this is the picture that's beginning to form here. thanks – ThomasGHenry Feb 20 at 19:50
vote up 1 vote down

I'd take a look at this and see what the limitations of JS are. The reason this is important to know is that xml performance on JS is just bad, use JSON. The other thing to note is that if you really need to show that many rows of data on a page, it would be better to use flash/flex solution. [warning, that link doesn't work for Firefox 3, it just dies]

I will note though that most of my experience has pointed me to the fact that there normally isn't a reason to show that many things on a page. If I come across a usecase, I usually can just AJAX something in on the fly to keep from having to load so many things at once.

link|flag
nice benchmarking app. thx. I'm in FF3 and it did work, btw. – ThomasGHenry Feb 20 at 19:49
I bet it's Yslow/firebug! I'll have to turn that off. – Richie Rich Feb 20 at 19:57
I have firebug, too. I dunno what Yslow is though. – ThomasGHenry Feb 20 at 21:02
developer.yahoo.com/yslow - download developer.yahoo.com/performance/index.html#rules/… - what it's about video.yahoo.com/watch/1040890/3880720 - video that will change the way you develop for the web – Richie Rich Feb 20 at 22:05
vote up 1 vote down

It's easy to get in trouble with PHP and JS by themselves without using some type of framework. PHP can degrade into a mess of spaghetti code quickly if you do not follow some type of convention like the Zend Framework or others.

That said, I don't think you'll find anything that PHP CANNOT do ...

link|flag
ok, cool. good tip, thx :) – ThomasGHenry Feb 20 at 19:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.