Olá pessoal. Estou aprendendo php e estou tendo o seguinte problema. Fiz o seguinte código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sem título</title>
</head>
<body>
<?php
$v[0] = "Fábio";
$v[1] = "Bianca";
$v[3] = "Luis";
?>
Estava eu o <?=$v[0]?> e a <?=$v[1]?> na festa do <?=$v[3]?>!!!
</body>
</html>
A saída no navegador fica assim: Estava eu o e a na festa do !!![color=red] [/color]
Estou achando que é o Dreamweaver, pois com outros exemplos em que tento usar uma variável, está acontecendo o mesmo.
Obrigado a quem puder me ajudar.