1
vote
How do I get count of duplicated values and join the table to retrieve each value’s name?
SELECT venues.venue_name, COUNT(volunteers.*) AS cvolun
FROM venues
INNER JOIN volunteers
ON venues.id = volunteers.venue_id
…
11
votes
Bitwise Flags abandoned ?
A lot of programmers these days seem to just have their heads filled with just enough knowledge to brute-force code out and then sent into the workforce without being taught what words like "bitwis …
1
vote
A form that spits out the input
Regardless of how you get it, always remember to never trust user input.
<?php
$sfirst = htmlentities($_POST['first']);
$slast = htmlentities($_POST[' …
0
votes
php exec() error
You're misunderstanding the purpose of exec(). If all you want to do is create a directory then you should use mkdir().
…
3
votes
Tips for managing a large number of files?
In order to avoid creating an excessive number of entries in a single directory, you may want to base creating directories on pieces of the filename. So for instance, if you have a file named d7f5a …
1
vote
mysql_connect() on localhost
The resulting page is blank when there's an error. One of the more common errors to make in your setup is to forget to install either the php-mysql or mysql-server packages. Verify that they're ins …
4
votes
Is there a way (or best practice) to markup the head (<th> equivalent) of a CSV document?
Nope. And to make it even more fun, there's nothing that says that the header line has to be present at all. Good times, good times...
…
0
votes
3
votes
Does python have a call_user_func() like PHP?
If you need to use classes from far-off places (and in fact, if you need any classes at all) then you're best off creating and using a dictionary for them:
funcs = {'Eggs': foo.Eggs …
