PHP OOP Interfaces
Program 1 <html> <head><title>Demo Interface</title></head> <body> <center> <?php interface Button { function click(); } interface Key { function keypress(); } class MyColor implements Button,Key { function click() { echo “<font color=red size=7>Color is Red...

