-
izzy made 1 file-release changes.
2009-10-04 18:10:01 UTC in PHP imdb Classes
-
izzy made 1 file-release changes.
2009-09-29 11:23:01 UTC in PHP imdb Classes
-
izzy made 1 file-release changes.
2009-09-29 10:53:01 UTC in PHP imdb Classes
-
izzy made 1 file-release changes.
2009-09-24 09:58:05 UTC in PHP imdb Classes
-
izzy made 1 file-release changes.
2009-09-24 09:56:04 UTC in PHP imdb Classes
-
Sorry for the long delay, but I got no notification of your message and thus was not aware of it. Did you check with the projects wiki? Your question will be answered there: http://projects.izzysoft.de/trac/imdbphp.
2009-09-24 09:13:52 UTC in PHP imdb Classes
-
You're very welcome. Please keep in mind I didn't test the code (which is why I called it "dirty") - though I'm convinced it will do the job.
2009-08-18 13:25:18 UTC in TCPDF - PHP class for PDF
-
I didn't mean it as a true solution - just a quick work-around, either until Nicola decides to support the necessary CSS tags or something better comes up.
preg_match_all('|(<upper>)(.*?)(</upper>)|ims',$text,$matches);
for ($i=0;$i<count($matches[0]);++$i) {
$text = str_replace($matches[0][$i],strtoupper($matches[2][$i]),$text);
}
Something like that would be a...
2009-08-18 13:02:38 UTC in TCPDF - PHP class for PDF
-
The quick fix probably is to use PHPs strtoupper() function, no?.
2009-08-18 09:10:26 UTC in TCPDF - PHP class for PDF
-
Maybe you've got the wrong php.ini file. But you can change that from inside your script as well: ini_set("max_execution_time", "240"); would change it for the running script, without any effect on other scripts.
2009-08-11 16:32:31 UTC in TCPDF - PHP class for PDF