Ho installato il modulo xdebug 2.0.
L'ho provato con il file qui sotto, che contiene un banale errore......
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
</head>
<body>
<?php
xdebug_enable();
$variabile = "pippo";
echo "$variabile" ";
?>
</body>
</html>
....l'unica cosa che ottengo è la barra di warning di xdebug che mi ripete la sintassi di errore che già l'interprete php mi avrebbe dato.
Come posso vedere lo stack ecc.....?
Ciao e grazie. walter