Tagged Questions
Questions about PHP, a widely-used general-purpose scripting language that is especially suited for Web development.
-2
votes
0answers
35 views
Technologies used to create an electronic stock market. [closed]
I would like to create a stock market. That is I want to give users the ability to buy and sell shares on a platform. This is not an application that would plug into real stock markets such as the ...
-4
votes
1answer
51 views
Are Java web developers a dying species? Seems like everyone is going PHP nowadays [closed]
It seems like everywhere I look nowadays, new start-ups uses and wants PHP web developers.
Are Java web developers a dying species?
How does our future look like?
And should I start to learn PHP to ...
-1
votes
6answers
148 views
What is the recommended learning path for PHP and Javascript? [closed]
For a couple of months now I have been wanting to learn Javascript and PHP but the lack of time didn't give me that opportunity. I'm in a position that have enough time to learn only one language and ...
0
votes
0answers
31 views
loop through multiple arrays incrementing length of string [migrated]
I have
$char=array("1","2","3","4","5","6","7","8","9","0","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","-");
...
3
votes
3answers
139 views
PHP web application architecture/design
I've been thrown head-first into a new job developing web applications in PHP. I'm by no means new to PHP, but I haven't developed large-scale applications before. I'm wondering how to structure my ...
5
votes
1answer
120 views
Help me understand how to stream video
I'm an experienced PHP web developer that is looking to understand the options available for streaming video.
What I have: a video processing system (this one) that can provide output to various ...
-3
votes
0answers
33 views
How can I parse XML data using PHP? [closed]
I want to know how I can parse XML data using PHP. Here is an example of the kind of XML data I want to parse:
<ipinfo xmlns="http://data.quova.com/1" ...
0
votes
2answers
52 views
Adding ordered nodes to tree in arbitrary order
I have a database of nodes. Each node can have exactly one parent, but any number of children. Some nodes may be stored with no parent, but at run time, I can create a default "root" node to be the ...
1
vote
1answer
56 views
PHP Caching, Storing cache in multiple directories
We have a number of client sites still at GoDaddy, and they're complicated sites, so it will take some time for us to get around to migrating them. Ultimately, they'll end up in a dedicated ...
0
votes
0answers
18 views
How to do a space whitespace character in php [migrated]
Currently I'm using below snippet, which uses for indentation several space characters
add_filter('get_search_form', 'filter_search_form');
function filter_search_form($form) {
$form = ' ...
1
vote
1answer
48 views
Using Microsoft Word/Outlook for content publishing to Wordpress [closed]
I am tasked with building an tool to allow users to publish to Wordpress from their PC using MS Word and Outlook. I know, completely defeat the purpose of having Wordpress, but the basic requirement ...
-5
votes
1answer
61 views
What programming language should I use with php? [closed]
I want to create a database/provisioning system for the company I work for. I am considering using PHP/MySQL for the back-end, but I am torn as to what tool I should use to create the user interface. ...
-2
votes
5answers
188 views
Is DreamWeaver a good tool to write PHP code? [closed]
I have started learning PHP. I have Windows XP installed. I use DreamWeaver to write PHP code and XAMP to run it. I love using DreamWeaver as I can handle, HTML, CSS, PHP, JavaScript using ...
-1
votes
1answer
103 views
What is the best programming language for TCP sockets on Linux? Perl, Python or PHP? [closed]
I am totally new to socket programming. Currently, I am working on a socket server-client TCP connection. My mentor introduced me to sockets in Perl. However, I am a PHP web developer, but know ...
4
votes
1answer
88 views
Designing web-based plugin systems correctly so they don't waste as many resources?
Many CMS systems which rely on third parties for much of their code often build "plugin" or "hooks" systems to make it easy for developers to modify the codebase's actions without editing the core ...