error unexpected "=" php
Publicado por Rey (74 intervenciones) el 01/08/2018 17:57:50
me sale este error :
Parse error: syntax error, unexpected '=' in C:\xampp\htdocs\MVC PHP\Controlador\cargar.php on line 6
Parse error: syntax error, unexpected '=' in C:\xampp\htdocs\MVC PHP\Controlador\cargar.php on line 6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
require_once ('Modelo/Conexion.php');
require_once ('Modelo/Consultas.php');
require_once ('Controlador/cargar.php');
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1> Mis Productos</h1>
<?php cargar(); ?>
<div><a href="insertar.html">Nuevo Pedido</a></div>
</body>
</html>
Valora esta pregunta


0