Browsing articles from "April, 2010"
Apr
26

Simple XML

By admin  //  PHP  //  No Comments

PHP5 has come up lot of improvement when it comes to XML parsing as compared to parsing XML in PHP4. PHP5 has come up with a new function called SimpleXML for parsing XML files. This article will guide the PHP programmers on how to use the SimpleXML function in PHP5.

Advantages of SimpleXML

* You can now directly jump to content by providing the tag name
* Internally creates an Associative Arrays for Attributes so you can directly access the attributes by specifying the attribute name as key

Limitation of SimpleXML

* It cannot process XML document with version 1.0+ so it is necessary that the xml document should have version ‘1.0′.

For more information please visist
http://www.permadi.com/blog/2010/02/parsing-xml-in-php-using-simplexml/

Apr
19

creative ideas about coming soon pages

By admin  //  CSS  //  1 Comment

I found this very useful creative ideas about comming soon pages. You are not ready to launch your website so you can just display coming soon pages.

Visit for more details
http://www.dzinepress.com/2010/04/60-creative-ideas-about-comming-soon-pages/

Apr
19

Top Jquery slideshow plugins

By admin  //  Jquery  //  1 Comment

I am sharing some new jquery slideshow plugins. Integrate in your site and enjoy.

http://plugins.jquery.com/project/pwi

http://amolwable.com/index.php/2010/top-new-8-jquery-slideshow-plugins

Apr
15

MySQL Workbench cross platform visual database design tool

By admin  //  mysql  //  1 Comment

I found this very interesting and useful for database designers and It’s absolutely free also have commerial version but free version is enough for developer…

MySQL Workbench is a cross-platform, visual database design tool developed by MySQL. It is the highly anticipated successor application of the DBDesigner4 project. MySQL Workbench will be available as a native GUI tool on Window, Linux and OS X.

For Download please vist http://wb.mysql.com/

For more information and detailed tutorial please visits

http://dev.mysql.com/doc/workbench/en/wb-tutorials.html
http://downloads.mysql.com/docs/workbench-en.pdf

http://www.packtpub.com/article/visual-mysql-database-design-in-mysql-workbench
http://yensdesign.com/2008/10/making-mysql-forum-database-from-scratch/

Apr
14

Database Migration Toolkit

By admin  //  Softwares, mysql  //  1 Comment

ESF Database Migration Toolkit Professional is a program that allows you to convert between different database formats. ESF Database Migration Toolkit Professional can directly connect to MySQL, SQL Server, PostgreSQL, Oracle, Access, Excel, Paradox, Lotus, dBase, Visual FoxPro, Text and other formats, and convert between these formats (SQL Server to MySQL, MySQL to Access etc.).

Features
• The software is wizard-like; it’s so easy and quickly, everyone can use it. You convert one database to the other just only 3 steps
• Supports various database formats. It can interchangeably convert MySQL, SQL Server, PostgreSQL, Oracle, Access, Excel, dBase,Paradox, Text, Visual FoxPro
• Supports table Primary Keys, Indexes, and Autoincrement(Auto-ID)
• Supports Batch Insert/Update records to increase converssion speed! It lets ESF Database Convert run faster than other program
• You can interchangeably convert MySQL to Access, Access to Oracle, Oracle to SQL Server, SQL Server to MySQL, … and etc in one product
• Via ODBC DSN, you can convert datas from any type database
• Map table & field name in converting
• You can use SQL statement to filter datas to be converting
• Supports all the UNICODE characterset (UTF8, LATIN, CP1250, ASCII and so on)

http://hotfile.com/dl/37831596/7121862/ESF.Database.Migration.Toolkit.Professional.Edition.v6.3.14.Incl.Keygen-Lz0.rar.html

http://letitbit.net/download/1169.1c1ad6b8124e03eb91940c4dc524797c/ESF.Database.Migration.Toolkit.Professional.Edition.v6.3.14.Incl.Keygen_Lz0.rar.html

http://uploading.com/files/m967af35/ESF.Database.Migration.Toolkit.Professional.Edition.v6.3.14.Incl.Keygen-Lz0.rar/

Apr
12

Disable or Enable WordPress Plugins using Database

By admin  //  PHP  //  No Comments

If you want to Disable or Enable All WordPress Plugins using the Database this is simple. Open PHPmyAdmin and write SQL.

SELECT * FROM wp_options WHERE option_name = ‘active_plugins’;

A single record with active_plugin name will come, click edit then you will see below style code…. empty code and click go…

a:31:{i:0;s:13:”AddMySite.php”;i:1;s:19:”akismet/akismet.php”;i:2;s:23:”all_in_one_seo_pack.php”;i:3;s:16:”authenticate.php”;}

Or you could just use below SQL to empty active_plugins

UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’;

For More information you can vist perishablepress.com

Apr
9

yahoo mediaplayer hack

By admin  //  Javascript  //  1 Comment

Playing MP3 @ your website without any application program like windows media player, Real player, Quick time is not a big deal. You can use yahoo media player with just include the below script and this will detect all the MP3

* Adds audio to your site with one line of HTML
* Uses simple, easy-to-hack HTML instead of complicated proprietary markup, ushering in the REAL Media Web
* Magical floating design never gets lost, is available when you need it, gets out of your way when you don’t need it
* Automatically finds all audio links on your page, turning your page into a playlist
* Plays all your blog entries with a single button click
* Allows you to put the play buttons where they belong: IN CONTEXT
* Keeps the user in the page rather than sending them away to a media player
* Picks up your images and adds them as cover art
* Requires no download, install or maintenance

Just include this script

If you want yahoo player just player one which clicked than add the below script otherwise default is to play all

For more Info please visit
http://mediaplayer.yahoo.com/
http://developer.yahoo.com/mediaplayer/

Apr
6

center js pop up window

By admin  //  Javascript  //  No Comments

This little code will help to center JS pop up window.


var myWindow;

function openCenteredWindow(url) {
var width = 400;
var height = 300;
var left = parseInt((screen.availWidth/2) - (width/2));
var top = parseInt((screen.availHeight/2) - (height/2));
var windowFeatures = "width=" + width + ",height=" + height + ",status,resizable,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
myWindow = window.open(url, "subWind", windowFeatures);
}