PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Hey, this isn't really any code that i'll show, but i'm wondering if you somehow can go to a specefic row number using fopen in the file you are editing?
$contents = file_get_contents($filename);
$row = explode("\n", $contents);
// to access the specific row use the following (row_you_want - 1)
// if you want row 30, then you would get 29
echo $row[29];