Menu
Home
Recent Posts
Showing posts with label
highlight
.
Show all posts
Showing posts with label
highlight
.
Show all posts
PHP: Highlight difference between two strings
7:41 AM
0
Share
You can use the
PHP Inline-Diff package
. It suits your needs, and is quite customisable as well.
It's also licensed under the GPL, so Enjoy!
Read More
Older Posts
Home
Subscribe to:
Comments (Atom)
Development and programming answers
Search articles
Popular Posts
How to: Redirect to another page with jQuery and JavaScript
jQuery is not necessary, and window.location.replace(...) will best simulate an HTTP redirect. It is better than using window.location.h...
How to solve: Fatal error: Allowed memory size of XXX bytes exhausted (tried to allocate XXX bytes)
There is not enough memory to run your script. PHP has reached the memory limit and stops executing it. This error is fatal, the script sto...
iOS: How to check for an active internet connection on iPhone SDK
Here are some methods to check for an active internet connection using iPhone SDK: METHOD 1 : Use a simple (ARC and GCD compatible) class ...
How to: extract IMG tag attributes from HTML with PHP
Using regexp to solve this kind of problem is a bad idea and will likely lead in unmaintainable and unreliable code. Better us an HTML parse...
How to Deserialize JSON into C# dynamic object
An alternative deserialisation approach is suggested here . I modified the code slightly to fix a bug and suit my coding style. All you need...