Tracy8277 Posted March 9, 2009 Share Posted March 9, 2009 Hi all, I am trying to implement a web service reading in from a simple form, this is my rest server script and I have a sax script which calls the web service but this is a considerable amount of code! I cannot get the PUT request to work! Any ideas? <?php $a = $_GET["country"]; $conn = mysql_connect("localhost","username", "password"); mysql_select_db ("username"); if ($_SERVER["REQUEST_METHOD"]=="GET") { header("Content-type: text/xml"); $result = mysql_query("select * from pointsofinterest where country='$a'"); echo "<pointsofinterest>"; while($row=mysql_fetch_array($result)) { echo "<pointofinterest>"; echo "<id>" . $row['id'] ."</id>"; echo "<country>" . $row['country'] . "</country>"; echo "<city>" . $row['city'] . "</city>"; echo "<bar>" . $row['bar'] . "</bar>"; echo "<description>" . $row['description'] . "</description>"; echo "</pointofinterest>"; } echo "</pointsofinterest>"; } elseif ($_SERVER["REQUEST_METHOD"]=="DELETE") { mysql_query("delete from pointsofinterest where country='$a'"); } elseif ($_SERVER["REQUEST_METHOD"]=="PUT") { $response= file_get_contents('php://input'); } mysql_close($conn); ?> Quote Link to comment https://forums.phpfreaks.com/topic/148605-php-and-rest/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.