MAMP 500 Internal Server Error. MAC OSX php

MethodistMX_Juan_Pluma picture MethodistMX_Juan_Pluma · Dec 3, 2011 · Viewed 14.5k times · Source

No results from my php code on the MAMP just got a 500 internal server error. Also I don't know if has something to do with XCache installed, no idea what's it but comes with MAMP. Here is my code. Trying to display an image binary stored on my mysql dB.

  <?php 
  mysql_connect("localhost", "root", "root") or die(mysql_error());
  mysql_select_db("catlogo") or die(mysql_error());
  $image = mysql_query("SELECT * FROM catlogo WHERE id=2");
  $image = mysql_fech_assoc($image);
  $image = $image['imagen'];

  header("Content-type:image/png");
  echo $image;

  ?>

Answer

54dev picture 54dev · Nov 19, 2015

php Syntax Error

line 5:

$image = mysql_fech_assoc($image);

replace:

$image = mysql_fetch_assoc($image);