Sunday, April 24, 2005
Admin Page For Content Management System (CMS)
Saturday, April 23, 2005
WeberDev.com - PHP & MySQL Code examples,tutorials,Classes and web development resources
AllPosters.com - The World's Largest Poster and Print Store!
Zend Technologies - Absolute Beginners - PHP 101 (part 14): Going to the Polls
Thursday, April 21, 2005
Perl Tutorial
PHP XML and PHP PHP and DOM: The Way of the Widget Tutorial
The MySQL Graph Collection - Version 2.0!
Tuesday, April 19, 2005
CyberText Consulting: Tips and hints: HTML
CyberText Consulting: Tips and hints: HTML: "window.resizeTo( w,h )"
Look RS232 - RS 232 (serial port) programming
Monday, April 18, 2005
How do I do html form file uploads?
PHP MySQL Tutorial : Uploading Files To MySQL Database Using PHP
Create Thumbnail in PHP and database BLOB
Saturday, April 16, 2005
Using a Regular Expression to Match HTML
Using a Regular Expression to Match HTML
The naive approach is something like:
"[^"]*?"(\s*(and|or)\s*"[^"]*?")*
This is basically matching an expression like:
"some text"
or
"some text" and "some more text"
or
"some text" and "some more" or "even more"
and so on.
This expression doesn't handle escaped double quotes within the text.
I found a mistake. For some reason my blogging engine capitalized some characters. Also, if a tag is on multiple lines, the expression above is broken. Here's my updated one.
\s]+))?)+\s*|\s*)/?>
Using a Regular Expression to Match HTML
Using a Regular Expression to Match HTML
The naive approach is something like:
"[^"]*?"(\s*(and|or)\s*"[^"]*?")*
This is basically matching an expression like:
"some text"
or
"some text" and "some more text"
or
"some text" and "some more" or "even more"
and so on.
This expression doesn't handle escaped double quotes within the text.
I found a mistake. For some reason my blogging engine capitalized some characters. Also, if a tag is on multiple lines, the expression above is broken. Here's my updated one.
\s]+))?)+\s*|\s*)/?>