verwijderen van rn in database string
Rolf van der Kaaden
16/10/2011 15:12:53De string content word in de datbase gezet maar krijg het niet voor elkaar om de RN hier uit te krijgen. Heb het al met trim geprobeerd maar dit wou ook niet werken, iemand een idee wat ik fout doe?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
function mysql_klaar_maken( $string ) {
$magic_quotes = get_magic_quotes_gpc();
$real_escape = function_exists( "mysql_real_escape_string" );
if ( $real_escape ) {
if ($magic_quotes) { $string = stripslashes( $string ); }
$string = mysql_real_escape_string( $string );
} else {
if(!$magic_quotes) {$string = addslashes( $string ); }
}
return $string;
}
$Content = mysql_klaar_maken(nl2br($_POST['text']));
$magic_quotes = get_magic_quotes_gpc();
$real_escape = function_exists( "mysql_real_escape_string" );
if ( $real_escape ) {
if ($magic_quotes) { $string = stripslashes( $string ); }
$string = mysql_real_escape_string( $string );
} else {
if(!$magic_quotes) {$string = addslashes( $string ); }
}
return $string;
}
$Content = mysql_klaar_maken(nl2br($_POST['text']));
Gewijzigd op 16/10/2011 15:14:16 door Rolf van der Kaaden
PHP hulp
24/11/2024 04:55:57- SanThe -
16/10/2011 15:48:59Rolf van der Kaaden
16/10/2011 18:09:19werkt super! bedankt.