I am new to php and handling server side.
I have a domain "www.example.co.in". And another addon domain "www.example.com". I have created a new folder "www.example.com" at the root folder(public_html) of "www.example.co.in" cpanel hoisting.
public_html-> www.example.com
Now I have written an api in php fetch_data.php which looks like the below format:
<?php
if(isset($_POST['test'])){
// db connection
// retrieve data from database
} else {
echo("error")
}
?>
Now if I put this file inside www.example.com i.e. public_html-> www.example.com -> fetch_data.php
isset($_POST['test'])
is returning false.
And if I put the same file inside the root folder i.e. public_html-> fetch_data.php
I am able to fetch the data.
Note: I am using the same input.
URL: http://www.example.com/fetch_data.php <- isset not working
URL: http://www.example.co.in/fetch_data.php <- isset working
I am testing the above mentioned apis using the REST Easy extension of firefox. Rest Easy by nathan-osman
The actual path of my cpanel:
home/www.example.co.in/public_html/
And the addon domain:
home/www.example.co.in/public_html/www.example.com/