-
2009
-
January
-
Clean our odd characters pasted from word to form fields (javascript version)
01/21/09
Here is the javascript version to clean out odd characters pasted from word into form fields:
function html_fix(html) {
html = html.replace(/<\\?\?xml[^>]*>/ig,"");
html = html.replace(/<\/?o:p[^>]*>/ig,"");
html = html.replac -
Cleaning out odd characters and multilingual characters when copyed from Word into your form fields
01/21/09
If you need to convert from one encoding type to another: this helps when certain multi-lingual characters don't show up properly on your browser.
$content = iconv("ISO-8859-1","UTF-8", $content);
Here is a function that cleans out odd characters and -
Create a dynamic rss xml feed with php class
01/19/09
class RSSFeed {
// VARIABLES
// channel vars
var $channel_url;
var $channel_title;
var $channel_description;
var $channel_lang;
var $channel_copyright;
var $channel_date;
var $channel_creator;
var $channel
-
Clean our odd characters pasted from word to form fields (javascript version)
-
January
- 2008
Calendar


