Código PHP:
$carrera = "Ingeniería Industrial";
conectarse();
$sql = "SELECT jefe,departamento FROM estudiosprofesionales WHERE carrera = $carrera";
$res=mysql_query($sql) or die(mysql_error());
$row=mysql_fetch_assoc($res)or die(mysql_error());
$jefe = $row['jefe'];
$departamento = $row['departamento'];
echo "<strong>Depto : </strong>$departamento<br><strong>Jefe : </strong>$jefe<br>";
Código PHP:
Algo está equivocado en su sintax cerca '*a Industrial' en la linea 1
Saludos y Gracias..