[TYPO3-german] Variable aus URL für PHP-Script
Manfred Hungerland
mobil at csb86.ch
Mon Aug 27 21:05:10 CEST 2007
Hallo zusammen
habe das Problem das ich auf eine Variable in der URL zugreifen muss.
/index.php?id=114&tx_wfqbe_pi1[id_testimony]={1A51FFA9-6FFE-4BAA-B488-856ACE8D1372}
Ich sollte die variable: id_testimony das heisst den wert
{1A51FFA9-6FFE-4BAA-B488-856ACE8D1372}
an ein PHP-Script übergeben.
könnte mir da jemand weiterhelfen?
bisher habe ich sowas zusammen.
<?php
include('fileadmin/template/wfqbe/rtfclass.php');
$id_value = t3lib_div::_GP('id');
$sql="SELECT * FROM TESTIMONY WHERE (TESTIMONY.T_NO = $id_value)";
$result= mysql_query($sql) or die(mysql_error());
$testimony = mysql_fetch_array($result);
$r = new rtf ($testimony['TESTIMONY']);
$r->output("html");
$r->parse();
if( count( $r->err) == 0) { // no errors detected
echo $r->out;
}
?>
momentan erhalte ich nur die Page id > in diesem Fall 114.
Shalom
Manfred
More information about the TYPO3-german
mailing list