1
vote
5answers
119 views
Latest books to learn PHP, Python?
Decided to learn PHP, Python. Lots of topic/books are there, but don't know which are latest/newbie friendly.
Need your help..
0
votes
6answers
28 views
Books to learn PHP, Python?
Decided to learn PHP, Python. Lots of books are there in market, but donno which are latest/newbie friendly.
Need your help..
1
vote
4answers
209 views
Python vs PHP for Web Service development [closed]
Hello,
This question is running a danger of being marked as already asked. I've went through similar posts on stackoverflow and other sites and was not able to find an exact answer.
I am planning to …
0
votes
3answers
68 views
Django, Python: Is there a simple way to convert PHP-style bracketed POST keys to multidimensional dict?
Specifically, I got a form that calls a Django service (written using Piston, but I don't think that's relevant), sending via POST something like this:
edu_type[3][name] => a
edu_type[3][spec] …
0
votes
2answers
52 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 …
3
votes
8answers
266 views
From a coder’s perspective, what kind of project should I choose python over php for where both could do the job?
I've never used python before. I've used php for about 5 years now. I plan to learn python, but I'm not sure what for yet. If I can think of a project that might be better to do in python, I'll use …
0
votes
4answers
97 views
How to grab live text from a URL?
Im trying to grab all data(text) coming from a URL which is constantly sending text, I tried using PHP but that would mean having the script running the whole time which it isn’t really made for (I …
0
votes
5answers
69 views
Is it possible to script for data entry with Drupal?
Hi, I'm planning on putting a store's inventory on a Drupal site and I'm wondering if it's possible to create a script (maybe in python/php?) to enter the data automatically to Drupal with CCK? Thanks …
1
vote
7answers
90 views
python for in control structure
I am a php programmer trying to understand python's for in syntax
I get the basic for in
for i in range(0,5):
in php would be
for ($i = 0; $i < 5; $i++){
but what does this do
for x, y in z:
…
2
votes
5answers
97 views
Is there something like for i in range(length) in PHP?
In python we have:
for i in range(length)
What about in PHP?
-2
votes
4answers
172 views
To understand: From PHP Array to Python ?
This is Common task In PHP and other programming languages.I moved from PHP developer.
I want to make sure with this collections.
Anyone have who good in python please help me to understand clearly .
…
1
vote
6answers
205 views
Effective Interpreted Programming Language for File/Image manipulation
I need to make a script to read images from a directory, rename them, resize them to a MAX_HEIGHT, MAX_WIDTH, put a watermark logo and save them in JPG.
I was thinking on doing this with an …
0
votes
2answers
47 views
What is the best framework/cms and shopping cart plugin/module/etc. combination?
What is the best framework/cms shopping cart for a beginner php/python developer to implement? I'm potentially going to be developing a site with an online catalog of about one hundred items. Info …
1
vote
7answers
221 views
Is there an algorithm to find unique combinations of 2 lists? 5 lists?
I have N Lists I'd like to find unique combinations of. I've written it out on my whiteboard and it all seems to have a pattern, I just haven't found it yet. I feel I can express a brute-force method …
-2
votes
3answers
88 views
Converting RE code from PHP to Python
I have done a simple program in PHP, now need to convert this into Python:
$string="Google 1600 Amphitheatre Parkway Mountain View, CA 94043 phone";
…
