Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I am using angular's $http.get function to call a PHP script file to retrieve data

var $promise = $http.get("../php-bin/example.php",obj).success(function(data) {

              console.log(data);
            });

The php is supposed to just get data from a mysql db to figure out a way to get data into my app

$user = json_decode(file_get_contents('php://input'));
$email = $user->email;
$pass = $user->pass;

$con = //a mysql_connection;
// Check connection
if (mysqli_connect_errno()) {
    echo "Failed to connect to MySQL: " . mysqli_connect_error(); 
}

$validateEmail = "SELECT `Email` FROM `newUsers` WHERE `Email` = '$email' ";

if ($result = mysqli_query($con,$validateEmail)) {
     if ($result->num_rows == 1){
        $date = '2014-08-13'; 
        //$sql = "INSERT INTO newUsers (Email, CreationDate, UserRef, Type, id) VALUES ('$email','$date','$email','Host','$ssid')";
        $sql = "SELECT `email` FROM `newUsers` WHERE `hashpass` = '$pass' ";

        $result = mysqli_query($con,$sql);

        $row = mysqli_fetch_assoc($result);

        return $row;
        //I never receive this data in the angular app.
    } 
}
mysqli_close($con);
?>

Could some one point me to the correct way to do this.

share|improve this question
up vote 2 down vote accepted

I see you have a return statement instead of an echo statement. A return statement is not printed in the PHP output. A return statement outside a function has only sense when you include the file:

$returned = include('the_file_you_showed_here.php');
//you will hold the row here

A return statement kills the current script returning to an includer script (if any), but does not send any value to the output (that's the purpose of die/exit). You should:

  1. Change the return to echo.
  2. Remember to have a header('Content-type: application/json') sent if you intend to send json data, before any actual echo instruction or non-php content.
  3. Remember to encode the data: return json_encode($row).
share|improve this answer
    
Thanks for your response. I edited the return statement but that was not the only thing wrong with my code. I was calling the $http.get('url',obj) when the correct way is $http.get('url'); I did it that way because I was trying to send an object to match results with on the backend side. – inoabrian Aug 17 '14 at 23:13
    
I thought such object had the intention to represent connection parameters. – Luis Masuelli Aug 18 '14 at 0:55
    
No that object was a json obj -_- lol – inoabrian Aug 18 '14 at 3:33

in your php make sure you echo your result the echoed results get passed into your variable

for example if you are passing in a varibale say from your scope

function($scope,$http){

$scope.obj= "your variable";

$reuslt = http.get('yourlocation/yourfile.php?val='+obj');

your php script

<?
$value = $_GET['val']


//not your variables have been passed in and you can use it to do your custom function wich ever way you like
and echo your result after wards
?>

hope this helps

share|improve this answer

NOTE: With < 50 reputation, I cannot comment.

You cannot call relative paths like that. The file has to exist at the public directory or lower. For instance, if all of your files are in /home/yourname/public, you'd need to call /php-bin/example.php instead, where php-bin is inside of the public directory (/home/yourname/public/php-bin).

Does that make sense?

share|improve this answer
    
The PHP file works and gets executed, and I know this because I do the same thing when I insert into a table in my DB. – inoabrian Aug 17 '14 at 22:01
    
I see that you said you figured out your issue.And just to make sure, you're saying you call it using ../php-bin/example.php? – nmallare Aug 17 '14 at 23:46
    
Yes because my structure is the following. www/ -js -css -php-bin -project/ file calls ../php-bin/file.php here – inoabrian Aug 18 '14 at 0:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.