0
votes
Simple test vs PHPunit
I haven't checked Simple Test for a while, last time it had an eclipse plugin, which is a major factor for me, but it hasn't been updated for a long time.
Sebastian Bergmann is still very actively …
0
votes
PHP line breaks don’t seem to work
As mentioned before, either set it to text/plain or add a HTML break for line breaks:
$content = 'Name: '.$name."</br>\r\n";
…
0
votes
find likewise data from two tables in mysql
This query should do the trick:
UPDATE a SET matched_id =
(SELECT b.id FROM b
WHERE b.title LIKE CONCAT(' % ',a.name,' % ')
OR b.description LIKE CONCAT('% ',a.name,' %')
OR …
7
votes
IDE for PHP development and Drupal?
There is an article on how to configure eclipse/pdt for drupal on drupal.org: Configuring Eclipse
You may also want to take a look …
0
votes
Which is better on performance: double quoted strings with variables or single quoted strings with concatenations?
Here is an older article, last upadted march 2007, but it shows that the performance difference is really low: …
