SyncCode I3 index.php
From MWWiki
Back to WordPress Synchronizer
<?php session_start(); /******************************************\ * Created on Sep 24, 2007, 2007 ******************************************** * Description of the script here. * \******************************************/ include_once('common.inc.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en_US" xml:lang="en_US"> <head> <title>WordPress Synchronizer</title> <link rel="stylesheet" href="upload.css" type="text/css" /> <script src="ajax/createxmlhttp.js"></script> <script src="ajax/init.js"></script> <script src="ajax/ajax.js"></script> <script src="ajax/main.js"></script> </head> <body> <!-- All the fancy shmancy stuff across the top --> <div class="topbar"> <div class="row"> <div class="leftspace"> </div> <div class="header">WordPress Synchronizer </div> <div class="rightspace"> </div> </div> </div> <!-- End header bar --> <!-- Begin main content --> <div class="navmenu"> <ul> <li><a class="top" id="startbtn" href="javascript:ajaxMain('grabRemote');"><b>Begin</b></a></li> <li><a href="http://localhost/wordpress/" target="_blank">Local WP</a></li> <li><a href="http://www.magsolweb.net/wordpress" target="_blank">Magsolweb WP</a></li> </ul> </div> <div class="maincontent"> Tuples Ready for Transport <!-- -- This simply displays the tuples that are successfully received -- and inserted into the MW database. --> <div id="datacontent"> To start, simply click the "Begin" button over on the navigation menu. </div> </div> </body> </html>
