WebOSDev - Programming has just evolved

The online blog for the webOS developer community you can find everything you need here to get a strong start developing applications for the webOS platform

Howto interact between a wordpress site and webos

Posted by codesos Saturday, January 9, 2010 0 comments
Evere wanted to login to a wordpress type of site? here it is 1. load a PHP file to your site called myLogin.php This file will act as your server side and it's job is to get the request wfom you app , do the login operation and returnt status write the folowings inside the php file: <?php require( dirname(__FILE__) . '/wp-load.php' ); function login() { $result = wp_signon(); if(!$result->data) return "<br...