Talk:Computer punctuation

From Citizendium
Jump to navigation Jump to search

Hi, everybody. Sorry I've been away for a long time. I was hoping Wikipedia would let me contribute, but they're becoming inconsistent again.

Anyway, I'd like to have a place on the Internet to assemble all the hard-won, difficult-to-find information about how to punctuate various statements and values used in computer programming. I don't care what the article title is, as long as search engines can find it.

I'm especially concerned about client-server programing such as using PHP and MySQL to collect information from users at website and store it in a database.

Is this encyclopedia the right place? If not, I'll just dump it all at Conservapedia, but I'd rather use a free license. --Ed Poor 17:08, 8 October 2009 (UTC)

Quoting examples

if (!get_magic_quotes_gpc()) {
   $lastname = addslashes($_POST['lastname']);
} else {
   $lastname = $_POST['lastname'];
}

Can I quote the above example, with credit? --Ed Poor 18:24, 8 October 2009 (UTC)