Tagged Questions
-5
votes
2answers
120 views
Developing website that will have mobile app in future should be in PHP or JSP? [closed]
I am developing a web solution that I ultimately want to be available on each mobile platform as mobile app (not a mobile website at all). I am in great confusion to choose between PHP or JSP to ...
0
votes
0answers
58 views
How to implement multi-theme PHP application
I am developing an application which will handle many virtual stores and I would like to have many themes that the user could choose anytime. I would to know what's the main ideia to implement it. I ...
-1
votes
0answers
69 views
which java web framework is similar to php codeigniter framework [closed]
Would you please let me know a good java web framework for a E-Commerce website, right now the existing php website is based on codeigniter framework and I am planing to convert this php project to ...
7
votes
4answers
620 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
120 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
318 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
221 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
101 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
910 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
118 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
232 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
88 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
180 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
279 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
398 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
485 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 ...
0
votes
1answer
448 views
What are the PHP web server architecture components and the purpose of each one of them?
Given below is an image of a basic PHP web server architecture:
Would someone please explain the several components available and how they interact?
I'm more concerned of how the PHP Core operates ...
3
votes
3answers
681 views
How to handle monetary values in PHP and MySql?
I've inherited a huge pile of legacy code written in PHP on top of a MySQL database. The thing I noticed is that the application uses doubles for storage and manipulation of data.
Now I came across ...
3
votes
2answers
312 views
Client-Side V.S. Server-Side Searching?
I am currently helping to design a web site and application in HTML. We would like the user to be able to search the site/app for desired content via a search bar. We would also like to include an ...
1
vote
1answer
333 views
Pinterest - loading more images when scrolling down effect. [closed]
The drag down and load more pictures effect in Pinterest - I see that more commonly used in many a site. What exactly is that done through? Could it be done through javascript? I work mostly in php ...
6
votes
3answers
250 views
What are some really simple rules to keep a PHP codebase organized?
I'm new to PHP in a professional context. I want a few macro thumb rules to keep me on the enlightened path. Here are a few I'm proposing to myself:
no absolute paths in include|require(_once)? ...
3
votes
3answers
182 views
Sites with overlapping code-bases. Developing multiple sites with little changes
I have to develop 3 different sites
video.com for hosting video
audio.com for hosting audio
docs.com for hosting docs.
domain names for example only
Almost 80% of the functionality is the same ...
1
vote
1answer
90 views
How would I go about measuring the impact an article has on the internet?
For an application of mine, I analyze the sentiment of articles, using NLTK, to display sentiment trends. But right now all articles weigh the same amount. This does not show a very accurate picture ...
1
vote
3answers
586 views
What scripting languages can be embedded within HTML?
Most of scripting languages (like Pythong, Perl, etc) generates the whole HTMLfile. However, PHP code can be embedded within html codes. PHP will process only code between <?php ?> tags and ...
0
votes
2answers
291 views
Basic web architecture : Perl -> PHP
This is an architecture question. If there is a better forum, please redirect me. Apologies in advance.
Essentially every website is built around a relational database, right? When a user uploads ...
2
votes
2answers
120 views
Can display issues affect SEO?
Can website display issues on certain platforms affect a website's search rankings and potentially hinder any SEO efforts?
5
votes
4answers
432 views
What is a good starting point for small scale PHP development and would a framework be overkill?
I'm a web development intern working on a small PHP application (just a few pages with a little database access) which has fast become a couple of very non-DRY, non-OO, individual scripts.
A ...
1
vote
4answers
320 views
Where should I insert data into the database?
I am making a pretty standard PHP sign up form that will validate the data the user entered and then redirect to a page with a success message. I would like to store this data in a database. Should I ...