TUTORIALS

PHP Program to demonstrate String datatype


Posted by: admin

Program


<!DOCTYPE html>
<html>
<body>

<?php
$str = "Welcome to oodlescoop!";
echo $str;
echo "<br>";
var_dump($str);
?>

</body>
</html>

Output

Welcome to oodlescoop!
string(22) "Welcome to oodlescoop!"

:

Tags: