Thanks Rafael  for your reply. I think I failed to gather the values
from the HTML Form. I am giving HTML Form code here.Could you help me
to figure out the issue ??

login.tpl.html


Welcome : {{user.mail}}

<div class="bs-example">
    <form role="form" name="form1">
        <div class="form-group">
            <p>Welcome : {{user.mail}}</p>
            <label for="exampleInputEmail">Mail</label>
            <input type="text" placeholder="Enter name"
class="form-control" required ng-model="user.mail">
        </div>
        <div class="form-group">
            <label for="exampleInputPassword">Password</label>
            <input type="password" placeholder="Password"
id="exampleInputPassword" class="form-control" required
ng-model="user.pass">
        </div>
        <button class="btn btn-default" type="submit"
ng-disabled="form1.$invalid" ng-click="login(user)">Submit</button>
        <p></p>
    </form>
</div>





On Tue, Nov 24, 2015 at 4:50 PM, Rafael Bernard Rodrigues Araujo
<[email protected]> wrote:
> Hi, Foysal.
>
> It looks correct at PHP side. You really need to debug.
>
> At AngularJS side, you can debug using console.log before the post call:
>
> ===
>
> console.log(user);
> var promise = $http.post('data/user.php',user); //send data to user.php
>
> ===
>
> In PHP side you can debug:
>
> ===
>
> $user=json_decode(file_get_contents('php://input'));
>
> print_r($user);
>
>
> ===
>
>
> --
> Rafael Bernard Rodrigues Araújo
> about.me/rafaelbernard
> Analista de Tecnologia | Hospedagem de sites - http://oservidor.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "AngularJS" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/angular.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to