Eroare Undefined index
Scris: Joi Oct 04, 2012
Buna, si bine te-am regasit.
Am urmatoarea situatie:
test1.php
test2.php
Problema e ca nu-mi creaza cele 2 elemente, title si meta, Imi da un tabel cu eroarea ca sunt undefine desi primul "echo" il executa, tipareste cele 2 variabile (deci nu sunt undefine) "TITLU / cuvinte cheie ".
Eroarea este:
Multumesc anticipat.
Am urmatoarea situatie:
test1.php
Cod: Selectaţi tot
<?php
if(!isset($_SESSION)) session_start();
$titlu='TITLU';
$keyw='cuvinte cheie';
$_SESSION['titlu']=$titlu;
$_SESSION['keyw']=$keyw;
?>
<script>
window.location="test2.php";
</script>
Cod: Selectaţi tot
<?php
if(!isset($_SESSION)) session_start();
$wtitlu=$_SESSION['titlu'];
$wkeyw=$_SESSION['keyw'];
echo $wtitlu.' / '.$wkeyw;
echo '<meta name="Keywords" content="'.$wkeyw.'" />';
echo '<title>'.$wtitlu.'</title>';
?>
Eroarea este:
Cod: Selectaţi tot
Notice: Undefined index: titlu in C:\Program Files\EasyPHP-5.3.5.0\www\Test1\test2.php on line 3
Call Stack#TimeMemoryFunctionLocation10.0005332208{main}( )..\test2.php:0Dump $_SERVER$_SERVER['REMOTE_ADDR'] =string '127.0.0.1' (length=9)
$_SERVER['REQUEST_METHOD'] = string 'GET' (length=3)
$_SERVER['REQUEST_URI'] = string '/Test1/test2.php' (length=16)
Variables in local scope (#1)
$wkeyw = Undefined
$wtitlu = Undefined
Notice: Undefined index: keyw in C:\Program Files\EasyPHP-5.3.5.0\www\Test1\test2.php on line 4
Call Stack#TimeMemoryFunctionLocation10.0005332208{main}( )..\test2.php:0
Variables in local scope (#1)
$wkeyw = Undefined
$wtitlu = null