Android PHP/MYSQL Tutorial PHP Android Tutorial Part Best tutorial for android PHP and mysql How to connect Android app to MySQL database? Android …
Original source
Android PHP/MYSQL Tutorial PHP Android Tutorial Part Best tutorial for android PHP and mysql How to connect Android app to MySQL database? Android …
Original source
25 responses to “Android MySQL Database Tutorial 1 – Creating Database And Writing PHP Script”
thanks, brother it is awesome
i followed the entire tutorial, but when i run the app only the alert dialog with the title appears, I do not get the success message. i tried unblocking the port 80 as well thru windows firewall but i cant understand where the problem is …. can some one pls help???
Hi Sir, nice and very knowledgable Tutorial. I follow everything you mintioned, but i just get message "Login Status", indeed not refered if the login is success or not. Thanks and waiting your help.
After installing wampserver, when i open it, then it shows an error that "VCRUNTIME140.dll is missing from your computer", how can i solve the problem.
sir do you have tutorail how to populate data to a text edit?
Can I use XAMPP instead Wampp ?
Very helpful video. Your all tutorials are best.
@Anj Fyi: I agree. ProgrammingKnowledge is notoriously known as being one of the worst tutorial makers on the internet for programming.
nice tutorial can you guide me about how to write Node.js script for doing same work?
what will be the " www directory " if I use xampp ??? Is that www directory means root directory?
( ! ) Warning: require(conn.php): failed to open stream: No such file or directory in C:wamp64wwwlogin.php.php on line 3
when i click phpmyadmin, it tells me to log into something
I have this error although i followed every step?
Fatal error: Call to undefined function mysqlli_connect() in C:wamp64wwwconn.php on line 6
Call Stack
# Time Memory Function Location
1 0.0005 235712 {main}( ) …conn.php:0
hai,any one have OTP source code,plz send me
i have Xamp server
pls solve this; I need your help, why this message is comming after your code
0) { echo "Log in success…."; } else { echo "Log in Failed…."; } ?>
i am trying to make connection but instead of showing the echo "connection sucessful" the browser is showing the complete conn.php file why is so happening
Please help! I am getting the following error when trying to launch localhost/conn.php in the browser:
Parse error: syntax error, unexpected '$db_name' (T_VARIABLE) in /Applications/XAMPP/xamppfiles/htdocs/conn.php on line 3
i download xampp software then where we have to create all database folders
thanku so much brother
i have a question
can u please tell me how to access a specific function of web api inside my android program?
if(service==washing)
then it should fetch the data for me according to api.
how can i use it un my program?
Hi Guys i fixed the problem for message "Login Status"
first thing from wamp server/alias/ change "require local" to " require all granted" for 4 files there.
php code for conn, login:
<?php
$db_name="employee";
$mysql_username="root";
$mysql_password="";
$server_name="localhost";
$conn = mysqli_connect($server_name,$mysql_username , $mysql_password ,$db_name );
?>
<?php
require "conn.php";
$user_name=$_POST["user_name"];
$user_pass=$_POST["password"];
$mysql_qry="select * from employee_data where username like '$user_name' and password like '$user_pass';";
$result=mysqli_query($conn ,$mysql_qry);
if(mysqli_num_rows($result) > 0){
echo "login success";
}
else{
echo "login not success";
}
?>
hi im newbe im use ubuntu so poin from 12:43–13:25 how to do in ubuntu thanks
These 4 videos helped me understand the concept better. Thanks.
Those who are getting errors, copy the source code from description[its in video 2] and use that directly [except the package name]
hi, thanx for all ur videos, i hv downloaded wampserver 64bit many times n installed n patched many dll files, bt still i get same error whn installing, cannot install error (0x000007b), what shud i do
I can access to http://localhost:8080/
But I enter http://localhost:8080/conn.php ,
internet explorer no responding.