try converting balance to a float or double first.... perhaps you're coercing 1.0003 to become an integer somehow (in which case it will probably just be 1 and do nothing).
There are some tools OTS (off the shelf proprietary) that slaughter the database schema (it's a disgusting design), but it works like a freaking charm when it comes down to not even touching SQL... I...
If you're wanting to do dynamically named columns (which is OK, and I typically do this when someone wants a "report" they could use in excel or whatever), you'll need to use at least two queries if...
you could serialize the data and write it to a seperate file instead of trying to write it in a configuration file format. It seems like the sensible tool to use in this situation.
ok you get putty, log in with your "SFTP" credential (SFTP meaning... ftp over ssh). So ssh will spawn a shell (probably bash or sh), and you can use "cp" the copy command,
cp <src> <dst>...
In most SQL flavors, you can not expect an aliased column to behave like a real column. This would drastically change the execution plan of MySQL in an undesirable way. The work-around is to replace...
A) it looks like you're trying to find more developing to do. I don't see any problem with this unless you're constantly editing these outgoing emails every day, even so... I don't see why an editor...
Try some alternatives to DreamWeaver... firefox+firebug, eclipse, vim, emacs... DreamWeaver is just marketed really really hard, because Adobe makes a lot of money off of it. I think there are many...
I'm a huge fan of SQL-SERVER, it's the only M$ software I really think they did amazingly well. When I was working with SQL-SERVER 05 and 08: I used AquaData Studio. It's not the best, but their...
This is an awful problem to solve using PHP. Why don't you just put your NIC in promiscuous mode and log all of the incoming traffix on X port / forwarded traffic?
I personally use eclipse and the JavaDoc strings above all of the signatures/variables/classes. Then click generate documentation, if you didn't already tell eclipse where to put it, it will ask and...