This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Author Archive


Page 6 of 41« FirstNext234567891011NextLast »

Export MySQL to CSV (Excel) using php

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)

Tagged with:         

Simple rss reader using php

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)

How to run jsp in xampp?

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)

Tagged with:     

Mistonline.in Mobile Edition Web Scripting Tutorials At Your Finger Tips

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)

Tagged with:

Import large files in mysql using PhpMyAdmin

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)

Tagged with:         

Page 6 of 41« FirstNext234567891011NextLast »