HI , I basically have made something that I require work in html but now trying to convert to get the results from data base but get this error and cant work out how to change it, if someone could help
unexpected T_STRING, expecting ',' or ';' on line 69
***********all my css and database connection and query stuff**********************
while($row = mysql_fetch_array($result)){
echo '<div class="BoxContainer">
<div class="contentBox">
<span class="inBoxTitle green">green box</span>
<!-- Demo Button! -->
<button class="botGreen" id="botSmallPic1">Picture 1</button>
</div>
</div> <!-- .BoxContainer -->
<script src="/css/static/js/box.js"></script>
<script type="text/javascript">
$("#botSmallPic1").click(function(){
$.smallBox(
{
title: "",
content: "",
color: "#ec008c",
img: "",
icon: ""
}
);
});
</script>';
}
?>
</body>
</html>