You can send email to mutiple persons at one shot using php. When you submit, this file will be sent an email immediately to the target emails from your database. First create a DB Database “mail” and table “email_list” with 3 fields:... (Continue reading)
If we add cursor: hand on our CSS then this will not work on mozilla / firefox. It will only work on IE [Internet Explorer]. Why? The reason is IE supports the keyword hand other browsers does not. Fix? To work on all... (Continue reading)
Here is a very simple rss reader script using php, < ?php $url = "http://mistonline.in/wp/feed/"; $rss = simplexml_load_file($url); if($rss) { echo '<h1>'.$rss->channel->title.''; echo '<li>'.$rss->channel->pubDate.'</li>'; $items = $rss->channel->item; foreach($items as $item) { $title = $item->title; $link = $item->link; $published_on = $item->pubDate; $description = $item->description; echo '<h3><a href="'.$link.'">'.$title.'</a></h3>'; echo '<span>('.$published_on.')</span>'; echo '<p>'.$description.'</p>'; } } ?> Simplexml_load_file [Manual] Demo VN:F [1.5.7_846]please wait...Rating: 0.0/10 (0 votes cast)VN:F... (Continue reading)
Your browser does not support iframes. VN:F [1.5.7_846]please wait...Rating: 10.0/10 (1 vote cast)VN:F [1.5.7_846]Rating: +1 (from 1 vote)... (Continue reading)
This is an enhanced version of how to disable right click menu from a webpage. Simple just copy and paste this code <script LANGUAGE="JavaScript"> var message="Sorry this function is disabled." function clickIE4(){ if(event.button==2){ alert(message) return false}} function clickNS4(e){ if(document.layers||document.getElementById&&!document.all){ if(e.which==2||e.which==3){ alert(message) return false}}} function disableselect(e){ return false} function reEnable(){ return true} document.onselectstart=new Function("return false") if(window.sidebar){ document.onmousedown=disableselect document.onclick=reEnable} if(document.layers){ document.captureEvents(Event.MOUSEDOWN) document.onmousedown=clickNS4} else if(document.all&&!document.getElementById){ document.onmousedown=clickIE4} document.oncontextmenu=new Function("alert(message);return false") </script> Enjoy!!!!!!!!!!!!! VN:F... (Continue reading)