Turn on PHP Error at Runtime
Sometimes when working with PHP , it is convenient to enable error temporarily on one particular page to troubleshoot an issue. If you want to enable error for just one page at runtime, use one … Read more
Programming
Sometimes when working with PHP , it is convenient to enable error temporarily on one particular page to troubleshoot an issue. If you want to enable error for just one page at runtime, use one … Read more
I told a friend once that I did not like the idea of running PHP on IIS he thought I was old school. In reality, I think that Microsoft has no business running PHP, we … Read more
Accessing an FTP server through the major browsers is very straightforward. You type ftp://thedomainname.com then a box pops up and then you enter your username name and password. For some reason, in Safari (5.0.2) you … Read more
Here we go again! You started with a small virtual machine thinking that it will be just enough for testing and the next thing you know you are running of space on the drive. It … Read more
let’s say you retrieve a few dates from your database in this format: 2009-12-16 00:00:00.000 2010-01-20 00:00:00.000 2010-03-03 00:00:00.000 Now it is time to display them in a drop down list, before doing so you … Read more