I'm having a hard time getting the "price" to be displayed. Am I using php the right way in this case?
<html>
<head>
<script src="http://code.jquery.com/jquery-1.12.0.min.js"></script>
</head>
<body>
<table width="100%">
<td>Bitstamp</td>
<?php
$url = "https://www.bitstamp.net/api/ticker/";
$fgc = file_get_contents($url);
$json = json_decode($fgc, true);
$price = $json["last"];
?>
<td><?php echo $price; ?></td>
</table>
</body>
</html>
<table>is missing a row<tr>but I don't think it would stop it working