[TYPO3-german] Variable aus URL für PHP-Script

Basti Baumann donillo at gmail.com
Tue Aug 28 08:47:44 CEST 2007


Manfred Hungerland schrieb:
> 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

Hi Manfred,

du musst ja auch die richtige Variable auslesen:

$id_value = t3lib_div::_GP('id_testimony');

Grüße
Basti


More information about the TYPO3-german mailing list