Posts

Showing posts from August 9, 2015

String Operations in PHP

Image
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Strings</title> <style> h3{ font-size: 25px; color: lime; font-size-adjust: true; text-align: center; text-shadow: 2px; } *{ color: skyblue; font-size: 15px; font-family: "Console"; } </style> </head> <body bgcolor="gray"> <h3>String functions</h3> <hr width="1024px"></hr> <center> <pre> <?php $str1="Welcome to tutorital of PHP"; $str2="Thanks for Visiting this Page!!"; //String function and their output.. echo "<h4><u> Original String is (i): {$str1} & (ii) is {$str2}.</u></h4>