<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PHP Archives -</title>
	<atom:link href="https://mitindia.in/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/php/</link>
	<description></description>
	<lastBuildDate>Sat, 26 Nov 2016 07:25:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>PHP Archives -</title>
	<link>https://mitindia.in/tag/php/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>PHP-Examples</title>
		<link>https://mitindia.in/php-examples/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Thu, 30 Jun 2016 08:13:10 +0000</pubDate>
				<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[swap 2 numbers]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=191</guid>

					<description><![CDATA[<p>Here are some basic programs using PHP 1. Arithmetic operation program using PHP &#60;?php $str=" Arithmetic operation"; $a=4; $b=5; $c=$a+$b; echo "Sum=", $c; $c=$a-$b; echo "&#60;br&#62;Sub=", $c; $c=$a*$b; echo "&#60;br&#62;Mul=", $c; $c=$a/$b; echo "&#60;br&#62;Div=", $c; ?&#62; 2. PHP program to print person name and age. &#60;?php $name="John"; $age=20; echo "Person name=", $name; echo "&#60;br&#62;Age=", $age; [&#8230;]</p>
<p>The post <a href="https://mitindia.in/php-examples/">PHP-Examples</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3 class="post-title entry-title">Here are some basic programs using PHP</h3>
<div id="post-body-4984984352375892415" class="post-body entry-content">
<div dir="ltr">
<p>1. Arithmetic operation program using PHP</p>
<pre>&lt;?php
$str=" Arithmetic operation";
$a=4;
$b=5;
$c=$a+$b;
echo "Sum=", $c;
$c=$a-$b;
echo "&lt;br&gt;Sub=", $c;
$c=$a*$b;
echo "&lt;br&gt;Mul=", $c;
$c=$a/$b;
echo "&lt;br&gt;Div=", $c;
?&gt;</pre>
<p>2. PHP program to print person name and age.</p>
<pre>&lt;?php
$name="John";
$age=20;
echo "Person name=", $name;
echo "&lt;br&gt;Age=", $age;
?&gt;</pre>
<p>3. PHP Program to SWAP 2 Numbers</p>
<pre>&lt;?php
$a=4;
$b=5;
echo "A: before swap=", $a;
echo "&lt;br&gt;B: before swap=", $b;
$c=$a;
$a=$b;
$b=$c;
echo "&lt;br&gt;A: After swap=", $a;
echo "&lt;br&gt;B: After swap=", $b;
?&gt;</pre>
<p>4.  PHP Program to test whether the number is +ve or -ve.</p>
<pre>&lt;?php
$a=-10;
if ($a&gt;0)
{
echo "Number is positive";
}
else
{
echo "Number is negative";
}
?&gt;</pre>
<p>5. PHP program to test whether the person is Eligible to vote or not.</p>
<pre>&lt;?php
$age=19;
$name="John";
if ($age&gt;=18)
{
echo $name, " is eligible for vote";
}
else
{
echo $name, " is NOT eligible for vote";
}
?&gt;</pre>
</div>
</div>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fphp-examples%2F&amp;linkname=PHP-Examples" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fphp-examples%2F&amp;linkname=PHP-Examples" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fphp-examples%2F&#038;title=PHP-Examples" data-a2a-url="https://mitindia.in/php-examples/" data-a2a-title="PHP-Examples"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/php-examples/">PHP-Examples</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>PHP</title>
		<link>https://mitindia.in/php/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 28 Jun 2016 06:52:43 +0000</pubDate>
				<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=187</guid>

					<description><![CDATA[<p>PHP = Pre-processor Hypertext PHP, a server side scripting languages widely (nearly 82% of the worlds websites are developed using PHP!) used in developing dynamic and interactive webpages. Advantages of PHP ——Dynamic content. —Computational capability. —Database and file system access. —Network access (from the server only). —Built-in libraries and functions. —Known platform for execution (as opposed [&#8230;]</p>
<p>The post <a href="https://mitindia.in/php/">PHP</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<div><span style="color: #808080;">PHP = Pre-processor Hypertext PHP, a server side scripting languages widely (nearly 82% of the worlds websites are developed using PHP!) used in developing dynamic and interactive webpages.</span></div>
<div></div>
<div><span style="color: #808000;"><b>Advantages of PHP</b></span></div>
<ul>
<li><span style="color: #808080;">——Dynamic content.</span></li>
<li><span style="color: #808080;">—Computational capability.</span></li>
<li><span style="color: #808080;">—Database and file system access.</span></li>
<li><span style="color: #808080;">—Network access (from the server only).</span></li>
<li><span style="color: #808080;">—Built-in libraries and functions.</span></li>
<li><span style="color: #808080;">—Known platform for execution (as opposed to client-side, where the platform is uncontrolled.)</span></li>
<li><span style="color: #808080;">—Security improvements</span></li>
</ul>
<div><span style="color: #339966;">Developed by Rasmus Lerdorf in 1994</span><br />
<span style="color: #339966;">It is a powerful server-side scripting language for creating dynamic and interactive websites.</span><br />
<span style="color: #339966;">It is an open source software, which is widely used and free to download and use (PHP is FREE to download from the official PHP resource: www.php.net). </span><br />
<span style="color: #00ccff;"><span style="color: #339966;">It is an efficient alternative to competitors such as Microsoft&#8217;s ASP.</span></span></div>
<div><span style="color: #008080;">PHP is perfectly suited for Web development and can be embedded directly into the HTML code.</span><br />
<span style="color: #008080;">The PHP syntax is very similar to JavaScript, Perl and C. </span><br />
<span style="color: #008080;">PHP is often used together with Apache (web server) on various operating systems. It also supports ISAPI and can be used with Microsoft&#8217;s IIS on Windows.</span><br />
<span style="color: #008080;">PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)</span></div>
<div><span style="color: #008080;">PHP files have a file extension of &#8220;.php&#8221;, &#8220;.php3&#8221;, or &#8220;.phtml&#8221;</span><br />
<span style="color: #008080;">PHP files can contain text, HTML tags and scripts</span><br />
<span style="color: #008080;">PHP files are returned to the browser as plain HTML</span></div>
<div><span style="color: #ff6600;"><strong><span style="text-decoration: underline;">What you need to develop PHP Application:</span></strong></span><br />
<span style="color: #3366ff;">1. Install Apache (or IIS) on your own server, install PHP, and MySQL OR</span><br />
<span style="color: #3366ff;">2. Install Wampserver2 (a bundle of PHP, Apache, and MySql server) on your own server/machine</span></div>
<div><span style="text-decoration: underline;"><span style="color: #ff6600; text-decoration: underline;">Sample PHP Syntax</span></span></div>
<div><span style="color: #808080;">&lt;?php</span><br />
<span style="color: #808080;">echo &#8220;Hello Class of 2011. This is my first PHP Script&#8221;;</span><br />
<span style="color: #808080;">echo &#8220;&lt;br /&gt;&#8221;;</span><br />
<span style="color: #808080;">print &#8220;&lt;b&gt;&lt;i&gt;What have you learnt and how many friends have you made?&lt;/i&gt;&lt;/b&gt;&#8221;;</span><br />
<span style="color: #808080;">echo &#8220;&lt;br /&gt;&lt;a href=&#8217;PHP I-BSIC.ppt&#8217;&gt;PHP BASIC&lt;/a&gt;&#8221;;</span><br />
<span style="color: #808080;">?&gt;</span></div>
<div></div>
<div><span style="text-decoration: underline;"><span style="color: #993300; text-decoration: underline;"><strong>Steps to  execute PHP Programs</strong></span></span></div>
<div><span style="color: #666699;">1. Install WAMP server or XAMPP or LAMP </span></div>
<div><span style="color: #666699;">2. Create a PHP file (exa: a1.php)</span></div>
<div><span style="color: #666699;">3. Start WAMP Server (wait for WAMP server icon on system tray turns into green color, which means server is running properly!)</span></div>
<div><span style="color: #666699;">4. Place your newly created php file in the following location : <strong>C:\WAMP\WWW\yourwebfolder</strong></span></div>
<div><span style="color: #666699;">5. Now, open the browser and type the url in the address bar as : http://localhost/yourwebfolder/a1.php</span></div>
<div><span style="color: #99cc00;">That&#8217;s it, now you can able to see your php program output!</span></div>
<div></div>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fphp%2F&amp;linkname=PHP" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fphp%2F&amp;linkname=PHP" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fphp%2F&#038;title=PHP" data-a2a-url="https://mitindia.in/php/" data-a2a-title="PHP"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/php/">PHP</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Fill values in combo box from MySQL using PHP</title>
		<link>https://mitindia.in/fill-values-in-combo-box-from-mysql-using-php/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Tue, 21 Jun 2016 11:41:32 +0000</pubDate>
				<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[phpmysql]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=107</guid>

					<description><![CDATA[<p>THE BELOW EXAMPLE SHOWS THAT HOW TO FILL VALUES IN SECOND COMBO BOX BASED ON FIRST COMBO BOX SELECTED VALUES FROM MYSQL DB USING PHP 1 Create a table called &#8220;Course&#8221; as following screen shot with insert few records as well in it. 2. Create another table called &#8220;Subjects&#8221; and add few records as following. 3. [&#8230;]</p>
<p>The post <a href="https://mitindia.in/fill-values-in-combo-box-from-mysql-using-php/">Fill values in combo box from MySQL using PHP</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>THE BELOW EXAMPLE SHOWS THAT HOW TO FILL VALUES IN SECOND COMBO BOX BASED ON FIRST COMBO BOX SELECTED VALUES FROM MYSQL DB USING PHP</p>
<div>1 Create a table called &#8220;<b>Course</b>&#8221; as following screen shot with insert few records as well in it.</div>
<div class="separator"><img decoding="async" class="alignnone" src="https://2.bp.blogspot.com/-EukF_KgNdwM/VtAiIT2y69I/AAAAAAAABLc/TgyYVcrNXWc/s1600/course_table.JPG" width="269" height="177" border="0" /></div>
<div></div>
<div></div>
<div>2. Create another table called &#8220;<b>Subjects</b>&#8221; and add few records as following.</div>
<div class="separator"><img fetchpriority="high" decoding="async" class="alignnone" src="https://2.bp.blogspot.com/-fOdFZ4EUcWo/VtAiwPQbIyI/AAAAAAAABLk/Q1z9SHQXMR0/s1600/subjects.JPG" width="350" height="457" border="0" /></div>
<div></div>
<div></div>
<div>3. Now create &#8220;<b>config.php</b>&#8221; with following code in it.</div>
<div>
<pre>&lt;?php
      $host="localhost";
      $username="root";
      $password="";
      $dbname="demo";
      $con=mysql_connect("$host","$username","$password");
      mysql_select_db("$dbname",$con);
?&gt;</pre>
</div>
<div></div>
<div>In the above code please enter your database name, user name, password etc.</div>
<div></div>
<div>4. Now create &#8220;cmb5.php&#8221; program with following code in it.</div>
<div>
<pre>&lt;?php
include('config.php');
?&gt;
&lt;html&gt;
&lt;head&gt;
&lt;script language="javascript"&gt;
    function showSub(catid)
 {
 document.frm.submit();
 }
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h2&gt; Fill values in second combo box based on &lt;/br&gt; first 

combo box values from MySQL DB using PHP &lt;/h2&gt;
&lt;hr color=red&gt;
&lt;?php error_reporting (E_ALL ^ E_NOTICE); ?&gt;
&lt;form action="" method="POST" name="frm" id="frm"&gt;
&lt;table width="500" border="0"&gt;
  &lt;tr bgcolor=silver&gt;
    &lt;td&gt;Course&lt;/td&gt;
    &lt;td&gt; &lt;select name="course_id" id="course_id" 

onChange="showSub(this.value);"&gt;
       &lt;option value=""&gt;--Select--&lt;/option&gt;
       &lt;?php
        $sql1="select * from course";
       $sql_row1=mysql_query($sql1);
       while($sql_res1=mysql_fetch_assoc($sql_row1))
       {
       ?&gt;
       &lt;option value="&lt;?php echo $sql_res1["id"]; ?&gt;" 

&lt;?php if($sql_res1["id"]==$_REQUEST["course_id"]) { 

echo "Selected"; } ?&gt;&gt;&lt;?php echo 

$sql_res1["course_name"]; ?&gt;&lt;/option&gt;
        &lt;?php
        }
        ?&gt;
       &lt;/select&gt;
       &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr bgcolor=silver&gt;
    &lt;td&gt;Subjects&lt;/td&gt;
    &lt;td&gt;
       &lt;select name="sub_id" id="sub_id"&gt;
        &lt;option value=""&gt;--Select--&lt;/option&gt;
       &lt;?php
       $sql="select * from subjects where 

cat_id='$_REQUEST[course_id]'";
       $sql_row=mysql_query($sql);
       while($sql_res=mysql_fetch_assoc($sql_row))
       {
       ?&gt;
       &lt;option value="&lt;?php echo $sql_res["id"]; 

?&gt;"&gt;&lt;?php echo $sql_res["Sub"]; ?&gt;&lt;/option&gt;
       &lt;?php
       }
       ?&gt;
    &lt;/select&gt;
       &lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
</div>
<div></div>
<div>5. Finally go for out put to see the above program.</div>
<div class="separator"><img decoding="async" class="alignnone" src="https://3.bp.blogspot.com/-BVQm_AosxBs/VtAlEAJ5ouI/AAAAAAAABLw/rNfwqdx_OrI/s1600/output1.JPG" width="684" height="290" border="0" /></div>
<div>That&#8217;s all for now, kindly subscribe us / comments your response!.</div>
<div></div>
<div>Thank you!</div>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Ffill-values-in-combo-box-from-mysql-using-php%2F&amp;linkname=Fill%20values%20in%20combo%20box%20from%20MySQL%20using%20PHP" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Ffill-values-in-combo-box-from-mysql-using-php%2F&amp;linkname=Fill%20values%20in%20combo%20box%20from%20MySQL%20using%20PHP" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Ffill-values-in-combo-box-from-mysql-using-php%2F&#038;title=Fill%20values%20in%20combo%20box%20from%20MySQL%20using%20PHP" data-a2a-url="https://mitindia.in/fill-values-in-combo-box-from-mysql-using-php/" data-a2a-title="Fill values in combo box from MySQL using PHP"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/fill-values-in-combo-box-from-mysql-using-php/">Fill values in combo box from MySQL using PHP</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>PHP-Database Programs</title>
		<link>https://mitindia.in/php-database-programs/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Sat, 18 Jun 2016 09:39:21 +0000</pubDate>
				<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[Database connection]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=89</guid>

					<description><![CDATA[<p>Following are the various PHP  programs to demonstrate Database  connections. 1. PHP Program to demonstrates whether the connection to mysql database is active or not. &#60;?php $dbhost = 'localhost'; $dbuser = 'root'; $dbpass = ''; $db = 'mars_db'; $conn = mysql_connect($dbhost,$dbuser,$dbpass); if (!$conn) { die('Could not connect: ' . mysql_error()); } else { echo 'Connected [&#8230;]</p>
<p>The post <a href="https://mitindia.in/php-database-programs/">PHP-Database Programs</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Following are the various PHP  programs to demonstrate Database  connections.</p>
<p>1. PHP Program to demonstrates whether the connection to mysql database is active or not.</p>
<pre>&lt;?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$db = 'mars_db';
$conn = mysql_connect($dbhost,$dbuser,$dbpass);

if (!$conn)
{
die('Could not connect: ' . mysql_error());
}
else
{
echo 'Connected successfully';
}
?&gt;</pre>
<p>The above program will show following output.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://4.bp.blogspot.com/-w36fsSTUUMg/VwXrRlr6I0I/AAAAAAAABSY/2ToPHgultVYwhmGwLd2IxHx8MWrYLlrpA/s400/connection_active.JPG" width="400" height="126" border="0" /></div>
<p>2. PHP Program to create database from localhost.</p>
<pre>&lt;?php
$con=mysqli_connect("localhost","root","");

if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="CREATE DATABASE demo_12";

if (mysqli_query($con,$sql))
  {
  echo "Database demo_12 created successfully";
  }
else
  {
  echo "Error creating database: " . mysqli_error();
  }
?&gt;</pre>
<p>The above program produces following output.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://1.bp.blogspot.com/-W7pmgqWPJ_0/VwXsTPfkv6I/AAAAAAAABSk/p6niwdwpzPczxL0n3Rg6Z2D4xEAEpt8Yw/s400/database_created.JPG" width="400" height="105" border="0" /></div>
<p>3. PHP Program to create a table in database from localhost.</p>
<pre>&lt;?php
$con=mysqli_connect("localhost","root","","demo_12");

if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="CREATE TABLE emp_ret(FirstName CHAR(30),LastName CHAR(30),Age INT)";

if (mysqli_query($con,$sql))
  {
  echo "Table emp_ret created successfully";
  }
else
  {
  echo "Error creating table: " . mysqli_error();
  }
?&gt;</pre>
<p>The above program will have a following output.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://4.bp.blogspot.com/-Ghhq8WWRGKw/VwXs7hiMhKI/AAAAAAAABSs/hqHPZsOS3KAXMHmkG1B6l94GljlLm1Pgg/s400/table_created.JPG" width="400" height="96" border="0" /></div>
<p>4. PHP Program to connect MS Access Database using ODBC Data source. [<a href="http://www.mitindia.in/p/dsn.html">Click here to create DSN (Data Source Naming) for MS Access.</a>]</p>
<pre>&lt;html&gt;
&lt;body&gt;
&lt;h3 style="background-color:yellow"&gt; Connecting to Ms 

Access Database using PHP &lt;/h3&gt;
&lt;hr&gt;
&lt;?php
$conn=odbc_connect('acc_php','','');
if (!$conn)
 {
exit("Connection Failed: " . $conn);
}
$sql="SELECT * FROM Cust";
$rs=odbc_exec($conn,$sql);

if (!$rs)
{
exit("Error in SQL");
}
echo "&lt;table border=1&gt;&lt;tr&gt;";
echo "&lt;th&gt;Customer Code&lt;/th&gt;";
echo "&lt;th&gt;Customer Name&lt;/th&gt;";
echo "&lt;th&gt;Address&lt;/th&gt;&lt;/tr&gt;";
while (odbc_fetch_row($rs))
  {
  $c_code=odbc_result($rs,"ccode");
  $c_name=odbc_result($rs,"cname");
  $c_addr=odbc_result($rs,"caddr");
  echo "&lt;tr&gt;&lt;td&gt;$c_code&lt;/td&gt;";
  echo "&lt;td&gt;$c_name&lt;/td&gt;";
  echo "&lt;td&gt;$c_addr&lt;/td&gt;&lt;/tr&gt;";
  }
odbc_close($conn);
echo "&lt;/table&gt;";
?&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>The above program produces following output.</p>
<div class="separator"><img loading="lazy" decoding="async" class="alignnone" src="https://2.bp.blogspot.com/-5-4W8oOVswM/VwXvZ4tVhDI/AAAAAAAABTA/k2Cl6A0X3DEj4vhklXQX0LjCG9sqJoThg/s400/php2msaccess.JPG" width="400" height="196" border="0" /></div>
<p>&nbsp;</p>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fphp-database-programs%2F&amp;linkname=PHP-Database%20Programs" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fphp-database-programs%2F&amp;linkname=PHP-Database%20Programs" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fphp-database-programs%2F&#038;title=PHP-Database%20Programs" data-a2a-url="https://mitindia.in/php-database-programs/" data-a2a-title="PHP-Database Programs"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/php-database-programs/">PHP-Database Programs</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
