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...