Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Benoit Asselin http://www.ab-d.fr

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Use get_magic_quotes_gpc();

function f_magic_quotes($text) {
	if ( !get_magic_quotes_gpc() ) {
		return addslashes($text);
	} else {
		return $text;
	}
}


function f_clean_quotes($text) {
	if ( !get_magic_quotes_gpc() ) {
		return $text;
	} else {
		return stripslashes($text);
	}
}


Source: ab-d

Write a variable PHP with spaces or accents

Write a variable PHP with spaces or accents

<?php

${'New variable text'} = 'This is a new variable text.';

echo ${'New variable text'};
// This is a new variable text.

?>


Source: ab-d
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS