<!DOCTYPE html> <html> <head> <title>PHP Null Data Type-aimtocode</title> </head> <body> <?php $x = "Hello world!"; $x = null; var_dump($x); ?> </body> </html>