Click here to Skip to main content
15,892,809 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am sending a text via following code to a php website running in server side:

bRet = HttpSendRequest(hInternetOpen,NULL,0, LPVOID)cstrData.c_str(),dwDataLen);


where cstrData is sent data.(Sending this to http://10.195.12.99/Sample.php[^]

I want to catch this data in this php site. What will be the PHP script to catch posted data from client? here Sample.php is just a simple php file, nothing is there except echo.

How can I do this?


Please help.

Thanks
Posted
Updated 2-Jan-13 20:05pm
v4
Comments
Mohibur Rashid 3-Jan-13 1:58am    
the link you gave is not accessible, besides you did not mention your problem properly, what problem are you facing right now?
[no name] 3-Jan-13 2:04am    
The link is my local server...this is why it is not opening.....

What will be the PHP script to catch posted data from client?

Look here: http://php.net/manual/en/reserved.variables.httprawpostdata.php[^].

PHP
<?php $postdata = file_get_contents("php://input"); ??>


This way you can access the whole request body.
 
Share this answer
 
/* Check arrival of data */
if(isset($_GET['name_of_data']))
{
$received=$_GET['name_of_data'];
echo $received;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900