Tagged Questions
7
votes
4answers
574 views
Can I demand code quality on a project I've gotten
I have been given a Drupal project from an external web agency and have been trying to becomer wiser on both Drupal and their approach of making a site. With time I've learnt a bit morer about Drupal, ...
0
votes
1answer
104 views
How to begin with web development in PHP [duplicate]
As I am the New Learner in the PHP Web Development and I want to become a good web developer who can at least make a good and dynamic web site quickly.
Currently I have learnt the following things:
...
2
votes
2answers
314 views
What is a Developer in Test?
I was recently talking with a recruiter who wants to put me at a company for a position of Developer in Test. He essentially made it sound like a position where you get to fiddle with new programming ...
0
votes
2answers
203 views
Can PHP and Javascript do backend together?
I am creating an application with a friend, which we are planning on writing the back end partially in PHP and partially in Javascript with Node.js. Javascripts front-end involvement with PHP makes ...
-5
votes
1answer
96 views
When does PHP become slow? [closed]
I want to build a private online social network for some companies. I know many developers, some of them use PHP, some use Python and some use .NET (ASP.NET).
I have heard good things about PHP such ...
0
votes
2answers
137 views
Custom error handling
I'm trying to figure out the best way to handle custom errors in my application.
Option 1:
if(expr) {
} else {
$_SESSION['error'] = "Some message describing the error";
}
Option 2:
if(expr) {
...
10
votes
4answers
827 views
Which is better: to include HTML inside PHP code or outside it?
Look at this:
<?php
echo "Hello World";
?>
<br />
<?php
echo "Welcome";
?>
And now look at this:
<?php
echo "Hello World";
echo "<br />";
echo "Welcome";
?>
Which ...
-1
votes
1answer
114 views
Web App architectural design, help me stop buying more servers to scale up! [closed]
Background: I am part of a small dev team, I am not the lead\senior developer. The lead developer is very knowledgable and I trust his decision making but I am starting to wonder if we could improve.
...
1
vote
3answers
228 views
PHP best practice in return values
For PHP, best practices, I have read somewhere that if you assign your data to a variable it takes almost no memory or resource.
So let's say I have this function that return a count.
public ...
0
votes
0answers
86 views
What steps/tools/apps are necessary to make local php development on a tablet viable? [closed]
I do my php web development locally, as in, creating a local instance of a site and then coding it and then pushing code to servers via git/github. I'm considering getting an android tablet or ipad ...
1
vote
2answers
169 views
How do I add restrictions for users to sign up before they can access web site?
How do I get my webpage not to go back when they hit the back button and are logged out ?
how can I add a web page to be blocked like FACEBOOK doesn't let you get into their site with out having a ...
-1
votes
2answers
275 views
How to translate PHP and ASP code in both directions [closed]
Is there any IDE that can help convert PHP code into ASP, I mean in both directions.
Please share if you have any idea.
Someone also has an idea, or can give any directions about how to go about it ...
1
vote
4answers
367 views
How do web-developers do web-design when freelancing? [closed]
So I got my first job recently as junior web-developer.
My company creates small/medium sites for wide variety of customers: autobusiness companies, weddign agencies, some sauna websites, etcetc, hope ...
-1
votes
2answers
449 views
How to become an expert web-developer? [duplicate]
Possible Duplicate:
What should every programmer know about web development?
I am currently a Junior PHP developer and I really LOVE it, I love internet from first time I got into it, I ...
6
votes
1answer
128 views
Is it possible to build a single game to run in Facebook & Google+?
I was asked by my customer to build a Facebook game. The game would be something similar to Mafiawars.com where the game is hosted on a server and run through a frame on Facebook.
The thing is after ...