- or download this
SELECT url,name FROM links
- or download this
<a href='$url'>$name</a><br>
- or download this
CREATE FUNCTION format_link(text,text)
RETURNS text AS '
return qq[<a href="http://www.domain.com/$_[0]" class="body_link">$_
+[1]</a>];
' LANGUAGE 'plperl';
- or download this
SELECT format_link(url,name) FROM links
- or download this
sfunc_name(type,type)
- or download this
sfunc_name(type,type,type)
- or download this
CREATE FUNCTION link_agg (text,text,text)
RETURNS text AS '
return $_[0] . qq[<a href="http://www.domain.com/$_[0]" class="body_
+link">$_[1]</a><br>];
' LANGUAGE 'plperl';
- or download this
SELECT link_agg(url,name) FROM link;