I tried the "\f" and it didn't work. I've also tried:
$word->Selection->EndKey;
$word->Selection->InsertBreak;
// and tried...
$word->Selection->EndKey->unit=wdStory->Extend=wdMove;
$word->Selection->InsertBreak->wdPageBreak;
// and tried...
$word->Selection->InsertBreak->Type=wdPageBreak;
I know this works in VBA:
Selection InsertBreak Type:=wdPageBreak
But how do I make that work in php?
$word->Selection->InsertBreak...????;