PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.

learn more… | top users | synonyms (6) | php jobs

0
votes
2answers
43 views
+50

Connect to and UDP service though a proxy via fsockopen

I'm trying to make a request on a udp service (dchk.denic.de) through a proxy. I'm currently using fsockopen to connect to this service via the following code : $fp = fsockopen("udp://dchk.denic.de", ...
3
votes
2answers
163 views
+50

When can Dependency Injection Containers become too big, and what can I do about it?

We all know the why Dependency Injection is awesome because it makes code less coupled, easier to test, and much nicer to read! And then some decide to use a Dependency Injection Container like pimple ...
2
votes
2answers
72 views
+100

Decrypting AES CTR Little Endian with PHP

EDIT May 16, 2013: I've rephrased this post in order to better highlight the root of the problem and what I'm looking for. I'm having trouble using PHP to decrypt strings that were encrypted with iOS ...
5
votes
7answers
238 views
+50

Design Patterns: How to create database object/connection only when needed?

I've a simple application, say it has some classes and an "extra" one that handles database requests. Currently i'm creating the database object everytime the app is used, but in some cases there's no ...
0
votes
1answer
141 views
+100

How do I set a date range variable dynamically and redraw a Google chart?

I am using PHP to set a date range for creating a Google Line Chart. For each date in the range a variable is set ($running_balance) to create the points on the line chart using data in a database. ...
0
votes
2answers
71 views
+150

TCP Holepunch implementation

I'm working on an idea of mine which is comparable to a home automation system. The layout of network devices would be like this: What I want is for my Mobile Phone App to be able to communicate ...
0
votes
1answer
36 views
+50

Drupal email variables not appearing

Whenever a user registers an account, the automated emails (which I can set in admin/config/people/accounts) are not carrying over the defined variables for username, email, etc. For example. Here's ...
1
vote
1answer
64 views
+50

phpBB remote file upload

I want to be able to upload a remote file to my server through phpbb without having the file downloaded to my PC first. How can this be achieved? I have some simple code that I have tested and it ...
0
votes
1answer
76 views
+50

mysqlnd: Cannot connect to MySQL 5.5.24, old_passwords is Off

I have two enviroments: Dev: Windows 7, PHP 5.3.24, Apache 2.2.24 Production: Linux, PHP 5.4.10, Apache Both connects to a remote MySQL 5.5.24 Server. Remote connections are allowed. I replaced ...
3
votes
2answers
135 views
+50

why does $_GET not work in header-function?

I already have a question with this issue but a further question belonging $_GET and header-function: I have a multidimensional language site. When calling a page that does not exist, .htaccess will ...
0
votes
2answers
43 views
+50

Mirror folder from remote server in pure PHP

I want to keep a folder on one machine in sync with a folder on another. This is for a WordPress deployment plugin so I can't rely on rsync or other commands being present on either machine. PHP and a ...
0
votes
1answer
53 views
+50

Filter to check for keyword and display sidebar content accordingly

Within Wordpress, is it possible to read the content of a post and look for a keyword, then display sidebar content accordingly? Example: If post content contains the word 'cheese' then don't display ...
1
vote
3answers
40 views
+100

Why Iframe dosen't work for yahoo.com

I find this doesn't work: <iframe src="http://www.yahoo.com"> </iframe> I have read this question, but I don't understand what they mean by add: <?php header('X-Frame-Options: ...
15
votes
2answers
308 views
+50

Run executable from php without spawning a shell

I need to call an executable from an imposed context of a PHP script. Both performance and security wise it's better not to call a shell at all between web server process and executable. Of course I ...