Hey,
ich habe eine Datei „index.php“ und eine Datei „class2.php“.
Ich möchte aus class2.php den Wert einer Variable auslesen und
in index.php verwenden.
Also ich hab mir hier alle Antworten angegugt .
Aber ein einfaches Beispiel von deiner index.php und class2.php wäre hilfreich.
Und wichtig bei einer Frage wäre auch die vorher nachher beschreibung.
Was hast du, Was willst Du, Was brauchst Du.
Immoment sehe ich da viele möglichkeiten.
index.php
<?php $wertvonclass2=NULL;<br />// wert holen aus class2.php
$wertvonclass2 = getClass2Wert();
?\>
class2.php
<?php $class2wert=NULL;<br />$class2wert="Neu";
echo "Blödeausgabe von class2";
?\>
oder
index.php
<?php $wertvonclass2=NULL;<br />// wert holen aus class2.php
$wertvonclass2 = getClass2Wert();
?\>
class2.php
<?php $class2wert=NULL;<br />$class2wert=$\_POST['bildnr'];
echo "Blödeausgabe von class2";
?\>
oder
index.php
<?php $wertvonclass2=NULL;<br />// wert holen aus class2.php
$wertvonclass2 = getClass2Wert();
?\>
class2.php
<?php $class2wert=NULL;<br />$class2wert=getWert();
echo "Blödeausgabe von class2";
?\>
index.php
<?php $wertvonclass2=NULL;<br />// wert holen aus class2.php
$wertvonclass2 = getClass2Wert();
?\>
class2.php
<?php $class2wert=NULL;<br />$class2wert=getWert();
echo "Blödeausgabe von class2 ist wert ".$class2wert;
?\>
in jedem fall braucht man etwas anderes.
welche von deinen konstrukten liegt vor und was brauchst du am ende als wert