0
votes
6answers
642 views
What to use for XML parsing / reading in PHP4
Unfortunatly I have to work in a older web application on a PHP4 server;
It now needs to parse a lot of XML for calling webservices (custom protocol, no SOAP/REST);
Under PHP5 I would use S …
7
votes
Best PHP Framework w/ AJAX Support?
Symfony is a pretty awesome framework for PHP; with easy ajax!
;)
http://www.symfony-project.org/
…
0
votes
How do I HTML Encode all the output in a web application?
A nice way I used to escape all user input is by writing a modifier for smarty wich escapes all variables passed to the template; except for the ones that have |unescape attached to it. That way yo …
4
votes
PHP Optimization Tips
There are dozens of small preformance tweaks;
For example:
$text = 'test'; is faster as $text = "test"; (because the double quote's parse variables)
BUT: $text = "testing: $text"; is faster …
3
votes
PHP templates - with PHP
It ain't pure PHP (the templating syntax then), but it works realy nice; Smarty.
For loops you can do:
<ul>
{foreac …
1
vote
Zend PHP5 Certification, does it matter?
It won't help you very much on finding a PHP job;
But it will help you if you want to know every function, syntax and what it does without having to look it up.
I did the PHP4 certification …
5
votes
How to save encrypted data in cookie (using php)?
If you don't want your users to read it don't put it in a cookie;
In stead use Session's with a cookie that stays for a longer time. This way the data stays on the server and not at the computer of …
0
votes
Google Maps Overlays
I don't know how fare you are with your project but maybe you can take a look at GeoDjango? This modified Django release includes all kinds of …
0
votes
Reading/Writing a MS Word file in PHP
I don't know what you are going to use it for, but I needed .doc support for search indexing; What I did was use a little commandline tool called "catdoc"; This transfers the contents of the Word d …
