$text = include_once 'add.php';
$file = fopen('templates/urbanism/index.html','a');
$fwrite = fwrite($file,$text, '1');
$load_tpl = file( 'templates/urbanism/index.html', FILE_IGNORE_NEW_LINES ); // Получился массив
$new_tpl = array();
foreach( $load_tpl as $load_tpl_key => $load_tpl_value )
{
if ( $load_tpl_key == 35 )
{
$new_tpl[] = 'Добавили сюда что нужно';
$new_tpl[] = $load_tpl_value; // Дописали 35 строку из старого темплейта
}
else
$new_tpl[] = $load_tpl_value;
}
file_put_contents( 'templates/urbanism/index_new.html', implode( "\n", $new_tpl ) );