How would I make a form on a page that were a person ads his url and then have it check for frame break. If it doesnt break frames do this and if it does, do other.
ANy suggestions would be great. Looking for a simple way to check for this.
what do you mean "break frames"?
you can fetch thier page into a string, and then parse the string
$html = file_get_contents('http://foo.com');
if using an older php version, you may need to use fopen() and fread()
I want to add thier url into a form and have it open up into a page that has frames, and if thier page doesnt break out of it, then it will do something, and if does , do something else.