0
votes
PHP and MS Access
it looks like a problem with the path seperators. ISTR that you have to pass backslashes not forward slashes
The following works for me - with an MDB file in the webroot called db4
…
3
votes
How do I install MySQL modules within PHP?
As the others say these two values in php.ini are crucial.
I have the following in my php.ini: note the trailing slash - not sure if it is needed - but it does work.
extensi …
2
votes
Log to file via PHP or log to MySQL database - which is quicker?
Use a database - it is the only sane option. Even if it takes a little longer. Once you start with logfiles then you are on a track where it will cause you pain - e.g. moving servers, file permissi …
0
votes
Should an object implement an iterator or contain another object that implements an iterator
Quite simply the container is the place to implement the iterator.
…
0
votes
Gettext: Is it a good idea for the message ID to be the english text?
Having produced many i18n applications most with language switching I will confirm that using a distinct key that isn't the English equivalent is the only way to do it.
Apart from the examp …
1
vote
What is the best method for getting a database connection/object into a function in PHP?
My advice is to avoid global in the bulk of the code - it's dangerous, hard to track and will bite you.
The way that I'd do this is to have a function called getDB() which can either be at …
1
vote
php executing an executable (that writes to the serial port) and freezes
What happens when you run "Untitled1.exe" - does it work outside of the php environment?
I would advise persevering with the loaded extension method - it's a much better way of implementing …
0
votes
What is the simplest way to format a timestamp from sql in php?
I use:
date("F j, Y", strtotime($row['my_timestamp']))
or you can change the SELECT to: DATE_FORMAT(field,'%d %M, %Y') as datetime
…
4
votes
sum value from mysql in php
Get the database to do the work:
select sum(CASE WHEN package = 3 THEN 5 ELSE 0 END)
+ sum(CASE WHEN package = 4 THEN 10 ELSE 0 END)
+ sum(CASE WHEN package = 1 THEN …
3
votes
Optimize MySQL search process
The first method will be faster - but IMO it's not the right way of doing it. I'm in agreement with tehvan about that.
I'd recommend keeping the item_id as is, but add two extra fields one …
0
votes
PHP and outputting one-to-many results
use an array keyed on the id and url iterate through the values and add to it as follows:
$link_categories[ $id ] .= $category." ";
$result = mysql_query("SElECT * FROM LINKS");
$ …
