You can export your MySQL database to .csv file format (Microsoft Excel file) easily using php. This tutorial require 1 PHP file and 1 table of mySQL database. 1. exportcsv.php 2. The table is with 2 fields: id(auto_increment), name(varchar, 50)... (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;... (Continue reading)
This post will help you in running and compiling the jsp files using your xampp server on windows. All you have to do is get the Tomcat 6.0.20 Addon for Xampp Details :- Tomcat 6.0.20 and mod_jk 1.2.20 for the... (Continue reading)
Hello Visitors, I am very much glad to release the MOBILE edition of Mistonline.in, {AD FREE and FAST LOADING} Note:-You need to browse the website using URL http://mobile.mistonline.in OR http://mistonline.in/mobile. If you access this URL using Laptop/Tp/Desktop you will be... (Continue reading)
Sometimes when trying to upload some huge SQL file using PHPMYADMIN we might come across this ERROR MESSAGE Error: You probably tried to upload too large file. Please refer to documentation for ways to workaround this limit There is simple a fix for this:-... (Continue reading)