My major is IST
My major is IST
/home/rweeks/public_html/week3/test.phpMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)102

0.02

1
1
2
Jane
3.14
The value of PI is around 3.14 Welcome to UWM $count = strlen("hello!"); echo "The num of chars in this string is ".$count; # user-defined functions function write_msg(){ // without any parameters echo "Hello"; echo "
"; } write_msg(); // function call, write_msg(); function write_msg_name($fname){ echo "hello $fname"; } write_msg_name("Jane"); write_msg_name("Bob"); function get_full_name($firstname, $lastname){ $full_name = $firstname. " ".$lastname; echo $full_name; } get_full_name('jane','smith'); // call the func get_full_name('bob',