Assume somefile.txt contains the following text on two lines: Mary:King Peter:Jones What will the file contain after the following instructions are executed? $someFile =fopen("somefile.txt","w"); fputs($someFile, "Ann:Porter\\"); fputs($someFile, "Dennis:Smith\\"); fclose($someFile);