Tagged Questions
Questions about PHP, a widely-used general-purpose scripting language that is especially suited for Web development.
3
votes
4answers
75 views
What is an effective way to familiarize yourself with a new application in a new language (and still look productive at a new job)?
I started a new job working on an application I'm vaguely familar with, and it's in PERL! I come from a PHP and Java background, so while I understand the basics, there are lot of nuances in PERL that …
1
vote
2answers
78 views
How to organize Javascript and AJAX with PHP?
My javascript is getting out of hand for my PHP application. I have 20 tags that link to various javascript files in a javascript folder.
Each javascript file basically controls one element on the …
-3
votes
0answers
69 views
please help me to choose my career in it industry [closed]
I am a B.tech etc student.I have 6 months exp in webdevlopment.But i want to switch over to other language,which will be best for me in the recession time in india.Please help me quickly.
-2
votes
2answers
70 views
What are the possible ways to hide the PHP file extension from web pages? [closed]
I don't want the PHP sites that I build to have the .php at the end of the page URL. What are the available ways to hide the extension and which way is most preferable?
0
votes
2answers
35 views
git/svn Hooks for PHP/Zend Projects
just because i think we are not using the full potential of all possibilites here yet:
What Pre/Post Commit Hooks (i.e. PHPUnit, PHPDoc) do you people use on your Team Git/SVN Servers?
By now we do …
5
votes
7answers
451 views
What is the "PHP Way"?
I see constant references to the " Way," such as descriptions of a particular framework or application as "Pythonic," a certain person as a "Perl hacker," or "true Ruby code," but where are the "PHP …
0
votes
0answers
40 views
What is the mysql function that combine dates? [closed]
I have a project "scheduler" written in php.
What is the logic on how to validate the schedules and time for each schedules to avoid conflict in dates?
1
vote
6answers
258 views
Is ViewState Really important?
I see that ViewState in ASP.NET is a big concern. I want to ask about languages such as PHP, it does not have ViewState, does this really hurt that lannguage? Is it really important? How can other …
6
votes
3answers
120 views
Keeping an MVC model loosely coupled from the DB?
I like to keep my code testable and have decided to go with the Dependency-Injection strategy for my current MVC framework, which definitely has proven to be a great way to ensure loosely coupled …
-6
votes
2answers
85 views
Can I use Ruby on Rails to create any web application I can create using PHP? [closed]
Can I create any web application that I can create using PHP if I were to use Ruby on Rails, or are there some limitations? And is it true that Ruby on Rails is the best option if I want to write less …
0
votes
3answers
240 views
Why was Rails written in Ruby?
I know PHP and Ruby.
Using a PHP Rails clone (not out of choice), called Symfony, (which is apparently the best PHP framework), I notice that it's a clone of Rails. I think Symfony is stupid and …
4
votes
3answers
108 views
Unit Testing For Different Environments
How does one do unit testing for multiple environments that behave differently?
Here is my problem. I have a PHP class for which I'd like to create unit tests. The class provides shortcuts for …
1
vote
4answers
164 views
Do I need to be a professional in Linux to be a professional in PHP?
At home I sometimes use PC and sometimes MAC and I am not familiar with Linux operating system. However, I plan to develop web application in PHP and host it under Linux shared hosting and then VPS …
3
votes
3answers
156 views
Is it possible to deploy Perl or Python scripts in the same way as PHP scripts?
PHP's deployment model is uber simple: upload and run. This is especially ideal for web applications that are intended to be installed on shared hosting by end users (think: Wordpress). Compare this …
0
votes
0answers
11 views
What is the equivalent of Master Page and Web User Control in PHP? [migrated]
Assume that I have some advertisments that I want to put in specific area of my pages. In ASP.NET I would use Web User Control for this pupose. What about in PHP? The same question for Master Page.