I want to get data from mysql database using php and jquery ajax. \'process.php\' is the php file which connects to database and get mysql data. It works when it is run sepa
you did mistake in your code:
echo "$row['name']";
This should be:
echo "".$row['name']."";
try that...