Voting

: six plus three?
(Example: nine)

The Note You're Voting On

jphansen at uga dot edu
13 years ago
Here's a regex to validate against the schema for common MySQL
identifiers:

<?php
$string
= "$table_name";
if (
preg_match("/[^\\d\\sa-zA-Z$_]/", $string))
echo
"Failed validation";
?>

<< Back to user notes page

To Top