Hi,
<?php
(...)
if ( get_magic_quotes_gpc() )
$postedValue = stripslashes( $value ) ;
else
$postedValue = stripslashes( $value ) ;
Von dieser Unterscheidung würde ich grundsätzlich absehen.
Gemeint ist wahrscheinlich folgendes.
~~~php
<?php
(...)
if ( get_magic_quotes_gpc() )
$postedValue = stripslashes( $value ) ;
else
$postedValue = $value ;
bezieungsweise
$postedValue = get_magic_quotes_gpc() ? stripslashes($value) : $value;
Den Inhalt von $postedValue musst du nun abspeichern, wohin auch immer.
Gruß,
Felix
--
21 is just the half truth.
21 is just the half truth.