For a complete video series with explanation visit this link https://goo.gl/ZzyeHm This is very simple android php mysql tutorial, but with no voice and no …
Original source
For a complete video series with explanation visit this link https://goo.gl/ZzyeHm This is very simple android php mysql tutorial, but with no voice and no …
Original source
35 responses to “Android PHP MySQL Tutorial – Create a User Registration App”
I cant upload files in hostinger(no file manager only file manager2) ! it asks for membership ? What do i do ? i dont want membership is any alternative , i have tried using 000webhost i saw many review that there is a problem using that so plz give a solution
Entire code is not avaliable.They are making a fool of us.I m stuck after wasting 2 hrs
i am getting "undefined index" error for the lines 3,4,5, and 6 of the php script. Kindly suggest a solution.
hi, first of all, I have doubt in hostinger itself. how can we get the database in it? I just buy the free space from hostinger buddy
sir phpmyadmin is not open in hostinger also message come for when file manager click to upgrade .should i require to update
It's an marvelous, but would be better if you try to using microphone. Thanks for sharing…
i already copy all tutorial code from other video but when i run that program , i get blank toast, what sould i do? i use hosting on idcloudhost , should i put localhost on define 'HOST' or put link php myadmin ?
java.net.ConnectException: failed to connect to /127.0.0.1 (port 80) after 15000ms: isConnected failed:
hie mine is not posting any data to the php file it execute thes else part
How to create JSON webservice link in android from phpMyAdmin?
thanks for sharing. I have a question : can i use localhost ??
can i retrieve data?how?
Hey…! I was failed to find your page, from where u copy paste all these codes, can you please share the link of that page
Can i do this on an actual android device
This is basically just a fucking plug for a hosting affiliate account.
how to create log in by using php in android?
please sending a fuu code for thise app excsuse me
Do i need to change anything if i want to test on a real device????
I am getting <br/> as a toast message after i click the register button. Please help me with this….
when I execute my code it shows <html> in toast instead of "successfully registration" Plz Help
Face instead of appearing " ' successfully registered ' ; " just appearing <html/>.Im from Ukraine, maybe its problem?
I am unable to get the code to work properly. I am getting <html> as a toast message after i click the register button. Please help me with this
Hello I'm brazilian. Face instead of appearing " ' successfully registered ' ; " just appearing <br/>
What can it be?
This is a Great Video Tutorial, thanks so much.
my emulator is giving me the unfortunately app has stopped working
This is helping (y)
Hi you have pasted all your scripts on File Manager. I cant see File Manager instead i have File Manager 2 can I paste its there.
Show taost say <!DOCTYPE html> mean?
Thank you for your help. Great Job with these tutorials
Great friend! Now i can make applications thanks for your video
Excuse me! , Am not see file manager , I see file manager 2 ,
help please.
Can I do this using XAMPP?
I was searching for a tutorial like this for decades, all work very well… Thank you 😀
i am getting a toast saying error registering. help pls. thanks!
I get a PHP error message every time, i added some log messages, stops at stage 3 and jumps to "echo 'error';
what could be the problem?
<?php
if($_SERVER['REQUEST_METHOD']=='POST'){
$name = $_POST['name'];
$username = $_POST['username'];
$password = $_POST['password'];
$email = $_POST['email'];
if($name == '' || $username == '' || $password == '' || $email == ''){
echo 'please fill all values';
echo 'stage 0';
}else{
echo 'stage 1 ';
echo "$name, $username , $password, $email";
require_once('dbConnect.php');
echo 'stage 2';
$sql = "SELECT * FROM users WHERE username='$username' OR email='$email'";
echo 'stage 3';
$check = mysqli_fetch_array(mysqli_query($con,$sql));
echo 'stage 4';
if(isset($check)){
echo 'username or email already exist';
}else{
$sql = "INSERT INTO users (name,username,password,email) VALUES('$name','$username','$password','$email')";
if(mysqli_query($con,$sql)){
echo 'successfully registered';
}else{
echo 'oops! Please try again!';
}
}
mysqli_close($con);
}
}else{
echo 'error';
}
?>