View Problem

Check your language appears on the langref.org site

Your language name should appear within the HTML found at the http://langreg.org main page.
ExpandDiskEdit
php
if (preg_match("/PHP/i", file_get_contents("http://langref.org/"))) {
echo "PHP appears on langref.org";
} else {
echo "PHP doesn't appear on langref.org";
}
ExpandDiskEdit
erlang
URL = "http://langref.org/", Language = "erlang", Regexp = ".*" ++ URL ++ Language ++ ".*",

case http:request(URL) of
{ok, {_, _, Body}} ->
case regexp:first_match(Body, Regexp) of
{match, _, _} -> io:format("Language ~s exists @ ~s~n", [Language, URL]);
_ -> false
end;
{error, ErrorInfo} -> throw("Error: " ++ http:format_error(ErrorInfo))
end,

Submit a new solution for php, erlang, or csharp
There are 11 other solutions in additional languages (clojure, cpp, fantom, fsharp ...)