Jump to content

how to open and write to a zone file


tomfmason

Recommended Posts

I have tried to open a zone file but I keep getting the error

[code]Parse error: parse error, unexpected T_STRING in test_open.php on line 3[/code]

here is the simple fopen() script

[code=php:0]<?php
$filename ="mysite.com.zone"
fopen("C:\\windows\\system32\\dns\\etc\\$filename", "r")
?>[/code]

In this example I am just trying to open the zone file with the read permissions.
Also, which would be the best way to reload bind in a windows environment? Would that be some sort of socket or?
Link to comment
https://forums.phpfreaks.com/topic/14174-how-to-open-and-write-to-a-zone-file/
Share on other sites

Use this: [code]<?php
$filename ="mysite.com.zone";
$file = "C:\\windows\\system32\\dns\\etc\\$filename";
$fp = fopen($file, "r");
$contents = fread($fp,filesize($file));
fclose($fp);
?>[/code] or this: [code]<?php
$filename ="mysite.com.zone";
$contents = file_get_contents("C:\\windows\\system32\\dns\\etc\\$filename");
?>[/code] to get the contents of the file.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.