You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
hai arjunsk, thank you for your great apk Ionic Shopping Cart ( MySQL), i try to add data on field database hosting table user with field status, after that I add the code user-details on hosting as
$query="SELECT u_name, u_id, u_phone, u_address, status, u_pincode FROM users where u_verified=1 and u_id like '".$username."' and u_password like '".$password."'";
and I add code on controller : $scope.loggedin_name= sessionStorage.getItem('loggedin_name'); $scope.loggedin_id= sessionStorage.getItem('loggedin_id'); $scope.loggedin_phone= sessionStorage.getItem('loggedin_phone'); $scope.loggedin_address= sessionStorage.getItem('loggedin_address'); $scope.loggedin_status= sessionStorage.getItem('loggedin_status'); $scope.loggedin_pincode= sessionStorage.getItem('loggedin_pincode');
and on profile.html : <label class="item item-input"> <span class="input-label">Status</span> <textarea placeholder="" readonly > {{" "+loggedin_status}}</textarea> </label>
but data not showing, what is wrong? thanks you.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hai arjunsk, thank you for your great apk Ionic Shopping Cart ( MySQL), i try to add data on field database hosting table user with field status, after that I add the code user-details on hosting as
$query="SELECT u_name, u_id, u_phone, u_address, status, u_pincode FROM users where u_verified=1 and u_id like '".$username."' and u_password like '".$password."'";
and I add code on controller :
$scope.loggedin_name= sessionStorage.getItem('loggedin_name'); $scope.loggedin_id= sessionStorage.getItem('loggedin_id'); $scope.loggedin_phone= sessionStorage.getItem('loggedin_phone'); $scope.loggedin_address= sessionStorage.getItem('loggedin_address'); $scope.loggedin_status= sessionStorage.getItem('loggedin_status'); $scope.loggedin_pincode= sessionStorage.getItem('loggedin_pincode');
and on profile.html :
<label class="item item-input"> <span class="input-label">Status</span> <textarea placeholder="" readonly > {{" "+loggedin_status}}</textarea> </label>
but data not showing, what is wrong? thanks you.
The text was updated successfully, but these errors were encountered: