0
votes
0answers
1 views
Access to class attributes by using a variable in Python?
In PHP i can access class attributes like this:
<?php // very simple :)
class TestClass {}
$tc = new TestClass{};
$attribute = 'foo';
$tc->{$attribute} = 'bar';
echo $tc->foo
// should echo …
0
votes
3answers
29 views
Run a batch file using php
Below is my piece of code , on giving the tool name as the input and pressing submit , the batch file corresponding to that tool shall be executed.
<html>
<head>
<title>My …
0
votes
1answer
8 views
How would I implement an upload by email service for my photo sharing website?
I have a photo sharing website in development and want to be able to allow users to add photos and video by email attachment. I have email addresses for the site (hosted with goDaddy). I also have a …
3
votes
2answers
31 views
How to avoid blocking indefinitely when using a PHP script to update a DB table that has an open/pending transaction?
I have found that if I modify table X via SQLplus and don't commit the change, then if my web appliation (which runs as a PHP script under Apache in ModPHP mode) attempts to commit a change to table X …
0
votes
2answers
33 views
Creating php arrays from sql queries
Hiya,
I'm trying to create an array of arrays so I can build a dynamic menu, but I'm getting lost amongst the code. My output looks like this:
$menu = Array (
[0] => Array (
…
-1
votes
2answers
34 views
Configuring Lighttpd, PHP5 and MySQL5 for a no-supervision installation…
I'm creating a script that'll work on a Lighttpd, PHP5 and MySql5. The point is, it must be full-offline script installed and configured with all the requirements by one installer. It's a bit modified …
1
vote
2answers
37 views
multiple php function instances
I've got a function which calculates some data from a table, a put's it into another, it takes a while for the whole process, about 30 mins or something like that.
The function calculates statistics …
0
votes
6answers
46 views
php form script
I'm very new to PHP and am having some trouble. I have a form using HTML which is action=.php method=post
The form is using text boxes and select options, I'm not sure if it makes a difference in …
2
votes
7answers
134 views
Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?
Signing an assembly in .NET involves a public/private key pair. As far as I can tell from what I've read .NET uses the RSA algorithm and the private key to sign the assembly, checking it with the …
1
vote
1answer
14 views
Change Module Name in Zend Framework
ZF 1.9.6
Trying to change the module based on the user agent of the request.
When I try to get the request object from the Front, I get NULL.
Currently I'm trying to set the module name from the …
0
votes
1answer
19 views
Getting php session using c#
I know how to get the source code but the website that I have been working on uses PHP session, this mean that you will need to login(which I have) and use the session ID that the server send back. …
0
votes
1answer
14 views
Is PHPs SoapServer affected by the maximum execution time?
I recently created a Java frontend for a PHP web-service which uses PHPs SoapServer.
My application is performing a long-running data synchronization and from what I know from PHP I prepared myself …
1
vote
4answers
209 views
XSS filtering function in PHP
Hi,
Does anyone know of a good function out there for filtering generic input from forms? Zend_Filter_input seems to require prior knowledge of the contents of the input and I'm concerned that using …
7
votes
10answers
210 views
Is there a possibility of there ever being a PHP.NET?
Sorry if this is a silly and/or stupid question but... Will there ever be, or would it even be possible to have a PHP.NET? Or have I got the wrong end of the stick?
It seemed to me that one of the …
0
votes
0answers
13 views
XDebugging PHPUnit testcases in Eclipse PDT
Until now, I was debugging my PHP scripts and testcases using vim and the appropiate script with python backing it. However, me and my colleagues need to move forward and vim/gvim is not an option for …
