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

1
vote
1answer
181 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. ...
1
vote
2answers
56 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
2answers
96 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
105 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 ...
4
votes
3answers
239 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
66 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
3answers
102 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 ...
19
votes
3answers
446 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 ...
17
votes
5answers
17k views
+350

How can one run multiple versions of PHP 5.x on a development LAMP server?

(Sorry for the poorly-phrased title.) I need to test my PHP applications with multiple versions of PHP 5.x, such as PHP 5.0.0 and PHP 5.2.8. Is there a way that I can configure a development LAMP ...
0
votes
1answer
58 views
+50

Access control and XHR requests

I'm struggling with access control implementation for custom framework. RBAC granularity is not needed so I decided to go with some kind of ACL where resources will be controller actions. Here is ...
5
votes
1answer
101 views
+100

Using phar Stream to Write PharData Files

When I try this: $phar = new PharData('./phar.tar', 0, null, Phar::TAR); $phar->addEmptyDir('test'); file_put_contents('phar://./phar.tar/test/foo.txt', 'bar'); I get the following error: ...
9
votes
2answers
203 views
+100

How to write code block using phpDocumentor, tutorials/extended documentation?

How to write code blocks using phpDocumentor while writing tutorials/extended documentation? I have tried <programlisting>, it can generate the <code> tag , but it does not parse its ...
6
votes
4answers
136 views
+100

Get Ajax POST data on php via javascript call

Newbie to php, I am using jquery(knockout js) at client side & PHP at server side. my code. Client side: I am using knockout js(Javascript). to call my PHP service. My Code: ...
20
votes
9answers
1k views
+100

User recognition without cookies or local storage

I'm building an analytic tool and although I can get IP address, browser and operating system from the user agent. I'm wondering if there is a possibility to detect same user without using cookies or ...