Get File Content - hidden extension

[size=12pt]Hi everybody … i have a URL i am using it to send SMS, it is like
h**ps://www.domain.net/api/?username=[Username]&password=[Password]&sms=[Message]&mobile=[mobile_numbers]&binary=[language_Flag]

and i am using the following code to get the file content because it show a message based on the result of sending the message (sent, fail, or other result)[/size]

[size=10pt]<?php

$msgurl=‘h**ps://www.domain.net/api/?username=[Username]&password=[Password]&sms=[Message]&mobile=[mobile_numbers]&binary=[language_Flag]’;

$result=file_get_contents($msgurl);

switch($result)
{
case ‘1’:
echo ‘Success­’;
break;
case ‘0’:
echo ‘Fail’;
break;
case ‘Invalid login’:
echo ‘Invalid login’;
break;
case ‘Missing or Empty Field’:
echo ‘Missing or Empty Field’;
break;
case ‘Invalid Message Language’:
echo ‘Invalid Message Language’;
break;
case ‘Insufficent Balance’:
echo ‘Insufficent Balance’;
break;
case ‘Invalid Sender’:
echo ‘Invalid Sender’;
break;
case ‘Sender name is not activated’:
echo ‘Sender name is not activated’;
break;
}
?>[/size]

[size=12pt]the problem that when i put the file name in the URL like (sendsms.php) and then the parameters, the above code show the result correctly , but when i remove the file name … i don’t get any result.

So is it possible to get the file content from a URL like that?[/size]

Not sure if I understand… you want to remove the name of the script from the URL? How would you access the proper script - it would just default to index.php?

actually it is a URL i get it from service provider to send SMS, and they didn’t show the file name

Sponsor our Newsletter | Privacy Policy | Terms of Service