# $Id$
/^[ \t]*php3_*/ {
phpcommand=substr($1,6)
phpvalue=tolower($2)
print ""
print $0
print ""
print ""
if (phpvalue=="on") {
print "php_admin_flag " phpcommand " on"
} else if (phpvalue=="off") {
print "php_admin_flag " phpcommand " off"
} else {
print "php_admin_value " phpcommand " " substr($0,index($0,$1)+length($1)+1)
}
print ""
}
! /^[ \t]*php3_*/ {
print $0
}