<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Php Hot Code</title>
	<atom:link href="/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>We Care About Your Code</description>
	<lastBuildDate>Thu, 15 Oct 2015 01:26:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>WordPress woocommerce product Select feature product to create carousel image</title>
		<link>/wordpress-woocommerce-product-select-feature-product-to-create-carousel-image/</link>
		<comments>/wordpress-woocommerce-product-select-feature-product-to-create-carousel-image/#comments</comments>
		<pubDate>Thu, 15 Oct 2015 01:26:47 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[woo-commerce plugin edit 2014]]></category>

		<guid isPermaLink="false">/?p=239</guid>
		<description><![CDATA[&#160; WordPress woocommerce product : script tutorial &#38; download Has Upload Feature image to upload and display on home page or single product page run the carousel gallery. &#160; &#160;]]></description>
				<content:encoded><![CDATA[<p><a href="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/100.png"><img class="aligncenter  wp-image-240" src="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/100.png?resize=328%2C104" alt="feature product carousel image" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>WordPress woocommerce product : script tutorial &amp; download</p>
<p>Has Upload Feature image to upload and display on home page or single product page run the carousel gallery.</p>
<pre class="brush: plain; title: ; notranslate">

&lt;div id=&quot;featured&quot; class=&quot;carousel slide &quot;&gt;
&lt;div class=&quot;carousel-inner &quot;&gt;
&lt;?php
$args = array(
'post_type' =&gt; 'product',
'meta_key' =&gt; '_featured',
'meta_value' =&gt; 'yes',
'posts_per_page' =&gt; 6,
'post_status' =&gt; 'publish',
'offset' =&gt; 0,
'order' =&gt; 'DESC'
);
$featured_loop = new WP_Query( $args );
if ( $featured_loop-&gt;have_posts() ):
while ( $featured_loop-&gt;have_posts() ) : $featured_loop-&gt;the_post(); ?&gt;

&lt;div class=&quot;&lt;?php echo 'item'; ?&gt;&quot;&gt;
&lt;div class=&quot; &quot;&gt;
&lt;div class=&quot;thumbnail&quot;&gt;
&lt;i class=&quot;tag&quot;&gt;&lt;/i&gt;
&lt;a id=&quot;id-&lt;?php the_id(); ?&gt;&quot; href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;
&lt;?php echo woocommerce_get_product_thumbnail(); ?&gt;
&lt;/a&gt;
&lt;/div&gt;
&lt;div class=&quot;panel-body text-center&quot;&gt;
&lt;h6&gt;&lt;?php the_title(); ?&gt; &lt;/h6&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php endwhile; ?&gt;
&lt;a class=&quot;left carousel-control&quot; href=&quot;#featured&quot; data-slide=&quot;prev&quot;&gt;&lt;i class=&quot;fa fa-arrow-left&quot;&gt;&lt;/i&gt;&lt;/a&gt;
&lt;a class=&quot;right carousel-control&quot; href=&quot;#featured&quot; data-slide=&quot;next&quot;&gt;&lt;i class=&quot;fa fa-arrow-right&quot;&gt;&lt;/i&gt;&lt;/a&gt;
&lt;?php wp_reset_postdata(); endif; ?&gt;
&lt;/div&gt;
&lt;/div&gt;

</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>/wordpress-woocommerce-product-select-feature-product-to-create-carousel-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress upload my media script &#8211; Add Media Button &#8211; download free</title>
		<link>/wordpress-upload-my-media-script-add-media-button-download-free/</link>
		<comments>/wordpress-upload-my-media-script-add-media-button-download-free/#comments</comments>
		<pubDate>Wed, 14 Oct 2015 01:41:19 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">/?p=236</guid>
		<description><![CDATA[WordPress Image upload Script 100% working wordpress media script to add the function.php or where you used on template page just copy and past. For WordPress Developer Search From Correct Code of Upload image Script on Google but i got that correct way of this. &#160; &#160; &#160; &#160; &#160;]]></description>
				<content:encoded><![CDATA[<h1>WordPress Image upload Script 100% working</h1>
<p></p>
<p>wordpress media script to add the function.php or where you used on template page just copy and past.</p>
<p>For WordPress Developer Search From Correct Code of Upload image Script on Google but i got that correct way of this.</p>
<p>&nbsp;</p>
<pre class="brush: plain; title: ; notranslate">


&lt;?php
wp_enqueue_script('jquery');
// This will enqueue the Media Uploader script
wp_enqueue_media();
?&gt;
 &lt;div&gt;
 &lt;label for=&quot;image_url&quot;&gt;Image&lt;/label&gt;
 &lt;input type=&quot;text&quot; name=&quot;image_url&quot; id=&quot;image_url&quot; class=&quot;regular-text&quot;&gt;
 &lt;input type=&quot;button&quot; name=&quot;upload-btn&quot; id=&quot;upload-btn&quot; class=&quot;button-secondary&quot; value=&quot;Upload Image&quot;&gt;

&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(document).ready(function($){
 $('#upload-btn').click(function(e) {
 e.preventDefault();
 var image = wp.media({ 
 title: 'Upload Image',
 // mutiple: true if you want to upload multiple files at once
 multiple: false
 }).open()
 .on('select', function(e){
 // This will return the selected image from the Media Uploader, the result is an object
 var uploaded_image = image.state().get('selection').first();
 // We convert uploaded_image to a JSON object to make accessing it easier
 // Output to the console uploaded_image
 console.log(uploaded_image);
 var image_url = uploaded_image.toJSON().url;
 // Let's assign the url value to the input field
 $('#image_url').val(image_url);
 });
 });
});
&lt;/script&gt;


</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>/wordpress-upload-my-media-script-add-media-button-download-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Software List and Official Websites</title>
		<link>/useful-software-list-and-official-websites/</link>
		<comments>/useful-software-list-and-official-websites/#comments</comments>
		<pubDate>Mon, 12 Oct 2015 23:26:07 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">/?p=232</guid>
		<description><![CDATA[We are create a useful software information on all category of works Office OpenOffice &#8211; office suite PC Suite 602 &#8211; office suite AbiWord &#8211; text editor Atlantis Nova &#8211; text editor Microsoft PowerPoint Viewer &#8211; power point files viewer Adobe Reader &#8211; pdf reader Foxit PDF Reader &#8211; pdf reader PDFCreator &#8211; create pdf documents Doc Convertor &#8211; document convertor Convert &#8211; unit convertor [&#8230;]]]></description>
				<content:encoded><![CDATA[<div id="zA">
<div id="zA-widget-layout-wrap" class="widget-layout-wrap ">
<div class="modWrap">
<div>We are create a useful software information on all category of works</div>
<div></div>
<div><a href="http://i1.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/computer_programs_hamrocomputerguru.jpg"><img class="aligncenter  wp-image-233" src="http://i1.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/computer_programs_hamrocomputerguru.jpg?resize=411%2C277" alt="all utility software official website" data-recalc-dims="1" /></a></div>
<div></div>
<div><span style="font-size: medium;"><strong>Office</strong></span></p>
<p align="left"><a href="http://www.openoffice.org/" target="_blank" rel="nofollow">OpenOffice</a> &#8211; office suite<br />
<a href="http://www.software602.com/products/pcs/" target="_blank" rel="nofollow">PC Suite 602</a> &#8211; office suite<br />
<a href="http://www.abisource.com/" target="_blank" rel="nofollow">AbiWord</a> &#8211; text editor<br />
<a href="http://www.atlantiswordprocessor.com/" target="_blank" rel="nofollow">Atlantis Nova</a> &#8211; text editor<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=048DC840-14E1-467D-8DCA-19D2A8FD7485&amp;displaylang=en" target="_blank" rel="nofollow">Microsoft PowerPoint Viewer</a> &#8211; power point files viewer<br />
<a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank" rel="nofollow">Adobe Reader</a> &#8211; pdf reader<br />
<a href="http://www.foxitsoftware.com/" target="_blank" rel="nofollow">Foxit PDF Reader</a> &#8211; pdf reader<br />
<a href="http://sector7g.wurzel6.de/pdfcreator/index_en.htm" target="_blank" rel="nofollow">PDFCreator</a> &#8211; create pdf documents<br />
<a href="http://www.dbtalk.net/doc-convertor/" target="_blank" rel="nofollow">Doc Convertor</a> &#8211; document convertor<br />
<a href="http://joshmadison.net/software/convert/" target="_blank" rel="nofollow">Convert</a> &#8211; unit convertor<br />
<a href="http://www.xyntec.com/converber.htm" target="_blank" rel="nofollow">Converber</a> &#8211; unit convertor<br />
<a href="http://www.mozilla.org/projects/calendar/sunbird/" target="_blank" rel="nofollow">Sunbird</a> &#8211; calendar/organizer<br />
<a href="http://www.essentialpim.com/" target="_blank" rel="nofollow">EssentialPIM Free</a> &#8211; calendar/organizer<br />
<a href="http://www.phraseexpress.com/" target="_blank" rel="nofollow">PhraseExpress</a> &#8211; speed up your writing<br />
<a href="http://atnotes..free.fr/" target="_blank" rel="nofollow">ATnotes</a> &#8211; create notes on the desktop</p>
<h1 align="left"><span style="font-size: medium;">Archive managers</span></h1>
<p align="left"><a href="http://www.7-zip..org/" target="_blank" rel="nofollow">7-Zip</a> &#8211; compression program<br />
<a href="http://www.izarc.org/" target="_blank" rel="nofollow">IZArc</a> &#8211; compression program<br />
<a href="http://www.tugzip.com/" target="_blank" rel="nofollow">TugZIP</a> &#8211; compression program<br />
<a href="http://www.larshederer.homepage.t-online.de/english.htm" target="_blank" rel="nofollow">CabPack</a> &#8211; compression program<br />
<a href="http://www.legroom.net/modules.php?op=modload&amp;name=Open_Source&amp;file=index&amp;page=software&amp;app=uniextract" target="_blank" rel="nofollow">Universal Extractor</a> &#8211; extract files from any type of archive</p>
</div>
<h1 align="left"><span style="font-size: medium;">Internet</span></h1>
<p align="left"><a href="http://www.mozilla.com/firefox/" target="_blank" rel="nofollow">Firefox</a> &#8211; web browser<br />
<a href="http://www.microsoft.com/windows/ie/default.mspx" target="_blank" rel="nofollow">Internet Explorer</a>- web browser<br />
<a href="http://www.maxthon.com/" target="_blank" rel="nofollow">Maxthon</a> &#8211; web browser<br />
<a href="http://www.opera.com/" target="_blank" rel="nofollow">Opera</a> &#8211; web browser<br />
<a href="http://www.avantbrowser.com/" target="_blank" rel="nofollow">Avant Browser</a> &#8211; web browser<br />
<a href="http://www.mozilla.com/thunderbird/" target="_blank" rel="nofollow">Thunderbird</a> &#8211; email client<br />
<a href="http://www.poptray.org/" target="_blank" rel="nofollow">PopTray</a> &#8211; check for emails<br />
<a href="http://www.freedownloadmanager.org/" target="_blank" rel="nofollow">Free Download Manager</a> &#8211; download manager<br />
<a href="http://www.flashget.com/" target="_blank" rel="nofollow">FlashGet</a> &#8211; download manager<br />
<a href="http://www.wellget.com/" target="_blank" rel="nofollow">WellGet</a> &#8211; download manager<br />
<a href="http://www.westbyte.com/dm/" target="_blank" rel="nofollow">Download Master</a> &#8211; download manager<br />
<a href="http://users.ugent.be/~bpuype/wget/" target="_blank" rel="nofollow">WGET</a> &#8211; commandline download manager<br />
<a href="http://www.httrack.com/" target="_blank" rel="nofollow">HTTrack</a> &#8211; offline browser<br />
<a href="http://www.webreaper.net/" target="_blank" rel="nofollow">WebReaper</a> &#8211; offline browser<br />
<a href="http://www.yeahreader.com/" target="_blank" rel="nofollow">Yeah Reader</a> &#8211; RSS reader<br />
<a href="http://www.curiostudio.com/" target="_blank" rel="nofollow">GreatNews</a> &#8211; RSS reader<br />
<a href="http://www.rssowl.org/" target="_blank" rel="nofollow">RSSOwl</a> &#8211; RSS reader</p>
<h1 align="left"><span style="font-size: medium;">Audio</span></h1>
<p align="left"><a href="http://www.foobar2000.com/" target="_blank" rel="nofollow">Foobar2000</a> &#8211; audio player<br />
<a href="http://www.winamp.com/" target="_blank" rel="nofollow">WinAmp</a> &#8211; audio player<br />
<a href="http://www.mpesch3.de/" target="_blank" rel="nofollow">1by1</a> &#8211; audio player<br />
<a href="http://www.jetaudio.com/" target="_blank" rel="nofollow">JetAudio</a> &#8211; audio player<br />
<a href="http://support.xmplay.com/" target="_blank" rel="nofollow">XMPlay</a> &#8211; audio player<br />
<a href="http://xion.r2.com.au/" target="_blank" rel="nofollow">Xion</a> &#8211; audio player<br />
<a href="http://koti.welho.com/hylinen/apollo/" target="_blank" rel="nofollow">Apollo</a> &#8211; audio player<br />
<a href="http://www.mediamonkey.com/" target="_blank" rel="nofollow">MediaMonkey</a> &#8211; music organizer<br />
<a href="http://users.otenet.gr/~jtcliper/tgf/" target="_blank" rel="nofollow">The GodFather</a> &#8211; music organizer<br />
<a href="http://www.dbpoweramp.com/" target="_blank" rel="nofollow">dBpowerAMP</a> &#8211; audio converter<br />
<a href="http://audacity.sourceforge.net/" target="_blank" rel="nofollow">Audacity</a> &#8211; audio converter<br />
<a href="http://www.nch.com.au/wavepad/index_b.html?ref=google&amp;ref2=c18wavepadmp3&amp;ref3=sale" target="_blank" rel="nofollow">WavePad</a> &#8211; audio converter<br />
<a href="http://www.kreatives.org/kristal/" target="_blank" rel="nofollow">Kristal Audio Engine</a> &#8211; audio editor<br />
<a href="http://www.exactaudiocopy..de/" target="_blank" rel="nofollow">Exact Audio Copy</a> &#8211; CD ripper<br />
<a href="http://www.audiograbber.com-us.net/" target="_blank" rel="nofollow">Audiograbber</a> &#8211; CD ripper<br />
<a href="http://sourceforge.net/projects/cdexos/" target="_blank" rel="nofollow">CDex</a> &#8211; CD ripper<br />
<a href="http://massid3lib.sourceforge.net/" target="_blank" rel="nofollow">Mp3 Tag Tools</a> &#8211; tag editor<br />
<a href="http://www.mp3tag.de/en/" target="_blank" rel="nofollow">Mp3tag</a> &#8211; tag editor<br />
<a href="http://lazorsoftware.com/" target="_blank" rel="nofollow">Taggin’ MP3</a> &#8211; tag editor<br />
<a href="http://www.monkeysaudio.com/" target="_blank" rel="nofollow">Monkey’s Audio</a> &#8211; APE compressor/decompre ssor<br />
<a href="http://www.mptrim.com/" target="_blank" rel="nofollow">mpTrim</a> &#8211; mp3 editor<br />
<a href="http://www.mptrim.com/WavTrim.html" target="_blank" rel="nofollow">WavTrim</a> &#8211; wave editor<br />
<a href="http://www.guerillasoft.co.uk/encspot/" target="_blank" rel="nofollow">EncSpot Basic</a> &#8211; analyse mp3 files</p>
<h1 align="left"><span style="font-size: medium;">Video</span></h1>
<p align="left"><a href="http://www.microsoft.com/windows/windowsmedia/default.mspx" target="_blank" rel="nofollow">Windows Media Player</a> &#8211; audio/video player<br />
<a href="http://www.videolan.org/" target="_blank" rel="nofollow">VLC</a> &#8211; video player<br />
<a href="http://sourceforge.net/projects/guliverkli/" target="_blank" rel="nofollow">Media Player Classic</a> &#8211; video player<br />
<a href="http://mv2.czweb.org/" target="_blank" rel="nofollow">MV2Player</a> &#8211; video player<br />
<a href="http://www.crystalplayer.com/" target="_blank" rel="nofollow">CrystalPlayer 1.95</a> &#8211; video player<br />
<a href="http://www.inmatrix.com/" target="_blank" rel="nofollow">Zoom Player</a> &#8211; video player<br />
<a href="http://www.gomplayer.com/" target="_blank" rel="nofollow">GOM Player</a> &#8211; video player<br />
<a href="http://www.urusoft.net/products.php?lang=1" target="_blank" rel="nofollow">viPlay</a> &#8211; video player<br />
<a href="http://dsplayer.de/dspweb/" target="_blank" rel="nofollow">DSPlayer</a> &#8211; video player<br />
<a href="http://www.virtualdub.org/" target="_blank" rel="nofollow">VirtualDub</a> &#8211; video editor<br />
<a href="http://www.camstudio.org/" target="_blank" rel="nofollow">CamStudio</a> &#8211; video screen recording<br />
<a href="http://www.bobyte.com/AviSplit/" target="_blank" rel="nofollow">AviSplit</a> &#8211; Avi splitter<br />
<a href="http://www.geovid.com/Video_mp3_Extractor/" target="_blank" rel="nofollow">Video mp3 Extractor</a> &#8211; rip audio from video files<br />
<a href="http://www.ipod-video-converter.org/" target="_blank" rel="nofollow">Free iPod Converter</a> &#8211; convert all popular video formats to iPod video<br />
<a href="http://www.team-mediaportal.com/" target="_blank" rel="nofollow">MediaPortal</a> &#8211; turning your PCinto a Media Center<br />
<a href="http://members.home..nl/thefilmmachine/" target="_blank" rel="nofollow">The FilmMachine</a></p>
<h1 align="left"><span style="font-size: medium;">Image</span></h1>
<p align="left"><a href="http://www.gimp.org/" target="_blank" rel="nofollow">Gimp</a> &#8211; image editor<br />
<a href="http://www.photofiltre.com/" target="_blank" rel="nofollow">PhotoFiltre</a> &#8211; image editor<br />
<a href="http://www.getpaint.net/" target="_blank" rel="nofollow">Paint.net</a> &#8211; image editor<br />
<a href="http://www.ambientdesign.com/artrage.html" target="_blank" rel="nofollow">ArtRage</a> &#8211; image editor<br />
<a href="http://www.artweaver.de/index.php?id=59,141,0,0,1,0" target="_blank" rel="nofollow">Artweaver</a> &#8211; image editor<br />
<a href="http://www.irfanview.com/" target="_blank" rel="nofollow">IrfanView</a> &#8211; image viewer<br />
<a href="http://www.picasa.com/" target="_blank" rel="nofollow">Picasa</a> &#8211; image viewer<br />
<a href="http://www.xnview.com/" target="_blank" rel="nofollow">XnView</a> &#8211; image viewer<br />
<a href="http://faststone.org/" target="_blank" rel="nofollow">FastStone Image Viewer</a> &#8211; image viewer<br />
<a href="http://www.futurix.co.uk/imager/" target="_blank" rel="nofollow">FuturixImager</a> &#8211; image viewer<br />
<a href="http://www.fookes.com/ezthumbs/" target="_blank" rel="nofollow">Easy Thumbnails</a> &#8211; create thumbnails from images<br />
<a href="http://www.jojosoftware.de/jojothumb/english/default.htm" target="_blank" rel="nofollow">JoJoThumb</a> &#8211; create thumbnails from images<br />
<a href="http://www.eunq.com/" target="_blank" rel="nofollow">iWebAlbum</a> &#8211; create web photo albums<br />
<a href="http://jalbum.net/" target="_blank" rel="nofollow">JAlbum</a> &#8211; create web photo albums<br />
<a href="http://www.bosseye.com/boxshot/index.htm" target="_blank" rel="nofollow">3D Box Shot Maker</a> &#8211; design quality box shot<br />
<a href="http://faststone.org/" target="_blank" rel="nofollow">FastStone Capture</a> &#8211; screen capture<br />
<a href="http://www.ntwind.com/software/winsnap.html" target="_blank" rel="nofollow">WinSnap</a> &#8211; screen capture</p>
<h1 align="left"><span style="font-size: medium;">3D</span></h1>
<p align="left"><a href="http://www.blender.org/cms/Home.2.0.html" target="_blank" rel="nofollow">Blender3D</a> &#8211; 3D renderer<br />
<a href="http://www.3delight.com/index.htm" target="_blank" rel="nofollow">3Delight Free</a> &#8211; 3D renderer<br />
<a href="https://sketchup.google.com/product_suf.html" target="_blank" rel="nofollow">SketchUp</a> &#8211; 3D modeling<br />
<a href="http://usa.autodesk.com/adsk/servlet/index?siteID=123112&amp;id=7639525" target="_blank" rel="nofollow">Maya Learning Edition</a> &#8211; 3D modeling</p>
<h1 align="left"><span style="font-size: medium;">Developers</span></h1>
<p align="left"><a href="http://www.autoitscript.com/autoit3/" target="_blank" rel="nofollow">AutoIt</a> &#8211; task automation<br />
<a href="http://www.autoitscript.com/autoit3/scite/downloads.php" target="_blank" rel="nofollow">SciTE4AutoIt3</a> &#8211; text editor for AutoIt<br />
<a href="http://www.autohotkey.com/" target="_blank" rel="nofollow">AutoHotkey</a> &#8211; task automation<br />
<a href="http://www.mpsoftware.dk/" target="_blank" rel="nofollow">PHP Designer</a> &#8211; PHP editor<br />
<a href="http://notepad-plus.sourceforge.net/" target="_blank" rel="nofollow">Notepad++</a> &#8211; text editor<br />
<a href="http://context.cx/component/option,com_docman/Itemid,48/" target="_blank" rel="nofollow">ConTEXT Editor</a> &#8211; text editor<br />
<a href="http://www.pspad.com/en/" target="_blank" rel="nofollow">PSPad</a> &#8211; text editor<br />
<a href="http://foxeditor.sourceforge.net/" target="_blank" rel="nofollow">FoxEditor</a> &#8211; text editor<br />
<a href="http://www.crimsoneditor.com/" target="_blank" rel="nofollow">Crimson Editor</a> &#8211; source code editor<br />
<a href="http://www.elfima.com/enotepad.php" target="_blank" rel="nofollow">Elfima Notepad</a> &#8211; text editor<br />
<a href="http://www.flos-freeware.ch/notepad2.html" target="_blank" rel="nofollow">Notepad2</a> &#8211; text editor<br />
<a href="http://www.nvu.com/" target="_blank" rel="nofollow">Nvu</a> &#8211; HTML editor<br />
<a href="http://www.alleycode.com/" target="_blank" rel="nofollow">Alleycode</a> &#8211; HTML editor<br />
<a href="http://www.blocknote.net/" target="_blank" rel="nofollow">BlockNote</a> &#8211; web page editor<br />
<a href="http://www.weaverslave.ws/weaverslave.31.html" target="_blank" rel="nofollow">Weaverslave</a> &#8211; web page editor</p>
<h1 align="left"><span style="font-size: medium;">CD/DVD</span></h1>
<p align="left"><a href="http://www.deepburner.com/" target="_blank" rel="nofollow">DeepBurner</a> &#8211; CD/DVD burner<br />
<a href="https://www.cdburnerxp.se/" target="_blank" rel="nofollow">CDBurner XP Pro</a> &#8211; CD/DVD burner<br />
<a href="http://www.burnatonce.net/" target="_blank" rel="nofollow">BurnAtOnce</a> &#8211; CD/DVD burner<br />
<a href="http://www.nch.com.au/burn/index.html" target="_blank" rel="nofollow">Express Burn</a> &#8211; CD/DVD burner<br />
<a href="http://www.zillasoft.ws/" target="_blank" rel="nofollow">Zilla CD-DVD Rip’n’Burn</a> &#8211; CD/DVD burner<br />
<a href="http://www.imgburn.com/" target="_blank" rel="nofollow">ImgBurn</a> &#8211; ISO, BIN burner<br />
<a href="http://www.daemon-tools.cc/" target="_blank" rel="nofollow">Daemon tools</a> &#8211; virtual CD/DVD<br />
<a href="https://en.wikipedia.org/wiki/DVD_Decrypter/" target="_blank" rel="nofollow">DVD Decrypter</a> &#8211; DVD ripper<br />
<a href="http://www.dvdshrink.org/" target="_blank" rel="nofollow">DVD Shrink</a> &#8211; DVD ripper<br />
<a href="http://www.cdspeed2000.com/" target="_blank" rel="nofollow">Nero CD-DVD Speed</a> &#8211; CD/DVD info and quality test</p>
<h1 align="left"><span style="font-size: medium;">Education</span></h1>
<p align="left"><a href="http://www.speqmath.com/" target="_blank" rel="nofollow">SpeQ Mathematics</a> &#8211; mathematics program<br />
<a href="http://www.gnome.org/projects/dia/" target="_blank" rel="nofollow">Dia</a> &#8211; diagram creation program<br />
<a href="https://earth.google.com/" target="_blank" rel="nofollow">Google Earth</a> &#8211; explore the world<br />
<a href="http://sourceforge.net/projects/nasa-exp/" target="_blank" rel="nofollow">NASA World Wind</a> &#8211; 3D virtual globe<br />
<a href="http://www.shatters.net/celestia/" target="_blank" rel="nofollow">Celestia</a> &#8211; explore the space<br />
<a href="http://www.stellarium.org/" target="_blank" rel="nofollow">Stellarium</a> &#8211; planetarium</p>
<h1 align="left"><span style="font-size: medium;">Miscellaneous</span></h1>
<p><a href="http://www.nliteos.com/" target="_blank" rel="nofollow">nLite</a> &#8211; Build your own custom Windows disk.<br />
<a href="http://www.microsoft.com/downloads/details.aspx?familyid=6d58729d-dfa8-40bf-afaf-20bcb7f01cd1&amp;displaylang=en" target="_blank" rel="nofollow">VirtualPC</a> &#8211; create virtual machines<br />
<a href="http://www.grabmotion.com/" target="_blank" rel="nofollow">grabMotion</a> &#8211; webcam capture<br />
<a href="http://www.splinterware.com/" target="_blank" rel="nofollow">iDailyDiary</a> &#8211; simple page-for-a-day diary<br />
<a href="http://www.gold-software.com/PivotStickfigureAnimator-review5412.htm" target="_blank" rel="nofollow">Pivot Stickfigure Animator</a> &#8211; create stick-figure animations<br />
<a href="http://www.debugmode.com/wink/" target="_blank" rel="nofollow">Wink</a> &#8211; create presentations<br />
<a href="http://www.scribus.net/" target="_blank" rel="nofollow">Scribus</a> &#8211; professional page layout<br />
<a href="http://freemind.sourceforge.net/wiki/index.php/Main_Page" target="_blank" rel="nofollow">FreeMind</a> &#8211; midn mapping software<br />
<a href="http://windowslivewriter.spaces.live.com/blog/cns!D85741BB5E0BE8AA!174.entry" target="_blank" rel="nofollow">Windows Live Writer</a> &#8211; WYSIWYG blog authoring</p>
</div>
</div>
</div>
<div id="zB"></div>
<div id="zC">
<div id="zC-widget-layout-wrap" class="widget-layout-wrap ">
<div class="modWrap">
<h1 align="left"><span style="font-size: medium;">P2P</span></h1>
<p align="left"><a href="http://www.utorrent.com/" target="_blank" rel="nofollow">µTorrent</a> &#8211; torrent client<br />
<a href="http://azureus.sourceforge.net/" target="_blank" rel="nofollow">Azureus</a> &#8211; torrent client<br />
<a href="http://www.bitcomet.com/" target="_blank" rel="nofollow">BitComet</a> &#8211; torrent client<br />
<a href="http://pingpong-abc.sourceforge.net/" target="_blank" rel="nofollow">ABC</a> &#8211; torrent client<br />
<a href="http://www.bittornado.com/" target="_blank" rel="nofollow">BitTornado</a> &#8211; torrent client<br />
<a href="http://www.emule-project.net/" target="_blank" rel="nofollow">eMule</a> &#8211; p2p client<br />
<a href="http://www.slsknet.org/" target="_blank" rel="nofollow">SoulSeek</a> &#8211; p2p client<br />
<a href="http://shareaza.sourceforge.net/" target="_blank" rel="nofollow">Shareaza</a> &#8211; p2p client<br />
<a href="http://www.dcpp.net/" target="_blank" rel="nofollow">DC++</a> &#8211; Direct Connect network client<br />
<a href="http://phoenixlabs.org/pg2/" target="_blank" rel="nofollow">PeerGuardian</a> &#8211; IP blocker</p>
<h1 align="left"><span style="font-size: medium;">Chat</span></h1>
<p><a href="http://www.miranda-im.org/" target="_blank" rel="nofollow">Miranda</a> &#8211; chat client<br />
<a href="https://messenger.msn.com/" target="_blank" rel="nofollow">MSN Messenger</a> &#8211; chat client<br />
<a href="http://messenger.yahoo.com/" target="_blank" rel="nofollow">Yahoo Messenger</a> &#8211; chat client<br />
<a href="http://www.qip.ru/" target="_blank" rel="nofollow">QIP</a> &#8211; chat client<br />
<a href="http://gaim.sourceforge.net/" target="_blank" rel="nofollow">Gaim</a> &#8211; chat client<br />
<a href="http://jajc.jrudevels.org/" target="_blank" rel="nofollow">JAJC</a> &#8211; chat client<br />
<a href="http://hydrairc.com/" target="_blank" rel="nofollow">HydraIRC</a> &#8211; IRC client<br />
<a href="http://www.talkative-irc.com/" target="_blank" rel="nofollow">Talkative IRC</a> &#8211; IRC client<br />
<a href="http://icechat.net/" target="_blank" rel="nofollow">IceChat</a> &#8211; IRC client<br />
<a href="https://www.skype.com/" target="_blank" rel="nofollow">Skype</a> &#8211; VOIP client<br />
<a href="https://www.google.com/talk/" target="_blank" rel="nofollow">Google Talk</a> &#8211; VOIP client<br />
<a href="http://www.voipstunt.com/en/index.html" target="_blank" rel="nofollow">VoipStunt</a> &#8211; VOIP client<br />
<a href="http://www.gizmoproject.com/" target="_blank" rel="nofollow">Gizmo</a> &#8211; VOIP client<br />
<a href="http://www.wengo.com/" target="_blank" rel="nofollow">Wengo</a> &#8211; VOIP client</p>
<p><strong> <span style="font-size: medium;">Security</span></strong></p>
<p align="left"><a href="http://free.grisoft.com/" target="_blank" rel="nofollow">AVG Free</a> &#8211; antivirus<br />
<a href="http://www.avast.com/" target="_blank" rel="nofollow">Avast Home Free</a> &#8211; antivirus<br />
<a href="http://www.free-av.com/" target="_blank" rel="nofollow">AntiVir PersonalEdition</a> &#8211; antivirus<br />
<a href="http://www.bitdefender.com/site/Main/view/Download-Free-Products.html?menu_id=21" target="_blank" rel="nofollow">BitDefender Free</a> &#8211; antivirus<br />
<a href="http://clamwin.com/" target="_blank" rel="nofollow">ClamWin</a> &#8211; antivirus<br />
<a href="http://www.cyberdefender.com/products.html" target="_blank" rel="nofollow">CyberDifender</a> &#8211; Internet Security Suite<br />
<a href="http://www.lavasoftusa.com/software/adaware/" target="_blank" rel="nofollow">Ad-aware</a> &#8211; anti-spyware<br />
<a href="http://www.spybot.info/" target="_blank" rel="nofollow">Spybot: Search &amp; Destroy</a> &#8211; anti-spyware<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=435BFCE7-DA2B-4A6A-AFA4-F7F14E605A0D&amp;displaylang=en" target="_blank" rel="nofollow">Windows Defender</a> &#8211; anti-spyware<br />
<a href="http://www.javacoolsoftware.com/" target="_blank" rel="nofollow">SpywareBlaster</a> &#8211; anti-spyware<br />
<a href="http://www.spywareterminator.com/" target="_blank" rel="nofollow">Spyware Terminator</a> &#8211; anti-spyware<br />
<a href="http://www.microsoft.com/technet/sysinternals/utilities/RootkitRevealer.mspx" target="_blank" rel="nofollow">Tootkit Reveaker</a> &#8211; rootkit detection utility<br />
<a href="http://winpooch.free.fr/page/home.php?lang=en&amp;page=home" target="_blank" rel="nofollow">Winpooch</a> &#8211; system protection<br />
<a href="http://www.hijackfree.com/en/hijackfree/" target="_blank" rel="nofollow">HiJack Free</a> &#8211; system protection<br />
<a href="http://www.spywareinfo.com/~merijn/" target="_blank" rel="nofollow">HighJackThis</a> &#8211; hijackers detector and remover<br />
<a href="https://www.filehippo.com/download_kerio_personal_firewall/?468" target="_blank" rel="nofollow">Kerio Personal Firewall</a> &#8211; firewall<br />
<a href="https://www.filehippo.com/download_sygate_personal_firewall/" target="_blank" rel="nofollow">Sygate Personal Firewall</a> &#8211; firewall<br />
<a href="http://www.zonelabs.com/store/content/company/products/znalm/freeDownload.jsp?dc=12bms&amp;ctry=%E2%8C%A9=bg" target="_blank" rel="nofollow">ZoneAlarm</a> &#8211; firewall<br />
<a href="http://axcrypt.axantum.com/" target="_blank" rel="nofollow">AxCrypt</a> &#8211; file encryption<br />
<a href="http://www.scar5.com/" target="_blank" rel="nofollow">Simple File Shredder</a> &#8211; securely delete files<br />
<a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank" rel="nofollow">PuTTy</a> &#8211; SSH client<br />
<a href="http://keepass.info/" target="_blank" rel="nofollow">KeePass</a> &#8211; password manager<br />
<a href="http://locknote.steganos.com/" target="_blank" rel="nofollow">LockNote</a> &#8211; password manager<br />
<a href="http://zeraha.org/dload.php?action=file&amp;file_id=42" target="_blank" rel="nofollow">nPassword</a> &#8211; password manager<br />
<a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4b4aba06-b5f9-4dad-be9d-7b51ec2e5ac9&amp;DisplayLang=en" target="_blank" rel="nofollow">Microsoft Baseline Security Analyzer</a> &#8211; identify security misconfigurations</p>
<h1 align="left"><span style="font-size: medium;">Network</span></h1>
<p align="left"><a href="http://www.hamachi.cc/" target="_blank" rel="nofollow">Hamachi</a> &#8211; VPN client<br />
<a href="http://www.realvnc.com/" target="_blank" rel="nofollow">RealVNC</a> &#8211; remote control<br />
<a href="http://ultravnc.sourceforge.net/" target="_blank" rel="nofollow">UltraVNC</a> &#8211; remote control<br />
<a href="http://www.ethereal.com/" target="_blank" rel="nofollow">Ethereal</a> &#8211; local area network administration<br />
<a href="http://www.mikrotik.com/thedude.php" target="_blank" rel="nofollow">The Dude</a> &#8211; network administration<br />
<a href="https://www.wireshark.org/" target="_blank" rel="nofollow">Wireshark</a> &#8211; network administration<br />
<a href="http://www.angryziber.com/ipscan/" target="_blank" rel="nofollow">Angry IP Scanner</a> &#8211; IP scanner<br />
<a href="http://www.ks-soft.net/ip-tools.eng/" target="_blank" rel="nofollow">IP-Tools</a> &#8211; IP scanner<br />
<a href="http://www.nsauditor.com/network_tools/free_port_scanner.html" target="_blank" rel="nofollow">Free Port Scanner</a> &#8211; IP scanner<br />
<a href="http://readerror.gmxhome.de/" target="_blank" rel="nofollow">NetMeter</a> &#8211; network bandwidth monitoring</p>
<h1 align="left"><span style="font-size: medium;">Servers</span></h1>
<p align="left"><a href="http://filezilla..sourceforge.net/" target="_blank" rel="nofollow">FileZilla</a> &#8211; FTP client<br />
<a href="http://filezilla.sourceforge.net/" target="_blank" rel="nofollow">FileZilla Server</a> &#8211; FTP server<br />
<a href="http://www.encrypted-ftp.com/" target="_blank" rel="nofollow">EFTP</a> &#8211; FTP client/server<br />
<a href="http://www.apachefriends.org/en/xampp-windows.html" target="_blank" rel="nofollow">XAMPP</a> &#8211; integrated server package of Apache, mySQL, PHP and Perl<br />
<a href="http://www.en.wampserver.com/" target="_blank" rel="nofollow">WAMP</a> &#8211; Apache, PHP5 and MySQL server</p>
<p align="left"><strong><span style="font-size: medium;"> Codecs</span></strong></p>
<p align="left"><a href="http://www.headbands.com/gspot/" target="_blank" rel="nofollow">GSpot</a> &#8211; codec information<br />
<a href="http://ac3filter.net/" target="_blank" rel="nofollow">AC3Filter</a> &#8211; audio codec<br />
<a href="http://www.koepi.org/" target="_blank" rel="nofollow">Xvid</a> &#8211; video codec<br />
<a href="http://www.codecguide.com/" target="_blank" rel="nofollow">QuickTime Alternative</a> &#8211; video codec<br />
<a href="http://www.codecguide.com/" target="_blank" rel="nofollow">Real Alternative</a> &#8211; video codec<br />
<a href="http://www.free-codecs.com/download/K_Lite_Codec_Pack.htm" target="_blank" rel="nofollow">K-Lite Codec Pack</a> &#8211; all codecs</p>
<h1 align="left"><span style="font-size: medium;">System Ulilities</span></h1>
<p align="left"><a href="http://ccleaner.com/" target="_blank" rel="nofollow">CCleaner</a> &#8211; system cleaner<br />
<a href="http://www.xp-antispy.org/" target="_blank" rel="nofollow">xp-AntiSpy</a> &#8211; OS setup<br />
<a href="http://www.jv16.org/" target="_blank" rel="nofollow">jv16 Powertools</a> &#8211; system utilities<br />
<a href="http://www.xtort.net/xtort/xpsyspad.php" target="_blank" rel="nofollow">XP SysPad</a> &#8211; system monitoring utility<br />
<a href="http://www.whatsrunning.net/whatsrunning/" target="_blank" rel="nofollow">What’s Running</a> &#8211; process guard<br />
<a href="http://www.resplendence.com/" target="_blank" rel="nofollow">Registrar Lite</a> &#8211; registry editor<br />
<a href="http://www.pkostov.com/wipcfg.html" target="_blank" rel="nofollow">WinIPConfig</a> &#8211; replacement for “ipconfig.exe” and “route.exe”<br />
<a href="http://ccollomb.free.fr/unlocker/index.htm" target="_blank" rel="nofollow">Unlocker</a> &#8211; file eraser<br />
<a href="http://www.heidi.ie/eraser/" target="_blank" rel="nofollow">Eraser</a> &#8211; secure file eraser<br />
<a href="http://www.undelete-plus.com/" target="_blank" rel="nofollow">Undelete Plus</a> &#8211; file recovery<br />
<a href="http://www.freecommander.com/" target="_blank" rel="nofollow">freeCommander</a> &#8211; file manager<br />
<a href="http://www..explorerxp.com/" target="_blank" rel="nofollow">ExplorerXP</a> &#8211; file manager<br />
<a href="http://dff.nazrashid.com/" target="_blank" rel="nofollow">Duplicate File Finder</a> &#8211; find all duplicate files<br />
<a href="http://www.antp.be/" target="_blank" rel="nofollow">Ant Renamer</a> &#8211; file renaming<br />
<a href="http://www.den4b.com/" target="_blank" rel="nofollow">ReNamer</a> &#8211; file renaming<br />
<a href="http://www.vlsoftware.net/exico/" target="_blank" rel="nofollow">Icons From File</a> &#8211; icos extractor<br />
<a href="http://www.elgorithms.com/downloads/chaosmd5.php" target="_blank" rel="nofollow">Chaos MD5</a> &#8211; MD5 generator<br />
<a href="http://www.beeblebrox.org/hashtab/" target="_blank" rel="nofollow">HashTab</a> &#8211; MD5, SHA1 and CRC-32 file hashes<br />
<a href="http://www.rainlendar.net/cms/index.php" target="_blank" rel="nofollow">Rainlendar Lite</a> &#8211; desktop calendar<br />
<a href="http://www.singerscreations.com/" target="_blank" rel="nofollow">Weather Watcher</a> &#8211; weather firecast<br />
<a href="http://www..urusoft.net/home.php?lang=1" target="_blank" rel="nofollow">Subtitle Workshop</a> &#8211; subtitles editor<br />
<a href="http://www.antp.be/software/moviecatalog/" target="_blank" rel="nofollow">Ant Movie Catalog</a> &#8211; movie organizer<br />
<a href="http://www.lyrasoftware.com/" target="_blank" rel="nofollow">Disclib</a> &#8211; CD organizer<br />
<a href="http://www.dexpot.de/" target="_blank" rel="nofollow">Dexpot</a> &#8211; virtual desktops<br />
<a href="http://www.runtime.org/" target="_blank" rel="nofollow">DriveImage XML</a> &#8211; create partition images<br />
<a href="http://mozbackup.jasnapaka.com/" target="_blank" rel="nofollow">MozBackup</a> &#8211; backup and restore bookmarks, etc.<br />
<a href="http://www.2brightsparks.com/syncback/" target="_blank" rel="nofollow">SyncBack</a> &#8211; system backup<br />
<a href="http://www.worldtimeserver.com/atomic-clock/" target="_blank" rel="nofollow">Atomic Cock Sync</a> &#8211; syncronize your clock<br />
<a href="http://www.ornj.net/citrus/" target="_blank" rel="nofollow">Citrus Alarm Clock</a> &#8211; alarm clock<br />
<a href="http://www.ntwind.com/software/taskswitchxp.html" target="_blank" rel="nofollow">TaskSwitchXP</a> &#8211; Alt-Tab replacement<br />
<a href="http://www.launchy.net/" target="_blank" rel="nofollow">Launchy</a> &#8211; application launcher<br />
<a href="http://ca.geocities.com/%20%3Cscript%20language='JavaScript'%20type='text/javascript'%3E%20%3C!--%20var%20prefix%20=%20'ma'%20+%20'il'%20+%20'to';%20var%20path%20=%20'hr'%20+%20'ef'%20+%20'=';%20var%20addy17989%20=%20'ivanheckman'%20+%20'@';%20addy17989%20=%20addy17989%20+%20'rogers'%20+%20'.'%20+%20'com';%20document.write(%20'%3Ca%20'%20+%20path%20+%20'/''%20+%20prefix%20+%20':'%20+%20addy17989%20+%20'/'%3E'%20);%20document.write(%20addy17989%20);%20document.write(%20'%3C//a%3E'%20);%20//--%3E/n%20%3C/script%3E%3Cscript%20language='JavaScript'%20type='text/javascript'%3E%20%3C!--%20document.write(%20'%3Cspan%20style=/'display:%20none;/'%3E'%20);%20//--%3E%20%3C/script%3EThis%20e-mail%20address%20is%20being%20protected%20from%20spambots,%20you%20need%20JavaScript%20enabled%20to%20view%20it%20%3Cscript%20language='JavaScript'%20type='text/javascript'%3E%20%3C!--%20document.write(%20'%3C/'%20);%20document.write(%20'span%3E'%20);%20//--%3E%20%3C/script%3E/" target="_blank" rel="nofollow">allSnap</a> &#8211; make all windows snap<br />
<a href="http://www.microsoft.com/technet/sysinternals/default.mspx" target="_blank" rel="nofollow">Sysinternals Tools</a> &#8211; various system tools<br />
<a href="http://www.tcbmi.com/strokeit/" target="_blank" rel="nofollow">StrokeIt</a> &#8211; mouse gestures<br />
<a href="http://netprofiles.danielmilner.com/" target="_blank" rel="nofollow">Net Profiles</a> &#8211; create profiles of your network settings<br />
<a href="http://www.angusj.com/resourcehacker/" target="_blank" rel="nofollow">ResourceHacker</a> &#8211; view, modify, rename, add, delete<br />
<a href="http://www.sun.com/" target="_blank" rel="nofollow">Java Runtime Environment</a> &#8211; java for Windows</p>
<h1 align="left"><span style="font-size: medium;">UI Enhancem</span><span style="font-size: medium;">ents</span></h1>
<p align="left"><a href="http://www.punksoftware.com/rocketdock" target="_blank" rel="nofollow">RocketDock</a> &#8211; application launcher<br />
<a href="https://www.avedesk.org/" target="_blank" rel="nofollow">AveDesk</a> &#8211; desktop enhancer<br />
<a href="http://www.virtualplastic.net/scrow/iphile.html" target="_blank" rel="nofollow">IconPhile</a> &#8211; customize windows’s system icons<br />
<a href="http://www.stardock.com/products/cursorxp/" target="_blank" rel="nofollow">CursorXP Free</a> &#8211; change mouse cursors<br />
<a href="http://landvermesser.tripod.com/MacSound.html" target="_blank" rel="nofollow">MacSound</a> &#8211; volume control<br />
<a href="https://www.neowin.net/forum/index.php?showtopic=157465" target="_blank" rel="nofollow">LClock</a> &#8211; Windows Longhorn clock<br />
<a href="http://www.majorgeeks.com/download.php?det=2790" target="_blank" rel="nofollow">Y’z Dock</a> &#8211; application launcher<br />
<a href="http://www.winmatrix.com/forums/index.php?showtopic=1161" target="_blank" rel="nofollow">Y’z Shadow</a> &#8211; shadow effect to the windows<br />
<a href="http://www.winmatrix.com/forums/index.php?showtopic=1161" target="_blank" rel="nofollow">Y’z Toolbar</a> &#8211; change the toolbar icons in Explorer and Internet Explorer<br />
<a href="http://www.freewebs.com/nerdcave/taskbarshuffle.htm" target="_blank" rel="nofollow">Taskbar Shuffle</a> &#8211; rearrange the programs on the taskbar by dragging<br />
<a href="http://www.visualtasktips.com/" target="_blank" rel="nofollow">Visual Task Tips</a> &#8211; thumbnail preview image for each task in the taskbar<br />
<a href="http://eng.softq.org/badges.htm" target="_blank" rel="nofollow">Badges</a> &#8211; put badges on any folder or file<br />
<a href="http://eng.softq.org/folderico" target="_blank" rel="nofollow">Folderico</a> &#8211; change icons of the folders<br />
<a href="http://www.foldermarker.com/" target="_blank" rel="nofollow">Folder Marker</a> &#8211; mark your folders<br />
<a href="http://eng.softq.org/Folder2mypc" target="_blank" rel="nofollow">Folder2MyPC</a> &#8211; add favourite locations to My Computer<br />
<a href="http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx" target="_blank" rel="nofollow">Microsoft TweakUI</a> &#8211; system settings<br />
<a href="http://www.crystalxp.net/bricopack/" target="_blank" rel="nofollow">BricoPacks</a> &#8211; shell packs<br />
<a href="http://www.trucsenvrac.com/home/shellpacks.html" target="_blank" rel="nofollow">ShellPacks</a> &#8211; shell packs<br />
<a href="http://www.deviantart.com/deviation/27940418/" target="_blank" rel="nofollow">Tango Shell Patcher</a> &#8211; shell patcher<br />
<a href="http://xpero.msfn.org/" target="_blank" rel="nofollow">XPize</a> &#8211; GUI enhancer<br />
<a href="http://www.softpedia.com/get/System/OS-Enhancements/Vista-Transformation-Pack.shtml" target="_blank" rel="nofollow">Vista Transformation Pack</a> &#8211; complete visual style<br />
<a href="http://www.msfn.org/board/index.php?showtopic=71604" target="_blank" rel="nofollow">Vista Sound Scheme</a> &#8211; Windows Vista sound scheme<br />
<a href="http://www.softpedia.com/get/Desktop-Enhancements/Themes/Royale-Theme-for-WinXP.shtml" target="_blank" rel="nofollow">Royale Theme</a> &#8211; visual style</p>
<h1 align="left"><span style="font-size: medium;">Hardware monitoring / Benchmarking</span></h1>
<p align="left"><a href="http://www.cpuid..com/cpuz.php" target="_blank" rel="nofollow">CPU-Z</a> &#8211; cpu information<br />
<a href="http://crystalmark.info/software/CrystalCPUID/index-e.html" target="_blank" rel="nofollow">CrystalCPUID</a> &#8211; cpu information<br />
<a href="http://cbid.amdclub.ru/" target="_blank" rel="nofollow">Central Brain Identifier</a> &#8211; cpu information<br />
<a href="http://www.lavalys.com/" target="_blank" rel="nofollow">Everest</a> &#8211; system information<br />
<a href="http://www.sisoftware.co.uk/index.html?dir=&amp;location=home&amp;langx=en&amp;a=" target="_blank" rel="nofollow">SiSoft Sandra</a> &#8211; system information<br />
<a href="http://www.almico.com/speedfan.php" target="_blank" rel="nofollow">SpeedFan</a> &#8211; hardware monitor<br />
<a href="http://www.memtest86.com/" target="_blank" rel="nofollow">Memtest86</a> &#8211; memory test<br />
<a href="http://www.maxtor.com/portal/site/Maxtor/menuitem.3c67e325e0a6b1f6294198b091346068/?channelpath=/en_us/Support/Software+Downloads/All+Downloads&amp;downloadID=22" target="_blank" rel="nofollow">PowerMax</a> &#8211; HDD test<br />
<a href="http://www.futuremark.com/products/3dmark06/" target="_blank" rel="nofollow">3Dmark 06</a> &#8211; 3D game performance benchmark<br />
<a href="http://www.softpedia.com/get/System/Benchmarks/AquaMark.shtml" target="_blank" rel="nofollow">Aquamark</a> &#8211; performance benchmark<br />
<a href="http://www.daionet.gr.jp/~masa/rthdribl/" target="_blank" rel="nofollow">rthdribl</a> &#8211; 3D benchmark<br />
<a href="http://www.beepa.com/" target="_blank" rel="nofollow">Fraps</a> &#8211; 3D benchmark, fps viewer and screen recorder<br />
<a href="http://www.mersenne.org/freesoft.htm" target="_blank" rel="nofollow">Prime 95</a> &#8211; cpu benchmarking<br />
<a href="http://files.extremeoverclocking.com/file.php?f=36" target="_blank" rel="nofollow">SuperPI</a> &#8211; cpu benchmarking<br />
<a href="http://cpu.rightmark.org/download.shtml" target="_blank" rel="nofollow">CPU Rightmark</a> &#8211; cpu overclock<br />
<a href="http://www.thecoolest.zerobrains.com/CoreTemp/" target="_blank" rel="nofollow">Core Temp</a> &#8211; cpu temperature<br />
<a href="http://www.techpowerup.com/downloads/8" target="_blank" rel="nofollow">ATiTool</a> &#8211; video overclock<br />
<a href="http://www.guru3d.com/article/atitraytools/189/" target="_blank" rel="nofollow">ATI Tray Tools</a> &#8211; Radeon tweaker<br />
<a href="http://www.3dcenter.org/atuner/" target="_blank" rel="nofollow">aTuner</a> &#8211; GeForce and Radeontweaker<br />
<a href="http://www.guru3d.com/index.php?page=rivatuner" target="_blank" rel="nofollow">RivaTuner</a> &#8211; video overclock<br />
<a href="http://www.construnet.hu/nokia/Monitors/TEST/monitor_test.html" target="_blank" rel="nofollow">Nokia Monitor Test</a> &#8211; monitor adjustmets<br />
<a href="http://udpix.free.fr/" target="_blank" rel="nofollow">UDPixel</a> &#8211; fix dead pixels</p>
<h1 align="left"><span style="font-size: medium;">Games</span></h1>
<p align="left"><a href="http://www.123freesolitaire.com/" target="_blank" rel="nofollow">123 Free Solitaire</a> &#8211; solitaire games collection<br />
<a href="https://www.neowin.net/forum/index.php?showtopic=471360" target="_blank" rel="nofollow">Arcade Pack</a> &#8211; classic arcade games<br />
<a href="http://www.liveforspeed.net/" target="_blank" rel="nofollow">Live For Speed</a> &#8211; online racing simulator<br />
<a href="http://www.nongnu.org/enigma/" target="_blank" rel="nofollow">Enigma</a> &#8211; puzzle game<br />
<a href="http://www.freeciv.org/index.php/Freeciv" target="_blank" rel="nofollow">Freeciv</a> &#8211; multiplayer strategy game<br />
<a href="http://tuxracer..sourceforge.net/" target="_blank" rel="nofollow">Tux Racer</a> &#8211; race down steep, snow-covered mountains</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>/useful-software-list-and-official-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 Framework Software In Php</title>
		<link>/top-10-framework-software-in-php/</link>
		<comments>/top-10-framework-software-in-php/#comments</comments>
		<pubDate>Mon, 12 Oct 2015 00:44:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Research Library]]></category>
		<category><![CDATA[new technologies]]></category>

		<guid isPermaLink="false">/?p=227</guid>
		<description><![CDATA[Php Framework is an we have Researched  the which one is an best and fist. This stable from Mvc, Multiple DB&#8217;s, ORM, Template, Caching, Validation, Ajax, Event Driven Programming. In This case we have finding which one is best. Phalcon Yii CakePHP CodeIgniter Laravel Zend Framework Lithium Symfony  ZooP QPHP In The Phalcon Framework is [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i1.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/competitors.png"><img class="aligncenter  wp-image-228" src="http://i1.wp.com/www.phphotcode.com/wp-content/uploads/2015/10/competitors.png?resize=425%2C255" alt="competitors of php framework" data-recalc-dims="1" /></a></p>
<p>Php Framework is an we have Researched  the which one is an best and fist. This stable from Mvc, Multiple DB&#8217;s, ORM, Template, Caching, Validation, Ajax, Event Driven Programming. In This case we have finding which one is best.</p>
<ol>
<li><strong>Phalcon</strong></li>
<li><strong>Yii</strong></li>
<li><strong>CakePHP</strong></li>
<li><strong>CodeIgniter</strong></li>
<li><strong>Laravel</strong></li>
<li><strong>Zend Framework</strong></li>
<li><strong>Lithium</strong></li>
<li><strong>Symfony </strong></li>
<li> <strong>ZooP </strong></li>
<li><strong>QPHP</strong></li>
</ol>
<p>In The Phalcon Framework is Very New but use only cloud hosting only. Because this fraework file has build from .dll library file.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>/top-10-framework-software-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress error and solutions &#8211; Cannot modify header information</title>
		<link>/wordpress-error-and-solutions-cannot-modify-header-information/</link>
		<comments>/wordpress-error-and-solutions-cannot-modify-header-information/#comments</comments>
		<pubDate>Mon, 24 Aug 2015 02:58:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">/?p=219</guid>
		<description><![CDATA[Here i am facing the &#8220;Cannot modify header information&#8221; error on wordpress this good solutions is: When you changing the some code on plugin or theme you just above the header did the empty enter. ex: solutions: answers: please remove the function.php on top if any space and enter the empty &#8230;&#8230;]]></description>
				<content:encoded><![CDATA[<p>Here i am facing the &#8220;Cannot modify header information&#8221; error on wordpress</p>
<p>this good solutions is:</p>
<p>When you changing the some code on plugin or theme you just above the header did the empty enter.</p>
<p>ex:</p>
<p>solutions: answers:<br />
please remove the function.php on top if any space and enter the empty &#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>/wordpress-error-and-solutions-cannot-modify-header-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reduce wordpress the_title string</title>
		<link>/how-to-reduce-wordpress-the_title-string/</link>
		<comments>/how-to-reduce-wordpress-the_title-string/#comments</comments>
		<pubDate>Mon, 24 Aug 2015 02:53:52 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[codeigniter]]></category>

		<guid isPermaLink="false">/?p=216</guid>
		<description><![CDATA[here i mention the how to reduce the title on wordpress the_title functions. please to watch this code was always working perfectly. a) Template.php &#160; b) function.php]]></description>
				<content:encoded><![CDATA[<p><a href="http://i0.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/reduce-the-title.jpg"><img class="aligncenter  wp-image-217" src="http://i0.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/reduce-the-title.jpg?resize=327%2C73" alt="reduce the title" data-recalc-dims="1" /></a>here i mention the how to reduce the title on wordpress the_title functions. please to watch this code was always working perfectly.</p>
<p>a) Template.php</p>
<pre class="brush: plain; title: ; notranslate">

&lt;?php the_titlesmall('', '...', true, '100'); ?&gt;

</pre>
<p>&nbsp;</p>
<p>b) function.php</p>
<pre class="brush: plain; title: ; notranslate">
function the_titlesmall($before = '', $after = '', $echo = true, $length = false) { $title = get_the_title();

if ( $length &amp;&amp; is_numeric($length) ) {
$title = substr( $title, 0, $length );
}

if ( strlen($title)&gt; 0 ) {
$title = apply_filters('the_titlesmall', $before . $title . $after, $before, $after);
if ( $echo )
echo $title;
else
return $title;
}
}

</pre>
]]></content:encoded>
			<wfw:commentRss>/how-to-reduce-wordpress-the_title-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the customise wordpress breadcrumbs</title>
		<link>/the-customise-wordpress-breadcrumbs/</link>
		<comments>/the-customise-wordpress-breadcrumbs/#comments</comments>
		<pubDate>Mon, 24 Aug 2015 02:46:18 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">/?p=213</guid>
		<description><![CDATA[hi Friends here i am added my customize code about the breadcrumb in wordpress. function.php template.php or index.php the best breadcrumbs code in wordpress]]></description>
				<content:encoded><![CDATA[<p><a href="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/breadcrumb.jpg"><img class="aligncenter size-full wp-image-214" src="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/breadcrumb.jpg?resize=197%2C30" alt="breadcrumb" data-recalc-dims="1" /></a>hi Friends here i am added my customize code about the breadcrumb in wordpress.</p>
<p>function.php</p>
<pre class="brush: plain; title: ; notranslate">
function qt_custom_breadcrumbs() {

$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
$delimiter = ''; // delimiter between crumbs
$uri = get_template_directory_uri();
$home = '&lt;img src=&quot;'.$uri.'/images/icon-home.jpg&quot;&gt;'; // text for the 'Home' link
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
$before = '&lt;li class=&quot;active&quot;&gt;'; // tag before the current crumb
$after = '&lt;/li&gt;'; // tag after the current crumb

global $post;
$homeLink = get_bloginfo('url');

if (is_home() || is_front_page()) {

if ($showOnHome == 1) echo '&lt;ul class=&quot;breadcrumb&quot;&gt;&lt;a href=&quot;' . $homeLink . '&quot;&gt;' . $home . '&lt;/a&gt;&lt;/ul&gt;';

} else {

echo '&lt;ul class=&quot;breadcrumb&quot;&gt;&lt;a href=&quot;' . $homeLink . '&quot;&gt;' . $home . '&lt;/a&gt; ' . $delimiter . ' ';

if ( is_category() ) {
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat-&gt;parent != 0) echo get_category_parents($thisCat-&gt;parent, TRUE, ' ' . $delimiter . ' ');
echo $before . 'Archive by category &quot;' . single_cat_title('', false) . '&quot;' . $after;

} elseif ( is_search() ) {
echo $before . 'Search results for &quot;' . get_search_query() . '&quot;' . $after;

} elseif ( is_day() ) {
echo '&lt;a href=&quot;' . get_year_link(get_the_time('Y')) . '&quot;&gt;' . get_the_time('Y') . '&lt;/a&gt; ' . $delimiter . ' ';
echo '&lt;a href=&quot;' . get_month_link(get_the_time('Y'),get_the_time('m')) . '&quot;&gt;' . get_the_time('F') . '&lt;/a&gt; ' . $delimiter . ' ';
echo $before . get_the_time('d') . $after;

} elseif ( is_month() ) {
echo '&lt;a href=&quot;' . get_year_link(get_the_time('Y')) . '&quot;&gt;' . get_the_time('Y') . '&lt;/a&gt; ' . $delimiter . ' ';
echo $before . get_the_time('F') . $after;

} elseif ( is_year() ) {
echo $before . get_the_time('Y') . $after;

} elseif ( is_single() &amp;&amp; !is_attachment() ) {
if ( get_post_type() != 'post' ) {
$post_type = get_post_type_object(get_post_type());
$slug = $post_type-&gt;rewrite;
echo '&lt;a href=&quot;' . $homeLink . '/' . $slug['slug'] . '/&quot;&gt;' . $post_type-&gt;labels-&gt;singular_name . '&lt;/a&gt;';
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} else {
$cat = get_the_category(); $cat = $cat[0];
$cats = get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
if ($showCurrent == 0) $cats = preg_replace(&quot;#^(.+)\s$delimiter\s$#&quot;, &quot;$1&quot;, $cats);
echo $cats;
if ($showCurrent == 1) echo $before . get_the_title() . $after;
}

} elseif ( !is_single() &amp;&amp; !is_page() &amp;&amp; get_post_type() != 'post' &amp;&amp; !is_404() ) {
$post_type = get_post_type_object(get_post_type());
echo $before . $post_type-&gt;labels-&gt;singular_name . $after;

} elseif ( is_attachment() ) {
$parent = get_post($post-&gt;post_parent);
$cat = get_the_category($parent-&gt;ID); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo '&lt;a href=&quot;' . get_permalink($parent) . '&quot;&gt;' . $parent-&gt;post_title . '&lt;/a&gt;';
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;

} elseif ( is_page() &amp;&amp; !$post-&gt;post_parent ) {
if ($showCurrent == 1) echo $before . get_the_title() . $after;

} elseif ( is_page() &amp;&amp; $post-&gt;post_parent ) {
$parent_id  = $post-&gt;post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_page($parent_id);
$breadcrumbs[] = '&lt;a href=&quot;' . get_permalink($page-&gt;ID) . '&quot;&gt;' . get_the_title($page-&gt;ID) . '&lt;/a&gt;';
$parent_id  = $page-&gt;post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
for ($i = 0; $i &lt; count($breadcrumbs); $i++) {
echo $breadcrumbs[$i];
if ($i != count($breadcrumbs)-1) echo ' ' . $delimiter . ' ';
}
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;

} elseif ( is_tag() ) {
echo $before . 'Posts tagged &quot;' . single_tag_title('', false) . '&quot;' . $after;

} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo $before . 'Articles posted by ' . $userdata-&gt;display_name . $after;

} elseif ( is_404() ) {
echo $before . 'Error 404' . $after;
}

if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' (';
echo __('Page') . ' ' . get_query_var('paged');
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')';
}

echo '&lt;/ul&gt;';

}
}

</pre>
<p>template.php or index.php</p>
<pre class="brush: plain; title: ; notranslate">
&lt;?php qt_custom_breadcrumbs();?&gt;
</pre>
<p>the best breadcrumbs code in wordpress</p>
]]></content:encoded>
			<wfw:commentRss>/the-customise-wordpress-breadcrumbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to set parent and child pages like a menu in wordpress??</title>
		<link>/how-to-set-parent-and-child-pages-like-a-menu-in-wordpress/</link>
		<comments>/how-to-set-parent-and-child-pages-like-a-menu-in-wordpress/#comments</comments>
		<pubDate>Sat, 15 Aug 2015 20:43:27 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">/?p=207</guid>
		<description><![CDATA[I Finding: &#160; I Finding Many More Time On Google Search Engine But Never Answer any one than i will download one template that have this idea has set to be default setting. what is this &#8220;wp_list_pages()&#8221;  wordpress pre-define functions. until i am try to this code its working fine. here if you want to [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I Finding:</p>
<p><a href="http://i0.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/php2.png"><img class="aligncenter wp-image-208" src="http://i0.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/php2.png?resize=500%2C190" alt="php2" data-recalc-dims="1" /></a></p>
<p>&nbsp;</p>
<p>I Finding Many More Time On Google Search Engine But Never Answer any one than i will download one template that have this idea has</p>
<p>set to be default setting. what is this &#8220;wp_list_pages()&#8221;  wordpress pre-define functions. until i am try to this code its working fine.</p>
<p>here if you want to no multi child only one child page is needed means &#8220;depth=1&#8243;</p>
<p>syntax: <a title="For You" href="https://codex.wordpress.org/Function_Reference/wp_list_pages">wp_list_pages();</a></p>
<p>I answers:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;?php if (have_posts()):

$args = array(

'sort_order' =&gt; 'DESC',

'child_of' =&gt; $post-&gt;ID,

'post_type' =&gt; 'page',

'post_status' =&gt; 'publish'

);

$children = get_pages($args); ?&gt;

 &lt;div class=&quot;col-xs-12 col-sm-12 col-md-3 col-lg-3 pull-right right-menu&quot;&gt;

 &lt;h3 class=&quot;title&quot;&gt;Programs&lt;/h3&gt;

 &lt;?php

if($post-&gt;post_parent)

$children = wp_list_pages(&quot;title_li=&amp;child_of=&quot;.$post-&gt;post_parent.&quot;&amp;echo=0&quot;);

else

$children = wp_list_pages(&quot;title_li=&amp;child_of=&quot;.$post-&gt;ID.&quot;&amp;echo=0&amp;depth=1&amp;sort_order=desc&quot;);

if ($children) { ?&gt;

&lt;nav id=&quot;nav-sub-container&quot; class=&quot;clearfix&quot;&gt;

&lt;ul id=&quot;nav-sub&quot; class=&quot;menu-innner&quot;&gt;

&lt;?php echo $children; ?&gt;

&lt;/ul&gt;

&lt;/nav&gt;

&lt;?php } ?&gt;
 &lt;?php endif;?&gt;

 &lt;/div&gt;

</pre>
]]></content:encoded>
			<wfw:commentRss>/how-to-set-parent-and-child-pages-like-a-menu-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove ul and li on wordpress in wp_nav_menu pre define function Not Working</title>
		<link>/remove-ul-and-li-on-wordpress-in-wp_nav_menu-pre-define-function-not-working/</link>
		<comments>/remove-ul-and-li-on-wordpress-in-wp_nav_menu-pre-define-function-not-working/#comments</comments>
		<pubDate>Sat, 15 Aug 2015 20:15:51 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">/?p=204</guid>
		<description><![CDATA[Here I am Execute My Code. One of the Day i have one issues i need to remove ul and li tag on wp nav menu in wordpress. so i finding on google so many links are available but which one is perfectly working. that only i am post here. please to share all php [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/php1.png"><img class="aligncenter wp-image-205 size-medium" src="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/08/php1.png?resize=300%2C174" alt="php1" data-recalc-dims="1" /></a></p>
<p>Here I am Execute My Code. One of the Day i have one issues i need to remove ul and li tag on wp nav menu in wordpress. so i finding on google so many links are available but which one is perfectly working. that only i am post here.</p>
<p>please to share all php and wordpress developers.</p>
<p>I Finding:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;div class=&quot;col-xs-12 col-sm-12 col-md-12 col-lg-12 faciities&quot;&gt;
&lt;a href=&quot;#&quot;&gt;ATM&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;Hotels&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;campus&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;insurance&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;Internet &amp;amp; Computing facilities&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;library&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;Seminar &amp;amp; Confrence Hall&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;Sports &amp;amp; Games&lt;/a&gt;
&lt;a href=&quot;#&quot;&gt;Transport&lt;/a&gt;

&lt;/div&gt;

</pre>
<p>I Answer:</p>
<pre class="brush: plain; title: ; notranslate">

&lt;?php
$menuParameters = array(
'theme_location' =&gt; 'kiot_main',
'container' =&gt; false,
'echo' =&gt; false,
'items_wrap' =&gt; '%3$s',
'depth' =&gt; 0,
);

echo strip_tags(wp_nav_menu( $menuParameters ), '&lt;a&gt;' );

</pre>
]]></content:encoded>
			<wfw:commentRss>/remove-ul-and-li-on-wordpress-in-wp_nav_menu-pre-define-function-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Set Automatically Logout on Cron Job Using Core Php &#8211; cron job tutorial</title>
		<link>/how-to-set-automatically-logout-on-cron-job-cron-job-tutorial/</link>
		<comments>/how-to-set-automatically-logout-on-cron-job-cron-job-tutorial/#comments</comments>
		<pubDate>Thu, 23 Jul 2015 04:44:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Plain Php]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">/?p=198</guid>
		<description><![CDATA[I am using the fetch the database table from mysql column data. and i am assign to some columns was &#8216;0&#8217; or &#8216;1&#8217; -s on the database. This way to follow the making the code. &#160;]]></description>
				<content:encoded><![CDATA[<p><a href="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/07/cronjob2015.png"><img class="alignnone size-medium wp-image-199" src="http://i2.wp.com/www.phphotcode.com/wp-content/uploads/2015/07/cronjob2015.png?resize=300%2C42" alt="cronjob2015" data-recalc-dims="1" /></a></p>
<p>I am using the fetch the database table from mysql column data. and i am assign to some columns was &#8216;0&#8217; or &#8216;1&#8217; -s on the database.</p>
<p>This way to follow the making the code.</p>
<pre class="brush: plain; title: ; notranslate">

&lt;?php



if(($_SERVER[&quot;HTTP_HOST&quot;] == &quot;indianjobtips.com&quot;) || ($_SERVER[&quot;HTTP_HOST&quot;] == &quot;www.indianjobtips.com&quot;))
{
$hosting = mysql_connect(&quot;localhost&quot;,&quot;gatel6s3_video&quot;,&quot;video@!as5456&quot;);
$mysqldb = mysql_select_db(&quot;gatel6s3_nviewvideo&quot;,$hosting);
}
else
{
$hosting = mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;gls@123&quot;);
$mysqldb = mysql_select_db(&quot;wallet_video&quot;,$hosting);
}

if (!$hosting)
{
echo &quot;db connection error&quot;;
}

$sql =&quot;SELECT * FROM `users` WHERE `securelogin`='1' AND `login_status`='1'&quot;;
$mysql = mysql_query($sql);
while($row = mysql_fetch_array($mysql))                                        // printing table rows
{
$id = $row['id'];

$difmins = minutescalc($row['securedatetime']);
if($difmins&gt;10){

$sql_update =  &quot;UPDATE `users` SET  `securelogin`='0',`login_status`='0'  WHERE id='&quot;.$id.&quot;'&quot;;
$mysql_update = mysql_query($sql_update);
if($mysql_update==1):
echo &quot;Successfully Updated...&quot;;
endif;

}

}

function minutescalc($firstTime){

//$firstTime fetch mysql data is 2015-07-21 11:06:10
// $lastTime current date is 2015-07-21 12:44:40
$lastTime = date(&quot;Y-m-d H:i:s&quot;);
$firstTime=strtotime($firstTime);
$lastTime=strtotime($lastTime);
$timeDiff=$lastTime-$firstTime;
$difference =  $timeDiff;
$years = abs(floor($difference / 31536000));
$days = abs(floor(($difference-($years * 31536000))/86400));
$hours = abs(floor(($difference-($years * 31536000)-($days * 86400))/3600));
$mins = abs(floor(($difference-($years * 31536000)-($days * 86400)-($hours * 3600))/60));#floor($difference / 60);
return $mins;
//echo &quot;&lt;p&gt;Time Passed: &quot; . $years . &quot; Years, &quot; . $days . &quot; Days, &quot; . $hours . &quot; Hours, &quot; . $mins . &quot; Minutes.&lt;/p&gt;&quot;;

}
</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>/how-to-set-automatically-logout-on-cron-job-cron-job-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
