<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8453863829337782422</id><updated>2024-11-01T03:47:09.216-07:00</updated><category term="php"/><category term="jQuery"/><category term="Vital info"/><category term="Asp.net C#"/><category term="SQL TIPS"/><category term="API"/><category term="Android"/><category term="Codeigniter"/><category term="XML"/><category term="Ajax"/><category term="mySQL"/><title type='text'>Techno Blaze | Ajax, Android, Asp.net C#, Codeigniter, jQuery, mySQL</title><subtitle type='html'>Techno Blaze provides tips for Ajax, Android, API, Asp.net C#, Codeigniter, jQuery, mySQL, php, SQL TIPS, Vital info, XML, jquery plugins, android code.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default?start-index=26&amp;max-results=25'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>64</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-7634191301487042538</id><published>2018-11-14T13:27:00.000-08:00</published><updated>2018-11-14T13:27:41.068-08:00</updated><title type='text'>Multi process download</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;b&gt;To fast up the process split up two different threads&lt;/b&gt;&lt;br /&gt;
&lt;div&gt;
 &lt;pre class=&quot;prettyprint&quot; style=&quot;font-size: 11px;&quot;&gt;
&amp;nbsp;  private static void Writer()
&amp;nbsp;  {            
&amp;nbsp;  try
&amp;nbsp;     {               
&amp;nbsp;        WebClient client = new WebClient();
&amp;nbsp;        string status = client.DownloadString
&amp;nbsp; (&quot;https://speckyboy.com/25-modern-content-heavy-websites/&quot;);
&amp;nbsp;
&amp;nbsp;                using (FileStream fs = File.Open(&quot;D:\\import\\111.txt&quot;, FileMode.Create,
&amp;nbsp;  FileAccess.Write, FileShare.ReadWrite))
&amp;nbsp;                {
&amp;nbsp;                    byte[] bytes = Encoding.ASCII.GetBytes(status);
&amp;nbsp;                    int bytelen = bytes.Length / 2;
&amp;nbsp;
&amp;nbsp;                   Thread t = new Thread(()=&gt; NewMethod2(status, fs,0, bytelen));
&amp;nbsp;                    t.Start();
&amp;nbsp;
&amp;nbsp;                    Thread t1 = new Thread(()=&gt; NewMethod2(status, fs, bytelen, bytes.Length));
&amp;nbsp;                    t1.Start();
&amp;nbsp;                   
&amp;nbsp;                    while (true)
&amp;nbsp;                    {
&amp;nbsp;
&amp;nbsp;                        if (!t.IsAlive &amp;&amp; !t1.IsAlive)
&amp;nbsp;                        {
&amp;nbsp;                            fs.Close();
&amp;nbsp;                            break;
&amp;nbsp;                        }
&amp;nbsp;                    }
&amp;nbsp;                    Console.Write(&quot;Write:&quot; + status + Environment.NewLine);
&amp;nbsp;                }
&amp;nbsp;                System.Threading.Thread.Sleep(10);
&amp;nbsp;              
&amp;nbsp;            }
&amp;nbsp;            catch (Exception ex)
&amp;nbsp;            {
&amp;nbsp;                Console.Write(&quot;write&quot; + ex.ToString());
&amp;nbsp;                Console.Read();
&amp;nbsp;            }
&amp;nbsp;        }
 &lt;/pre&gt;

 &lt;pre class=&quot;prettyprint&quot; style=&quot;font-size: 11px;&quot;&gt;
 &amp;nbsp; private static void NewMethod2(string status, FileStream fs,int start, int bytelen)
 &amp;nbsp;        {
  &amp;nbsp;           for (int i = start; i &lt; bytelen; i++)
   &amp;nbsp;          {
  &amp;nbsp;               fs.Write(Encoding.ASCII.GetBytes(status[i].ToString()), 0,
&amp;nbsp;  Encoding.ASCII.GetBytes(status[i].ToString()).Length);
&amp;nbsp; 
 &amp;nbsp;            }
  &amp;nbsp;       }
 &lt;/pre&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/7634191301487042538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2018/11/multi-process-download.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7634191301487042538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7634191301487042538'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2018/11/multi-process-download.html' title='Multi process download'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-4251397429820720081</id><published>2015-08-11T11:19:00.001-07:00</published><updated>2015-08-11T11:20:08.537-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Asp.net C#"/><title type='text'>Download files</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;

&lt;ol style=&#39;font-size:12px;&#39;&gt;
&lt;li&gt;
&amp;nbsp;Create interface for downloads method and path property.
&amp;nbsp;&lt;b&gt;Interface : &lt;/b&gt;
&amp;nbsp;An interface contains only the signatures of methods, properties, events or indexers.
&amp;nbsp;A class or struct that implements the interface must implement the members of the interface 
&amp;nbsp;that are specified in the interface definition.
&lt;pre class=&#39;prettyprint&#39; style=&#39;font-size:11px;&#39;&gt;
&amp;nbsp;public interface downloads 
&amp;nbsp;{
&amp;nbsp;    string path { get; set; }
&amp;nbsp;    void download();
&amp;nbsp;}
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&amp;nbsp;create class name general and inherit the interface class in it

&amp;nbsp;&lt;b&gt;Inheritance : &lt;/b&gt;
&amp;nbsp; Inheritance allows us to define a class in terms of another class, 
&amp;nbsp; which makes it easier to create and maintain an application.

&amp;nbsp;set the property and method for download by using httpresponse download the file from server to local system.
&lt;pre class=&#39;prettyprint&#39; style=&#39;font-size:11px;&#39;&gt;
&amp;nbsp;public class general  : downloads
&amp;nbsp;{

&amp;nbsp;    public string path
&amp;nbsp;    {
&amp;nbsp;        get;
&amp;nbsp;        set;
&amp;nbsp;    }

&amp;nbsp;    public void download()
&amp;nbsp;    {
&amp;nbsp;        using (FileStream fs = File.OpenRead(this.path))
&amp;nbsp;        {
&amp;nbsp;            int length = (int)fs.Length;
&amp;nbsp;            byte[] buffer;

&amp;nbsp;            using (BinaryReader br = new BinaryReader(fs))
&amp;nbsp;            {
&amp;nbsp;                buffer = br.ReadBytes(length);
&amp;nbsp;            }

&amp;nbsp;            HttpContext.Current.Response.Clear();
&amp;nbsp;            HttpContext.Current.Response.Buffer = true;
&amp;nbsp;            HttpContext.Current.Response.AddHeader(&quot;content-disposition&quot;, 
&amp;nbsp;            String.Format(&quot;attachment;filename={0}&quot;, &amp;nbsp;Path.GetFileName(path)));
&amp;nbsp;            HttpContext.Current.Response.ContentType = 
                  &quot;application/&quot; + Path.GetExtension(path).Substring(1);
&amp;nbsp;            HttpContext.Current.Response.BinaryWrite(buffer);
&amp;nbsp;            HttpContext.Current.Response.End();
&amp;nbsp;        }   //
&amp;nbsp;    }
&amp;nbsp;}


&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&amp;nbsp;create the object for class general and set the path to property
&amp;nbsp;call the download method to make a download the file.
&amp;nbsp;&lt;pre class=&#39;prettyprint&#39; style=&#39;font-size:11px;&#39;&gt;
&amp;nbsp; public void sDownload()
&amp;nbsp;    {
&amp;nbsp;        downloads obj = new general();
&amp;nbsp;        obj.path = @&quot;C:\GoogleBackup\googleService.txt&quot;;
&amp;nbsp;        obj.download();
&amp;nbsp;    }

&lt;/pre&gt;

&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
&lt;div style=&#39;text-align:center;&#39;&gt;&lt;a href=&#39;https://app.box.com/s/6rdp9wkrxxf8hqcablzwx3xrb9aiyn24&#39; style=&#39;color:#FFOOOO;font-weight:bold;text-align:center;cursor:pointer;&#39;&gt;Download&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;

</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/4251397429820720081/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/08/download-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/4251397429820720081'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/4251397429820720081'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/08/download-files.html' title='Download files'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-5162852177797707764</id><published>2015-08-02T11:11:00.000-07:00</published><updated>2015-08-02T11:11:31.982-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SQL TIPS"/><title type='text'>Search tables and procedures by given text in it</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left; font-size:12px;&quot; trbidi=&quot;on&quot;&gt;
Find all tables and procedures by giving string in it using like operator in SQL

&lt;ol style=&quot;font-size:11px;&quot;&gt;
&lt;li&gt;&lt;b&gt;FOR TABLES&lt;/b&gt;
&lt;pre class=&#39;prettyprint&#39;&gt;
&amp;nbsp;SELECT COLUMN_NAME, TABLE_NAME 
&amp;nbsp;FROM INFORMATION_SCHEMA.COLUMNS 
&amp;nbsp;WHERE COLUMN_NAME LIKE &#39;%searchstring%&#39;
&lt;/pre&gt;
&lt;/li&gt;

&lt;li&gt;&lt;b&gt;FOR PROCEDURES&lt;/b&gt;
&lt;pre class=&#39;prettyprint&#39;&gt;
&amp;nbsp;SELECT OBJECT_NAME(object_id), 
&amp;nbsp;       OBJECT_DEFINITION(object_id)
&amp;nbsp;FROM sys.procedures
&amp;nbsp;WHERE OBJECT_DEFINITION(object_id) LIKE &#39;%SearchString%&#39;
&lt;/pre&gt;
&lt;/li&gt;

&lt;/ol&gt;
&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/5162852177797707764/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/08/search-tables-and-procedures-by-given.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/5162852177797707764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/5162852177797707764'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/08/search-tables-and-procedures-by-given.html' title='Search tables and procedures by given text in it'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-6691079258384011043</id><published>2015-07-31T23:14:00.000-07:00</published><updated>2015-08-01T22:22:36.355-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Asp.net C#"/><title type='text'>Get RAM and CPU usage in C#</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left; font-size:12px;&quot; trbidi=&quot;on&quot;&gt;
Get Cpu and Ram Usage by kernel132.dll in c#

How to get CPU percentage ?
&lt;ol style=&quot;font-size:11px;&quot;&gt;
&lt;li&gt;Step 1: include namespace in class file
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;using System;
&amp;nbsp;using System.Diagnostics;
&amp;nbsp;using System.Runtime.InteropServices;
&amp;nbsp;using System.IO;
&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;Step 2: Declare performance counter and other variables and we just get average of 
cpu 5 times with difference of 5 seconds
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;Public string GetCpuPercentage()
&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;PerformanceCounter cpuCounter;
&amp;nbsp;&amp;nbsp;&amp;nbsp;double cpuUsage = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;int totalCpuUsage = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;double returnLoopCount = 0;

&amp;nbsp;&amp;nbsp;&amp;nbsp;cpuCounter = new PerformanceCounter();
&amp;nbsp;&amp;nbsp;&amp;nbsp;cpuCounter.CategoryName = &quot;Processor&quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;cpuCounter.CounterName = &quot;% Processor Time&quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;cpuCounter.InstanceName = &quot;_Total&quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;for (int i = 0; i &lt; 5; i++)
&amp;nbsp;&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;cpuUsage += cpuCounter.NextValue();
&amp;nbsp;&amp;nbsp;&amp;nbsp;System.Threading.Thread.Sleep(1000);
&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;totalCpuUsage = Convert.ToInt32(Math.Ceiling(cpuUsage / 5));
&amp;nbsp;&amp;nbsp;&amp;nbsp;return totalCpuUsage;
&amp;nbsp;&amp;nbsp;}
&lt;/pre&gt;
&lt;/li&gt;

&lt;li&gt;Step 3:Declare performance counter and other variables and we just get average of RAM memory usage by using &lt;b&gt;&#39;Kernel32.dll&#39;&lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;public string GetRamPercentage()
&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;   PerformanceCounter ramCounter;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        double ramUsage = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        int TotalRamMemory = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        int AvailableRamMemory = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        int UsedRamMemory = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        int RamUsagePercentage = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        double returnLoopCount = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        MEMORYSTATUSEX statEX = new MEMORYSTATUSEX();
&amp;nbsp;&amp;nbsp;&amp;nbsp;        statEX.dwLength = (uint)Marshal.SizeOf(typeof(MEMORYSTATUSEX));
&amp;nbsp;&amp;nbsp;&amp;nbsp;        GlobalMemoryStatusEx(ref statEX);

&amp;nbsp;&amp;nbsp;&amp;nbsp;        double ram = (double)statEX.ullTotalPhys;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        //float ram = (float)stat.TotalPhysical;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        ram /= 1024;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        ram /= 1024;

&amp;nbsp;&amp;nbsp;&amp;nbsp;        TotalRamMemory = Convert.ToInt32(Math.Round(ram, 0));
&amp;nbsp;&amp;nbsp;&amp;nbsp;        ramCounter = new PerformanceCounter(&quot;Memory&quot;, &quot;Available MBytes&quot;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;        for (int i = 0; i &lt; 5; i++)
&amp;nbsp;&amp;nbsp;&amp;nbsp;        {
&amp;nbsp;&amp;nbsp;&amp;nbsp;            ramUsage += ramCounter.NextValue();
&amp;nbsp;&amp;nbsp;&amp;nbsp;            System.Threading.Thread.Sleep(1000);
&amp;nbsp;&amp;nbsp;&amp;nbsp;        }
&amp;nbsp;&amp;nbsp;&amp;nbsp;        AvailableRamMemory = Convert.ToInt32(Math.Round((ramUsage / 5), 0));
&amp;nbsp;&amp;nbsp;&amp;nbsp;        UsedRamMemory = TotalRamMemory - AvailableRamMemory;
&amp;nbsp;&amp;nbsp;&amp;nbsp;        RamUsagePercentage = ((UsedRamMemory * 100) / TotalRamMemory);

&amp;nbsp;&amp;nbsp;&amp;nbsp;return RamUsagePercentage;
        
&amp;nbsp;&amp;nbsp;}

&amp;nbsp;    [return: MarshalAs(UnmanagedType.Bool)]
&amp;nbsp;    [DllImport(&quot;Kernel32.dll&quot;, CharSet = CharSet.Auto, SetLastError = true)]
&amp;nbsp;    internal static extern bool GlobalMemoryStatusEx(ref MEMORYSTATUSEX lpBuffer);

&amp;nbsp;[StructLayout(LayoutKind.Sequential)]
&amp;nbsp;internal struct MEMORYSTATUSEX
&amp;nbsp;&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal uint dwLength;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal uint dwMemoryLoad;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullTotalPhys;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullAvailPhys;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullTotalPageFile;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullAvailPageFile;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullTotalVirtual;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullAvailVirtual;
&amp;nbsp;&amp;nbsp;&amp;nbsp;    internal ulong ullAvailExtendedVirtual;
&amp;nbsp;&amp;nbsp;}

&lt;/pre&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;div style=&#39;text-align:center;&#39;&gt;&lt;a href=&#39;https://app.box.com/s/wisxgbmoezo7kg20mdit7lnmtf4bj7ry&#39; style=&#39;color:#FFOOOO;font-weight:bold;text-align:center;cursor:pointer;&#39;&gt;Download&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/6691079258384011043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/07/get-ram-and-cpu-usage-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6691079258384011043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6691079258384011043'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/07/get-ram-and-cpu-usage-in-c.html' title='Get RAM and CPU usage in C#'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-7143316599645414152</id><published>2015-07-16T11:30:00.001-07:00</published><updated>2015-07-16T11:40:30.963-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SQL TIPS"/><title type='text'>How to create stored procedure  in SQL? </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;font-size:11px;&quot; trbidi=&quot;on&quot;&gt;

&lt;b style=&#39;font-size:12px;&#39;&gt;SQL STORED PROCEDURE : &lt;/b&gt;

&lt;ol style=&#39;font-size:12px;&#39;&gt;
&lt;li&gt;
SQL Procedure are nothing but set of sql statement grouped and perform a specific task.
it will give high performance for database
&lt;/li&gt;
&lt;li&gt;
stored procedure compiled at once it created in database 
Then after it does not require recompilation before executing unless it is modified and reutilizes the same execution plan 
&lt;/li&gt;
&lt;li&gt;
it is usability of SQL code and re-usability purpose of same kind of operation using twice in our source code 
&lt;/li&gt;
&lt;/ol&gt;

&lt;b&gt;How to create stored procedure ? &lt;/b&gt;


&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;&lt;i&gt;SYNTAX:&lt;/i&gt;

&amp;nbsp;CREATE PROCEDURE &amp;#60;PROC NAME&amp;#62;
&amp;nbsp;AS
&amp;nbsp;@param1 &amp;#60;datatype&amp;#62;
&amp;nbsp;BEGIN
&amp;nbsp; //Code of T-SQL
&amp;nbsp;END


EXPLAINATION : 

&amp;nbsp;CREATE PROC &amp;#60;PROC NAME&amp;#62;
&amp;nbsp;AS
&amp;nbsp;@param1 BIGINT  //input param
&amp;nbsp;BEGIN

&amp;nbsp;CREATE TABLE #TEMP (name VARCHAR(50)) // CREATiNG TEMP TABLE
&amp;nbsp;INSERT INTO #TEMP    // bulk insert
&amp;nbsp;SELECT * FROM table1 WHERE salary &gt; @param // get users from table 1 
&amp;nbsp;&amp;nbsp;UNION 
&amp;nbsp;SELECT * FROM table2 WHERE salary &lt; @param  // get users from table 2

&amp;nbsp;SELECT * FROM #TEMP
&amp;nbsp;DROP TABLE #TEMP

&amp;nbsp;END

&lt;/pre&gt;

&lt;/br&gt;

&lt;b&gt;How to alter stored procedure ? &lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;&lt;i&gt;SYNTAX:&lt;/i&gt;

&amp;nbsp;ALTER PROCEDURE &amp;#60;PROC NAME&amp;#62;
&amp;nbsp;AS
&amp;nbsp;@param1 &amp;#60;datatype&amp;#62;
&amp;nbsp;BEGIN
&amp;nbsp; //code of T-SQL
&amp;nbsp;END

EXPLAIN : 
//instead of create we can give alter and we can save changes in sp(STORED PROC)

EXPLAINATION : 

&amp;nbsp;ALTER PROC &amp;#60;PROC NAME&amp;#62;
&amp;nbsp;AS
&amp;nbsp;@param1 BIGINT   //input param
&amp;nbsp;BEGIN

&amp;nbsp;CREATE TABLE #TEMP (name VARCHAR(50)) // CREATiNG TEMP TABLE
&amp;nbsp;INSERT INTO #TEMP    // bulk insert
&amp;nbsp;SELECT * FROM table1 WHERE salary &gt; @param // get users from table 1 
&amp;nbsp;&amp;nbsp;UNION 
&amp;nbsp;SELECT * FROM table2 WHERE salary &lt; @param  // get users from table 2

&amp;nbsp;SELECT * FROM #TEMP ORDER BY name DESC
&amp;nbsp;DROP TABLE #TEMP

&amp;nbsp;END

&lt;/pre&gt;
&lt;/br&gt;

&lt;b&gt;How to execute stored procedure ? &lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;&lt;i&gt;SYNTAX:&lt;/i&gt;
&amp;nbsp;EXECUTE &amp;#60;sp_name&amp;#62; @param = 1000
&amp;nbsp;&amp;nbsp;OR
&amp;nbsp;EXEC &amp;#60;sp_name&amp;#62; 1000
&amp;nbsp;&amp;nbsp;OR 
&amp;nbsp;&amp;#60;sp_name&amp;#62; 1000
&lt;/pre&gt;

&lt;b&gt;Summary : &lt;/b&gt;
Stored procedure is reusing the code,performance of execution plan,reduce the traffic of the network 
sp(STORED PROC) is one of the best way to use in heavy transactions over the network
&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/7143316599645414152/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/07/how-to-create-stored-procedure-in-sql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7143316599645414152'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7143316599645414152'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/07/how-to-create-stored-procedure-in-sql.html' title='How to create stored procedure  in SQL? '/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-8394968583870561687</id><published>2015-07-15T00:20:00.001-07:00</published><updated>2015-07-15T00:25:07.343-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SQL TIPS"/><title type='text'>Bulk insert from one table to another table in SQL</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left; font-size:12px;&quot; trbidi=&quot;on&quot;&gt;
&lt;b&gt;Bulk Insert&lt;/b&gt;
&lt;span&gt;
&lt;ol&gt;
&lt;li&gt;we can use two types of bulk insert in MSSQL&lt;/li&gt;
&lt;li&gt;it is very useful to transfer whole data or particular data from one table to another&lt;/li&gt;
&lt;li&gt;Type 1: we need to create schema or we can use existing schema for insertion&lt;/li&gt;
&lt;li&gt;Type 2: we cannot insert data&#39;s in existing table schema.this type will copy the schema of selected table and create table in database or we can use temp table&lt;/li&gt;
&lt;li&gt;Mostly this bulk insert are used in stored procedure or user-defined functions for calculations.&lt;/li&gt;
&lt;/ol&gt;
&lt;/span&gt;

&lt;b style=&#39;font-size:11px;&#39;&gt;Type 1:&lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot; style=&#39;font-size:11px;&#39;&gt;
&amp;nbsp;CREATE TABLE TABLE1( name INT,EmpSalary BIGINT)
&amp;nbsp;INSERT INTO TABLE1
&amp;nbsp;SELECT name,salary FROM TABLE2
&amp;nbsp;WHERE salary &gt; 1000
&lt;/pre&gt;
&lt;br&gt;

&lt;b style=&#39;font-size:11px;&#39;&gt;Type 2 :&lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot; style=&#39;font-size:11px;&#39;&gt;
&amp;nbsp;SELECT * INTO #TEMP FROM TABLE2 //this will create temp table with selected table schema
&amp;nbsp;WHERE salary &gt; 1000
&amp;nbsp;&amp;nbsp;&amp;nbsp;OR
&amp;nbsp;SELECT * INTO TABLE FROM TABLE2   // this will create real table with selected table schema in DB
&amp;nbsp;WHERE salary &gt; 1000
&lt;/pre&gt;

&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/8394968583870561687/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/07/bulk-insert-from-one-table-to-another.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8394968583870561687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8394968583870561687'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/07/bulk-insert-from-one-table-to-another.html' title='Bulk insert from one table to another table in SQL'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-6306714793712932972</id><published>2015-07-12T09:32:00.000-07:00</published><updated>2015-07-12T09:39:17.155-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="SQL TIPS"/><title type='text'>Bulk Update using join in SQL</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;b&gt;UPDATE WITH JOIN&lt;/b&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;nbsp;UPDATE t1
&amp;nbsp;&amp;nbsp;SET t1.name = t2.empname &amp;nbsp;//copy content from one table to another
&amp;nbsp;FROM table1 t1
&amp;nbsp; &amp;nbsp; INNER JOIN table2 t2 ON
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; t1.id = t2.t1id
&lt;/pre&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/6306714793712932972/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2015/07/update-table-using-join-in-sql.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6306714793712932972'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6306714793712932972'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2015/07/update-table-using-join-in-sql.html' title='Bulk Update using join in SQL'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-6557432904681256675</id><published>2013-07-14T09:15:00.002-07:00</published><updated>2013-07-14T09:15:37.670-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>how to implement Tweet snd linkedin  button for each and every post in Your blog ??</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijl3KiNpj4ywFAzn2tc20RmyS2paQzR_1j71wQ_ReMUSF4c5HIKBWaxu29KQB26V78zywXkNdW2WT82nmtZdfowJ6PYg9qDmqWRf_5ur6bPXwJM_RXf1Xoq9XXS8MD6iEyFv3M0w9Is8jv/s1600/twittbl.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;137&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijl3KiNpj4ywFAzn2tc20RmyS2paQzR_1j71wQ_ReMUSF4c5HIKBWaxu29KQB26V78zywXkNdW2WT82nmtZdfowJ6PYg9qDmqWRf_5ur6bPXwJM_RXf1Xoq9XXS8MD6iEyFv3M0w9Is8jv/s400/twittbl.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;how to implement Tweet snd linkedin share button for each and every post in Your blog ??&lt;/b&gt;&lt;/span&gt;&lt;br style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot; /&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;Some of the Steps we have to follow to complete the above task.&lt;/span&gt;&lt;br style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot; /&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;1.Go to Dashboard-&amp;gt;Template&lt;/span&gt;&lt;br style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot; /&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;2.Click Edit HTML&lt;/span&gt;&lt;br style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot; /&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;3.Search&amp;nbsp;&lt;b&gt;&amp;lt;data:post.body/&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;br style=&quot;background-color: white; color: #7c7c7c; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 15px; line-height: 20px;&quot; /&gt;&lt;span style=&quot;background-color: white; color: #444444; font-family: Verdana, sans-serif; font-size: 15px; line-height: 20px;&quot;&gt;4.Paste the below code&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&amp;lt;!--TWITTER--&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&amp;lt;b:if cond=&#39;data:blog.pageType != &amp;amp;quot;static_page&amp;amp;quot;&#39;&amp;gt; &amp;lt;div style=&#39;text-align:left;padding:5px 5px 5px 0;&#39;&amp;gt; &amp;lt;a class=&#39;twitter-share-button&#39; data-count=&#39;horizontal&#39; data-related=&#39;&#39; data-via=&#39;technoblaze1&#39; expr:data-text=&#39;data:post.title&#39; expr:data-url=&#39;data:post.url&#39; href=&#39;http://twitter.com/share&#39;&amp;gt;Tweet&amp;lt;/a&amp;gt; &amp;lt;script src=&#39;http://platform.twitter.com/widgets.js&#39; type=&#39;text/javascript&#39;/&amp;gt; &amp;lt;/div&amp;gt; &amp;lt;/b:if&amp;gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&amp;lt;p&amp;gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&lt;b&gt;&amp;lt;!--LINKEDIN--&amp;gt;&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&amp;lt;script src=&#39;http://platform.linkedin.com/in.js&#39; type=&#39;text/javascript&#39;/&amp;gt;&amp;nbsp;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;i&gt;&lt;span style=&quot;background-color: white; font-size: 15px; line-height: 20px;&quot;&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&amp;nbsp; &amp;lt;script data-counter=&#39;right&#39; type=&#39;IN/Share&#39;/&amp;gt;&amp;lt;/p&amp;gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;SCREEN SHOTS:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;STEP:1&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtThtjKcfd6445nuQkyldCi25ArrYwUcgmsOqiopWJgAAj17rlXPhrAQ9G1jOKOtnZSjoe5blyz8akU1gNlUzdxJ6nU6CoMMylDkUrpm6GZvvHJpsJRPpD_zu_P9WNBFEZ8p1qiLKB93SQ/s1600/twittblog.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;233&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtThtjKcfd6445nuQkyldCi25ArrYwUcgmsOqiopWJgAAj17rlXPhrAQ9G1jOKOtnZSjoe5blyz8akU1gNlUzdxJ6nU6CoMMylDkUrpm6GZvvHJpsJRPpD_zu_P9WNBFEZ8p1qiLKB93SQ/s400/twittblog.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;STEP:2 &amp;amp; 3&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUCt2GCiCpcmOoWcEMaIkGFIYUJFSiIY-02l44o3bwr9fDVYxP9x10YrZ7gMNxez-E9SpdP2lki-JRTgWRXCHFTMe0nFRujnwooilh73USVnX6XWc0ircJyaHuOKxuXEcp1vzxqM-jr2Ra/s1600/twittblog1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;121&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUCt2GCiCpcmOoWcEMaIkGFIYUJFSiIY-02l44o3bwr9fDVYxP9x10YrZ7gMNxez-E9SpdP2lki-JRTgWRXCHFTMe0nFRujnwooilh73USVnX6XWc0ircJyaHuOKxuXEcp1vzxqM-jr2Ra/s320/twittblog1.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;STEP:4&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi50_2BDnCXxQ3dhEvL_RD0NnFbIW0zWXnlATIH-_bprqzajfQlFQVhWLfBkzvArbEDzssatWN0xriVYM1LsQBDYnkuBkJh5M1G6g11o1Vd6MtkL6IXXqagAH_r7k_ZpKq-MzzNKi45mUw3/s1600/twittblog2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;122&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi50_2BDnCXxQ3dhEvL_RD0NnFbIW0zWXnlATIH-_bprqzajfQlFQVhWLfBkzvArbEDzssatWN0xriVYM1LsQBDYnkuBkJh5M1G6g11o1Vd6MtkL6IXXqagAH_r7k_ZpKq-MzzNKi45mUw3/s320/twittblog2.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;STEP:5&amp;amp;6&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0ZsJunubCNkjTvMeDLBk8z-eoToXv5Cc7yFPZruSeDWU_usa5UUf2dzF1k85kygh9WP268lP4cpN7O_E4BDlsnRTukduCC24WLhd4gqVtiaHfM1LPtNnPS2USXcCYHUs74vs8AHH6REo_/s1600/twittblog3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;146&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0ZsJunubCNkjTvMeDLBk8z-eoToXv5Cc7yFPZruSeDWU_usa5UUf2dzF1k85kygh9WP268lP4cpN7O_E4BDlsnRTukduCC24WLhd4gqVtiaHfM1LPtNnPS2USXcCYHUs74vs8AHH6REo_/s320/twittblog3.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: 15px; line-height: 20px;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/6557432904681256675/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/how-to-implement-tweet-snd-linkedin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6557432904681256675'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6557432904681256675'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/how-to-implement-tweet-snd-linkedin.html' title='how to implement Tweet snd linkedin  button for each and every post in Your blog ??'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEijl3KiNpj4ywFAzn2tc20RmyS2paQzR_1j71wQ_ReMUSF4c5HIKBWaxu29KQB26V78zywXkNdW2WT82nmtZdfowJ6PYg9qDmqWRf_5ur6bPXwJM_RXf1Xoq9XXS8MD6iEyFv3M0w9Is8jv/s72-c/twittbl.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-2573140927687512228</id><published>2013-07-12T10:24:00.001-07:00</published><updated>2013-07-12T10:29:58.674-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>Facebook like button for each post in blogger </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4lByAW94Qq10IE-0VCxlc0llWNgcgdhE_oKt6FlOk2rtrMjKoSKQ8XNHHWRibIXoJ1Ly5hgWTz5KIgEtWtLMAdS0qG8GP3kmZ3Bv0q8gBA9A5wNO-9gOWDIW_si8QdlO91wc55A21P0_l/s1600/fbblogg.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;142&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4lByAW94Qq10IE-0VCxlc0llWNgcgdhE_oKt6FlOk2rtrMjKoSKQ8XNHHWRibIXoJ1Ly5hgWTz5KIgEtWtLMAdS0qG8GP3kmZ3Bv0q8gBA9A5wNO-9gOWDIW_si8QdlO91wc55A21P0_l/s400/fbblogg.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;how to implement Facebook like button for each and every post in Your blog ??&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;Some of the Steps we have to follow to complete the above task.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;1.Go to Dashboard-&amp;gt;Template&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;2.Click Edit HTML&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;3.Search&amp;nbsp;&lt;b&gt;&amp;lt;data:post.body/&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;4.Paste the below code&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;i&gt;&amp;lt;p&amp;gt;&amp;lt;iframe allowTransparency=&#39;true&#39; expr:src=&#39;&amp;amp;quot;http://www.facebook.com/plugins/like.php?href=&amp;amp;quot; + data:post.url + &amp;amp;quot;&amp;amp;amp;layout=button_count&amp;amp;amp;show_faces=false&amp;amp;amp;width=100&amp;amp;amp; action=like&amp;amp;amp;font=arial&amp;amp;amp;colorscheme=light&amp;amp;quot;&#39; frameborder=&#39;0&#39; scrolling=&#39;no&#39; style=&#39;border:none; overflow:hidden; width:100px; height:20px;&#39;/&amp;gt;&amp;lt;/p&amp;gt;&lt;/i&gt;&lt;/span&gt;

&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;5.Click Save template&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;6.View your blog.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Screen shots:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Step:1&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEQFD4gE5e7x5da6GUba-x-GVHM7sO2CcNB0pJLmQ61aOm2ypVLZG0WYSHCLDY8zFdMI1DiH9zeCyPCEJPNq18_kqU5FlHtJ67o-19AJCBDaKZQZIIY3fGpICftWEhL2b6wlKdK7v5kUGD/s1600/fbblog.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;195&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEQFD4gE5e7x5da6GUba-x-GVHM7sO2CcNB0pJLmQ61aOm2ypVLZG0WYSHCLDY8zFdMI1DiH9zeCyPCEJPNq18_kqU5FlHtJ67o-19AJCBDaKZQZIIY3fGpICftWEhL2b6wlKdK7v5kUGD/s400/fbblog.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Step:2 &amp;amp; 3&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBeFKELvSt7twmdo6KT7J_8Q-foXM26x7a2lX6rxtcrWeswOTzSpSwo2514qhJnNpL985MqD06q7aJ7Ocd_j86Gp3lp_ur3C5MQAv9_JKMoFSg5MgEdxQJubNZ5MhxgHeOgm2GCpATyTEc/s1600/fbblog1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;180&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiBeFKELvSt7twmdo6KT7J_8Q-foXM26x7a2lX6rxtcrWeswOTzSpSwo2514qhJnNpL985MqD06q7aJ7Ocd_j86Gp3lp_ur3C5MQAv9_JKMoFSg5MgEdxQJubNZ5MhxgHeOgm2GCpATyTEc/s400/fbblog1.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Step:4&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOz5wY5Z7rm_-9zyPIj_HNBhrpnal2iN-CUcNWcWdQ99yZ_iAGLxx7egC47gLuXZDM-y8iHgB23rttwG6jQYoRjnCJ0ecLK7yQ0Shyphenhypheno7LsH0HpDDo7p5retedi3tKFCUcllvlll48eDVHe/s1600/fbblog2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;186&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjOz5wY5Z7rm_-9zyPIj_HNBhrpnal2iN-CUcNWcWdQ99yZ_iAGLxx7egC47gLuXZDM-y8iHgB23rttwG6jQYoRjnCJ0ecLK7yQ0Shyphenhypheno7LsH0HpDDo7p5retedi3tKFCUcllvlll48eDVHe/s400/fbblog2.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Step: 5 &amp;amp; 6&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj486d5z6vWoA50aqlLRIKRL_Wj041PlAi_CcAEAf3IaiWa1dd3AdARJMsom9Qell3bM-vP1xhvZKgDABfpraQIvAeLdiBf6TXkNZe1VKH9l5oKl0RKxHKyX3VvMZ8FYBn3SFnEqsxFFBg/s1600/fbblog3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;165&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj486d5z6vWoA50aqlLRIKRL_Wj041PlAi_CcAEAf3IaiWa1dd3AdARJMsom9Qell3bM-vP1xhvZKgDABfpraQIvAeLdiBf6TXkNZe1VKH9l5oKl0RKxHKyX3VvMZ8FYBn3SFnEqsxFFBg/s400/fbblog3.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/2573140927687512228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/facebook-like-button-for-each-post-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2573140927687512228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2573140927687512228'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/facebook-like-button-for-each-post-in.html' title='Facebook like button for each post in blogger '/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi4lByAW94Qq10IE-0VCxlc0llWNgcgdhE_oKt6FlOk2rtrMjKoSKQ8XNHHWRibIXoJ1Ly5hgWTz5KIgEtWtLMAdS0qG8GP3kmZ3Bv0q8gBA9A5wNO-9gOWDIW_si8QdlO91wc55A21P0_l/s72-c/fbblogg.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-6819300158332984724</id><published>2013-07-10T06:18:00.000-07:00</published><updated>2013-07-10T06:18:30.172-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Facebook like and unlike system using [php-mysql-ajax] and facebook wall post system with time calculation system for each post and display it in users wall</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqqY62-1OgnH0URSudAWcdMmHiHVzyeno9iimYQkcKN4L6pOur_FTR9AAIRPMWMODmFNlxk99Gw8RiKwD1WlORn5NjCtAgO4HmgUYkqPAfV6ki7HnmbrACHevz1DRMQjhyJJPbb8b9xaIv/s1600/fb.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;142&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqqY62-1OgnH0URSudAWcdMmHiHVzyeno9iimYQkcKN4L6pOur_FTR9AAIRPMWMODmFNlxk99Gw8RiKwD1WlORn5NjCtAgO4HmgUYkqPAfV6ki7HnmbrACHevz1DRMQjhyJJPbb8b9xaIv/s400/fb.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;We have to make Facebook wall system,Face book like system and Facebook time management system &amp;nbsp;for each and every post&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-In my previous post Facebook wall system will be implemented&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-In this Post contains facebook like system and facebook time management system along with wall post system &amp;nbsp;will be implemented&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-in this section i have created separate login system for every users&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-users can login and post their words in their wall&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-others users will like or unlike the post using their user-id&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-face book time management means, users posts display the time when they &amp;nbsp; posted and how many hours,minutes or seconds ago they posted their words or quotes and all&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;- this are the task we have to done&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-there are several steps to complete our task&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Create database and following tables&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-there are 3 Table contains in database&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 1.Login&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 2.Messages&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 3.message_like&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;1.Login table :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;CREATE TABLE IF NOT EXISTS `login` (&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; `uid` int(11) NOT NULL AUTO_INCREMENT,&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; `name` varchar(250) NOT NULL,&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; `password` varchar(250) NOT NULL,&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; PRIMARY KEY (`uid`)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d; font-family: Verdana, sans-serif;&quot;&gt;) ENGINE=InnoDB &amp;nbsp;DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;2.Message table:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;CREATE TABLE IF NOT EXISTS `messages` (&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `msg_id` int(11) NOT NULL AUTO_INCREMENT,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `message` varchar(200) NOT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `uid_fk` int(11) NOT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `like_count` int(11) DEFAULT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `created` varchar(250) DEFAULT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; PRIMARY KEY (`msg_id`),&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; KEY `uid_fk` (`uid_fk`)&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;) ENGINE=InnoDB &amp;nbsp;DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: #444444;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: #444444;&quot;&gt;
&lt;b&gt;3.message_like table :&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;color: #444444;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;CREATE TABLE IF NOT EXISTS `message_like` (&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `like_id` int(11) NOT NULL AUTO_INCREMENT,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `msg_id_fk` int(11) DEFAULT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `uid_fk` int(11) NOT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; `created` varchar(250) NOT NULL,&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; PRIMARY KEY (`like_id`),&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; KEY `uid_fk` (`uid_fk`),&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&amp;nbsp; KEY `msg_id_fk` (`msg_id_fk`)&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;) ENGINE=InnoDB &amp;nbsp;DEFAULT CHARSET=latin1 AUTO_INCREMENT=59 ;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #073763;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;-Download the file and configure your hostname,username and password&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;-Live demo is available,check it&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;- if any queries regarding, post your commands&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;color: #444444;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;color: #444444;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;div style=&quot;padding-left: 150px;&quot;&gt;
&lt;a href=&quot;http://technoblazze.x10.mx/fb-command/&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;100&quot; src=&quot;http://technoblazze.x10.mx/fb-command/livedemo.png&quot; title=&quot;livedemo&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;https://www.box.com/s/nb0d6bh590eselaxioa4&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;100&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; title=&quot;download&quot; width=&quot;100&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;Screen Shots:&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbIBb_ObTETZ8GZ9QP2kXJhETb6WtCPEZFLxc4x6cd85GeHcJ9Drt6DzCiadd-CGs1PdMpfyLntoy1OjIOsa-SaoCwAN9tEFLWipqzNkKs9ymqAT0AjKK8dixUx-sW-HGTORDtl60Gjd2x/s1600/fbwall.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbIBb_ObTETZ8GZ9QP2kXJhETb6WtCPEZFLxc4x6cd85GeHcJ9Drt6DzCiadd-CGs1PdMpfyLntoy1OjIOsa-SaoCwAN9tEFLWipqzNkKs9ymqAT0AjKK8dixUx-sW-HGTORDtl60Gjd2x/s400/fbwall.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZ-GEG__dCg6Q_G717rzd3LZAVl-UFjbMqsNoxk_T-fCpoESmcyTJzoK4emISFmbReYFB3TOyn5G_XJF8Qk2dI3qO1h_KdLwtxlIvWSRmpJbPlFZOe37f9hOqelyj7t84jeB_94XdV9ht7/s1600/fbwall1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;327&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZ-GEG__dCg6Q_G717rzd3LZAVl-UFjbMqsNoxk_T-fCpoESmcyTJzoK4emISFmbReYFB3TOyn5G_XJF8Qk2dI3qO1h_KdLwtxlIvWSRmpJbPlFZOe37f9hOqelyj7t84jeB_94XdV9ht7/s400/fbwall1.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoFSkYgQkd3KU0-QruNNKzDtfMMLSsutEhSvUjKiOvNE9vUsOvRjUDqx6ZmurdsfS6kC6K1nakDhPIajY7nFiKPW5SA7x2VYf9x688ZuLpt1sk85lSBJrYNapNhybxjKqAoAYtmCzf1ZZv/s1600/fbwall2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;391&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjoFSkYgQkd3KU0-QruNNKzDtfMMLSsutEhSvUjKiOvNE9vUsOvRjUDqx6ZmurdsfS6kC6K1nakDhPIajY7nFiKPW5SA7x2VYf9x688ZuLpt1sk85lSBJrYNapNhybxjKqAoAYtmCzf1ZZv/s400/fbwall2.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1TQAckTknEtPWUk6sE6I-ib7NcBC4VewhkTJxQamwC5GGyvO6rsa8w6mwzMxTDIJOo8dFzpzK18v4HZhrWbI_KXotcJTb4uzRD8GTKJrADzF-F-7hfoj1mmp5auY-HM6EORY0WsR-MDis/s1600/fbwall3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1TQAckTknEtPWUk6sE6I-ib7NcBC4VewhkTJxQamwC5GGyvO6rsa8w6mwzMxTDIJOo8dFzpzK18v4HZhrWbI_KXotcJTb4uzRD8GTKJrADzF-F-7hfoj1mmp5auY-HM6EORY0WsR-MDis/s400/fbwall3.png&quot; width=&quot;376&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHgqvBm_VZzbDEk91yj4LZMLyia7FOFZDYTEBF_0wkPPG6dCSaDIG_tDTG_CQ04JpKZnM5Iv6Ov5S-HXRTETssL6Q001xO7LSGbzch7J7NIS74K8yN7p4Kw466YjXmh9LNm8hXI2abICO5/s1600/fbwall4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;393&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjHgqvBm_VZzbDEk91yj4LZMLyia7FOFZDYTEBF_0wkPPG6dCSaDIG_tDTG_CQ04JpKZnM5Iv6Ov5S-HXRTETssL6Q001xO7LSGbzch7J7NIS74K8yN7p4Kw466YjXmh9LNm8hXI2abICO5/s400/fbwall4.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCeY73-4PuyatTaJM7rkwk-wopH10A-8b1fE86LGKc6I1lFQwrkrHGGPeSEK0laitlXSG0hPCsZPdd8aDFmq17uLAXqg6NEMsL746wpPWAc2W5sSCUWjLh3T5iMab44iIchgQ2Hh6z-X7c/s1600/fbwall5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;393&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCeY73-4PuyatTaJM7rkwk-wopH10A-8b1fE86LGKc6I1lFQwrkrHGGPeSEK0laitlXSG0hPCsZPdd8aDFmq17uLAXqg6NEMsL746wpPWAc2W5sSCUWjLh3T5iMab44iIchgQ2Hh6z-X7c/s400/fbwall5.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/6819300158332984724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/facebook-like-and-unlike-system-using_10.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6819300158332984724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6819300158332984724'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/facebook-like-and-unlike-system-using_10.html' title='Facebook like and unlike system using [php-mysql-ajax] and facebook wall post system with time calculation system for each post and display it in users wall'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqqY62-1OgnH0URSudAWcdMmHiHVzyeno9iimYQkcKN4L6pOur_FTR9AAIRPMWMODmFNlxk99Gw8RiKwD1WlORn5NjCtAgO4HmgUYkqPAfV6ki7HnmbrACHevz1DRMQjhyJJPbb8b9xaIv/s72-c/fb.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-3682102107279469043</id><published>2013-07-06T23:34:00.002-07:00</published><updated>2013-07-06T23:41:28.342-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>A simple hotel booking software using [php-mysql-ajax]</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP5eqb7Af3Pl5R_zkxUbI1bIKc5_Gmu7bbkNb2PLcR8tfjMya7wIHBDpAx5wZYXE9obt3o65obDdNtZPVliVG6XdKc5nrhOfRNBB-5YPtzDbDuUzNT4fv1DLZFLqbJZFTSsOjgTg1eK7fg/s1600/alberghi.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP5eqb7Af3Pl5R_zkxUbI1bIKc5_Gmu7bbkNb2PLcR8tfjMya7wIHBDpAx5wZYXE9obt3o65obDdNtZPVliVG6XdKc5nrhOfRNBB-5YPtzDbDuUzNT4fv1DLZFLqbJZFTSsOjgTg1eK7fg/s1600/alberghi.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;We have to create simple hotel booking software using php,mysql&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-there are several process to done the above task .&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-first of all create the database for hotel booking system&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-database contains 4 tables&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;1.booking&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;2.Customer&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3.invoice&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;4.room&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-booking table contains (id,arraival,checkout,room,customerid,cotrequire,satelliterequire,gamrequire,service)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-customer table contains(id,firstname,lastname,email,address,city,state,pincode,phone)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-invoice table contains(id,cusmail,chkout,roomno,roomtype,price,total etc..)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-room table contains (id,roomnum,type,price ,etc..)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-download this software&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-install wamp software&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-import database from download file in phpmyadmin&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-configure and run it ..&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;screen shots:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7nZupFMa2DRJ9xvMhhTzItmbkys60HXFxCUBJxlwT7mN4Xku_YlyxRgUTxCxP5TNocssvSVE4ewNT0u9WkbzsTk0B84gclrM4GYOH_A2EFocGOtCnMVEeyjFKT0IM0ePkwXDGOs65aZHU/s1600/hotel.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;168&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg7nZupFMa2DRJ9xvMhhTzItmbkys60HXFxCUBJxlwT7mN4Xku_YlyxRgUTxCxP5TNocssvSVE4ewNT0u9WkbzsTk0B84gclrM4GYOH_A2EFocGOtCnMVEeyjFKT0IM0ePkwXDGOs65aZHU/s400/hotel.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKojeAU0zSwM830xDpzaeNvXiPobc7yni2bhn_SLVN28gKW66Hi3FyJUB70l2XlceW9JNLjMJTzRIghl6oUOVMFDZ2ymEc0BRLToe6yYZS3ODeVGVRbcYOk-9ij4QK-jlRjgRbAZsYwCxn/s1600/hotel1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;186&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhKojeAU0zSwM830xDpzaeNvXiPobc7yni2bhn_SLVN28gKW66Hi3FyJUB70l2XlceW9JNLjMJTzRIghl6oUOVMFDZ2ymEc0BRLToe6yYZS3ODeVGVRbcYOk-9ij4QK-jlRjgRbAZsYwCxn/s400/hotel1.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_BaeiMmopVByRPcHvwij7BpFpRt3K0GlbunKHW6NwkiilC9I0ACIX_UWeLGCjzAno43EHhzv6M6jE3Q4o2pI00iy_T1ACKsiuBpgPpwrP5_xhVVQ4M_9cMUhghH638tUB4jckDZVdxHtR/s1600/hotel3.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;247&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_BaeiMmopVByRPcHvwij7BpFpRt3K0GlbunKHW6NwkiilC9I0ACIX_UWeLGCjzAno43EHhzv6M6jE3Q4o2pI00iy_T1ACKsiuBpgPpwrP5_xhVVQ4M_9cMUhghH638tUB4jckDZVdxHtR/s400/hotel3.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgETkQ2XjNV8PYujj9nVctqod7LW70dRZGq6PZgkTNITAoJp8ve0gjI4ZEximoWoH5yzeAGKjW-2UeXnvTVocJ1gPsERCQYMAUiPqm4z2VhhHBiOEJ7M1SvArZzzgrGQuHa1BvjPvN6Z_v3/s1600/hotel4.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;303&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgETkQ2XjNV8PYujj9nVctqod7LW70dRZGq6PZgkTNITAoJp8ve0gjI4ZEximoWoH5yzeAGKjW-2UeXnvTVocJ1gPsERCQYMAUiPqm4z2VhhHBiOEJ7M1SvArZzzgrGQuHa1BvjPvN6Z_v3/s400/hotel4.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmp1wfFElSVCTVIfA_GmCX5mU5jghT6vJMFT5CpcynoS31fQGLEdFOKDirf3nJ8343q1hrYMmCDx-bLqur4HdPzTtmm4N2-p7FgyiiU-ESyDoJzEgQLo6yEvobxWKYPuyM16lc-IH9nFyX/s1600/hotel5.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;243&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmp1wfFElSVCTVIfA_GmCX5mU5jghT6vJMFT5CpcynoS31fQGLEdFOKDirf3nJ8343q1hrYMmCDx-bLqur4HdPzTtmm4N2-p7FgyiiU-ESyDoJzEgQLo6yEvobxWKYPuyM16lc-IH9nFyX/s400/hotel5.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6oDhOB7SnX_fWsJQMZ1lOfd9vMMfMVNn7E4tKNG2obZP3qHetokGGC4KJSE4fZ8U9LZAsBje95SSGqQ2rpbk4DmXrlKmX7Hbbk53eGK7hrtS4AMXiVh-OgSEiuDVZHDMr2xnNBtD-6q9t/s1600/hotel6.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;123&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg6oDhOB7SnX_fWsJQMZ1lOfd9vMMfMVNn7E4tKNG2obZP3qHetokGGC4KJSE4fZ8U9LZAsBje95SSGqQ2rpbk4DmXrlKmX7Hbbk53eGK7hrtS4AMXiVh-OgSEiuDVZHDMr2xnNBtD-6q9t/s400/hotel6.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/wnbsnxcnwva3ze71rhai&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;a href=&quot;https://www.box.com/s/p95cbl6oltvt2sspja0q&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTE8v1tnlMBzxY1aBzhgNsbqQJKDukh3y-rqKjz4ObMW_twYnGzmg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/3682102107279469043/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/a-simple-hotel-booking-software-using.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3682102107279469043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3682102107279469043'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/a-simple-hotel-booking-software-using.html' title='A simple hotel booking software using [php-mysql-ajax]'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhP5eqb7Af3Pl5R_zkxUbI1bIKc5_Gmu7bbkNb2PLcR8tfjMya7wIHBDpAx5wZYXE9obt3o65obDdNtZPVliVG6XdKc5nrhOfRNBB-5YPtzDbDuUzNT4fv1DLZFLqbJZFTSsOjgTg1eK7fg/s72-c/alberghi.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-2748331925092159730</id><published>2013-07-05T23:37:00.000-07:00</published><updated>2013-07-05T23:54:29.137-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Dynamic Chat Design for android and ios</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl1vGHcv67cGGkUSm5_V63A99LrzBoiisjNfH-PF-2FbXm_61JI5T8m1iPNkH4Y_qYpyDWu0Ljph7y5omIKFpjOm7op6iu0pOgeACo3KSWjocMBOW12YJGXv_znH-Gf35d7-B7rJhGHDYJ/s1600/chat-icon.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl1vGHcv67cGGkUSm5_V63A99LrzBoiisjNfH-PF-2FbXm_61JI5T8m1iPNkH4Y_qYpyDWu0Ljph7y5omIKFpjOm7op6iu0pOgeACo3KSWjocMBOW12YJGXv_znH-Gf35d7-B7rJhGHDYJ/s1600/chat-icon.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;Description:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Dynamic chat ui ll be created for android and ios mobiles.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Dynamic chat ui created by using HTML5 and CSS3 technologies.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-It is very easy to integrate it.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Systematic&amp;nbsp;Explain will be done .&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Just download and use it.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-Download file contains[chat.html,chatcs.css,battery.png,signal.png,wifi.png]&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;-If any queries please post your commands &amp;nbsp;!.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;Output will be :&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3ay2oWFBMId_yYTjkJ8PakrVnma-bQN4BiHLfifnHL-TxjqPyA9ZsyFo7M31RvZYWsE65syqrDUMkvyRQfv7GzXKfG0u1gsX7q8H3GTRb9ZFDaaX9XFbla-T3PbqTQ_i3jggmvlirgQby/s1600/chat.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;400&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi3ay2oWFBMId_yYTjkJ8PakrVnma-bQN4BiHLfifnHL-TxjqPyA9ZsyFo7M31RvZYWsE65syqrDUMkvyRQfv7GzXKfG0u1gsX7q8H3GTRb9ZFDaaX9XFbla-T3PbqTQ_i3jggmvlirgQby/s400/chat.png&quot; width=&quot;250&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/yflrygb88xk0u571j23c&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/2748331925092159730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/dynamic-chat-design-for-android-and-ios.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2748331925092159730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2748331925092159730'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/dynamic-chat-design-for-android-and-ios.html' title='Dynamic Chat Design for android and ios'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgl1vGHcv67cGGkUSm5_V63A99LrzBoiisjNfH-PF-2FbXm_61JI5T8m1iPNkH4Y_qYpyDWu0Ljph7y5omIKFpjOm7op6iu0pOgeACo3KSWjocMBOW12YJGXv_znH-Gf35d7-B7rJhGHDYJ/s72-c/chat-icon.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-3895331426024716852</id><published>2013-07-04T00:39:00.001-07:00</published><updated>2013-07-04T01:03:55.678-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="jQuery"/><title type='text'>Dynamic Theme or background change using Colour picker</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKTcJQMAEWkaoWTwHLkEp69WTzunnfW11wpWTHA85iWJxWEL3R6tk9MlHtqOM3YVYunHu4hyphenhyphenY-snIueLdP65D9eF3Bgv-e5xZX1MR8XsLzC1DVsGdoqGUWdIALxQS1yyVuffalpolO7cu1/s300/Colour_picker_image.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKTcJQMAEWkaoWTwHLkEp69WTzunnfW11wpWTHA85iWJxWEL3R6tk9MlHtqOM3YVYunHu4hyphenhyphenY-snIueLdP65D9eF3Bgv-e5xZX1MR8XsLzC1DVsGdoqGUWdIALxQS1yyVuffalpolO7cu1/s300/Colour_picker_image.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;We can dynamically change the particular div background colour using javascript colour picker&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;we have to follow 4 steps to done above task&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;step 1 :include jscolor picker file in ur file&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;step 2 :create a text box and define a class color&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;step 3 :create javascript function for change the div background colour according to the selection by using js cookie&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;step 4 :call the Js-function in text box onblur event&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;picker.html&lt;/span&gt;
&lt;span style=&quot;color: #444444; font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;html&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;head&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;title&amp;gt;colour picker demo&amp;lt;/title&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;script&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;function pick() &amp;nbsp; &amp;nbsp;//------------------------------------------&amp;gt;step 3&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;{&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;var elem = document.getElementById(&quot;para1&quot;).value;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;var cook=document.cookie=&quot;#&quot;+elem;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;var colour=document.getElementById(&quot;change&quot;);&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;colour.style.background=cook;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;}&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;body&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;div style=&quot;height:100px; width:400px;&quot; id=&quot;change&quot;&amp;gt;&amp;nbsp;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;!--colour change--&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;jscolor.js&quot;&amp;gt;&amp;lt;/script&amp;gt; //-&amp;gt;step1&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;nbsp;Click here: &amp;lt;input class=&quot;color&quot; value=&quot;&quot; onblur=&quot;pick()&quot; id=&quot;para1&quot;&amp;gt;//-&amp;gt;step2&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;//---------------------------------------------------- &amp;gt;step 4&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;/body&amp;gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&amp;lt;/html&amp;gt;&lt;/span&gt;&lt;/pre&gt;
&lt;div&gt;&lt;/br&gt;
&lt;span style=&quot;color: #444444;&quot;&gt;&lt;b&gt;Video preview:
&lt;/b&gt;&lt;/span&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;//www.youtube.com/embed/mJuE-o5quOY&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/56neh7fzkczv3256cr7u&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/3895331426024716852/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/dynamic-theme-or-background-change.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3895331426024716852'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3895331426024716852'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/dynamic-theme-or-background-change.html' title='Dynamic Theme or background change using Colour picker'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgKTcJQMAEWkaoWTwHLkEp69WTzunnfW11wpWTHA85iWJxWEL3R6tk9MlHtqOM3YVYunHu4hyphenhyphenY-snIueLdP65D9eF3Bgv-e5xZX1MR8XsLzC1DVsGdoqGUWdIALxQS1yyVuffalpolO7cu1/s72-c/Colour_picker_image.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-7683241821211528931</id><published>2013-07-02T23:32:00.001-07:00</published><updated>2013-07-02T23:47:21.628-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>cURL-tutorial startup</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSdkSQEllKklTdEF3bqKkBIYk8UsZCg7WzaPkCCMsUoJ_ir0GYkiupfRJEJx1Fwmanyw2N7w2Hvi-8ALDihEzXRDMssXKDDi_OEzzK35xkbz8KcA7cs25F6JC2VgJmW81BTDyFuZPZhSZy/s230/php-curl-primenenie.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSdkSQEllKklTdEF3bqKkBIYk8UsZCg7WzaPkCCMsUoJ_ir0GYkiupfRJEJx1Fwmanyw2N7w2Hvi-8ALDihEzXRDMssXKDDi_OEzzK35xkbz8KcA7cs25F6JC2VgJmW81BTDyFuZPZhSZy/s230/php-curl-primenenie.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;pre class=&quot;prettyprint linenums&quot;&gt;&lt;b&gt;cURL:&lt;/b&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1.cURL is a Command line tool for getting and sending datas through URL&amp;nbsp;&lt;/span&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;
&lt;/pre&gt;
&lt;pre class=&quot;prettyprint linenums&quot;&gt;Now we can display the Google webpage with search key word &quot;technoblazze&quot; in your server by using cURL
We have to Follow 4 steps to do the above task
1.initialize the curl session
2.set various option for the session
3.Execute the option, fetch and display the datas in your server
4.close the curl session
&lt;/pre&gt;
&lt;b&gt;curl.php&lt;/b&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint linenums&quot;&gt;&amp;lt;?php 
$curl = curl_init(&#39;http://www.google.com/search?q=technoblazze.blog&#39;); //step1
curl_setopt($curl, CURLOPT_FAILONERROR, true);    //step2
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); 
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); 
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);   
$result = curl_exec($curl);                       //step3
curl_close($curl);                                //step4
echo $result;
?&amp;gt;&lt;/pre&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/zo8ufud57b9jvkmpdmy9&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/7683241821211528931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/curl-tutorial-startup.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7683241821211528931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7683241821211528931'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/curl-tutorial-startup.html' title='cURL-tutorial startup'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSdkSQEllKklTdEF3bqKkBIYk8UsZCg7WzaPkCCMsUoJ_ir0GYkiupfRJEJx1Fwmanyw2N7w2Hvi-8ALDihEzXRDMssXKDDi_OEzzK35xkbz8KcA7cs25F6JC2VgJmW81BTDyFuZPZhSZy/s72-c/php-curl-primenenie.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-1664397811049498909</id><published>2013-07-01T04:20:00.001-07:00</published><updated>2013-07-01T04:20:39.251-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="XML"/><title type='text'>Start with XML -  fetch and display the xml datas using php</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4TM7G85AJjMeBBvK23VfDteZABZqIow027BzdiO8h0mVzYMXTJ1iCBGkRo6cfdPHWWBorrNmmf3fgTZZrMZvX7A2j8UVaPR8XYG7YPriGRl6aht3H10wumlSnqEv0iZvJd2ZyqXUwDLIg/s300/php-and-xml.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4TM7G85AJjMeBBvK23VfDteZABZqIow027BzdiO8h0mVzYMXTJ1iCBGkRo6cfdPHWWBorrNmmf3fgTZZrMZvX7A2j8UVaPR8XYG7YPriGRl6aht3H10wumlSnqEv0iZvJd2ZyqXUwDLIg/s300/php-and-xml.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&lt;b&gt;books.xml : &amp;nbsp;&amp;nbsp;&lt;/b&gt;
&amp;lt;?xml version=&quot;1.0&quot;?&amp;gt;
&amp;lt;datas&amp;gt;
&amp;nbsp; &amp;lt;books&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;book&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;1&amp;lt;/id&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;PHP Undercover&amp;lt;/title&amp;gt; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;author&amp;gt;Arun&amp;lt;/author&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/book&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;book&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;2&amp;lt;/id&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;title&amp;gt;PHP Enterprise&amp;lt;/title&amp;gt; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;author&amp;gt;Vibin&amp;lt;/author&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/book&amp;gt;
&amp;nbsp; &amp;lt;/books&amp;gt;
&amp;lt;/datas&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&lt;b&gt;xmlread.php :&lt;/b&gt;
&amp;lt;?php&lt;br /&gt;
$xml = simplexml_load_file(&quot;books.xml&quot;)
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;or die(&quot;Error: Cannot create object&quot;);&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//include the books.xml file
foreach($xml as $books) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // seperate variables, books array from xml file
{
&lt;span class=&quot;Apple-tab-span&quot;&gt; &lt;/span&gt;foreach($books as $book ) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;nbsp;seperate variables, book array from books file
&amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt; &amp;nbsp;echo $book-&amp;gt;id; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//display the id
&lt;span class=&quot;Apple-tab-span&quot; &gt; &lt;/span&gt; &amp;nbsp;echo &quot;&amp;lt;br /&amp;gt;&quot;;
&lt;span class=&quot;Apple-tab-span&quot; &gt; &lt;/span&gt; &amp;nbsp;echo $book-&amp;gt;title; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;//display the title
&lt;span class=&quot;Apple-tab-span&quot; &gt; &lt;/span&gt; &amp;nbsp;echo &quot;&amp;lt;br /&amp;gt;&quot;;
&lt;span class=&quot;Apple-tab-span&quot; &gt; &lt;/span&gt; &amp;nbsp;echo $book-&amp;gt;author; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//display the author
&lt;span class=&quot;Apple-tab-span&quot; &gt; &lt;/span&gt; &amp;nbsp;echo &quot;&amp;lt;br /&amp;gt;&quot;;
&lt;span class=&quot;Apple-tab-span&quot;&gt; &lt;/span&gt;}&lt;br /&gt;
}
?&amp;gt;
&lt;/pre&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
Output:
1
PHP Undercover
Arun
2
PHP Enterprise
Vibin
&lt;/pre&gt;&lt;br /&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/yjrlj8s927iqjlxsk9xx&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/1664397811049498909/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/start-with-xml-fetch-and-display-xml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/1664397811049498909'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/1664397811049498909'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/start-with-xml-fetch-and-display-xml.html' title='Start with XML -  fetch and display the xml datas using php'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg4TM7G85AJjMeBBvK23VfDteZABZqIow027BzdiO8h0mVzYMXTJ1iCBGkRo6cfdPHWWBorrNmmf3fgTZZrMZvX7A2j8UVaPR8XYG7YPriGRl6aht3H10wumlSnqEv0iZvJd2ZyqXUwDLIg/s72-c/php-and-xml.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-6956125435666514191</id><published>2013-07-01T01:02:00.001-07:00</published><updated>2013-07-01T01:52:05.158-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>Cloud Computing</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU-9WNzZOn30QyF06gyWvHVgcI8-FC9WIAbPWCUP5FNJmdHK11EEBuROAbIi536qwemvt_cIKCh6ti6aMt69thXFfzjUuqg5dadlnm1e9If7Zo-WFvghekfbW3hr5vT2AcSIQggXlfMNVM/s662/cloudComputing.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;289&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU-9WNzZOn30QyF06gyWvHVgcI8-FC9WIAbPWCUP5FNJmdHK11EEBuROAbIi536qwemvt_cIKCh6ti6aMt69thXFfzjUuqg5dadlnm1e9If7Zo-WFvghekfbW3hr5vT2AcSIQggXlfMNVM/s320/cloudComputing.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b style=&quot;background-color: white; font-family: sans-serif; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&lt;br /&gt;&lt;/b&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;Cloud computing&lt;/span&gt;&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;is a colloquial expression used to describe a variety of different&amp;nbsp;&lt;/span&gt;computing&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;concepts that involve a large number of computers that are connected through a real-time communication&amp;nbsp;&lt;/span&gt;network&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;(typically the&amp;nbsp;&lt;/span&gt;Internet&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;).&lt;/span&gt;&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;Cloud computing is a&amp;nbsp;&lt;/span&gt;jargon term&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;without a commonly accepted non-ambiguous scientific or technical definition. In science, cloud computing is a synonym for&amp;nbsp;&lt;/span&gt;distributed computing&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;over a network and means the ability to run a program on many connected computers at the same time. The popularity of the term can be attributed to its use in marketing to sell hosted services in the sense of&amp;nbsp;&lt;/span&gt;application service provisioning&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;that run&amp;nbsp;&lt;/span&gt;client server&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&amp;nbsp;software on a remote location.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;background-color: white; font-size: 13px; line-height: 19.200000762939453px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;background-color: white; line-height: 19.200000762939453px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;Advantages:&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;&lt;b&gt;We can use and access the cloud from any where through internet.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;&lt;b&gt;Reduce the Storage capacity in your harddrive.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;b&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;Cloud Storage Services :&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;Cloud storage services offer paid monthly subscriptions either for unlimited storage or for hundreds of gigabytes of data. Most of us do not have that much critical data to backup and therefore it would be a total waste of money. And for those of us who have data which cannot be stored using the 1 or 2GB free space offered, we have a list of four of the best free online storage services that offer free space of more than 10GB.&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;Best Sites for Cloud Computing :&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;b&gt;1.Google Drive:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: blue;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;b&gt; &lt;/b&gt;Link :&lt;span style=&quot;color: blue;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;https://drive.google.com/%E2%80%8E%C2%A0&quot; style=&quot;color: blue;&quot;&gt;&lt;cite style=&quot;background-color: white; color: blue; display: inline-block; font-family: arial, sans-serif; font-size: 14px !important; font-style: normal; margin-bottom: 1px; white-space: nowrap;&quot;&gt;https://&lt;b&gt;drive&lt;/b&gt;.&lt;b&gt;google&lt;/b&gt;.com/&lt;/cite&gt;&lt;span style=&quot;background-color: white; color: blue; font-family: arial, sans-serif; font-size: x-small; line-height: 15px; white-space: nowrap;&quot;&gt;‎&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&amp;nbsp; &lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiphMHQoOGB-fxfC4zrTX_C3iqtM_WFRp7Ufmywauir4TPUhJJ61FT4K4Fcb6G60qjP14niQARouXsI3VuE0_tXzZDkfjc1hGa3vCow_xO4dw7byV8UdeOIP-1GtX-yF013FqPJ_dr2HegO/s1360/gd.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiphMHQoOGB-fxfC4zrTX_C3iqtM_WFRp7Ufmywauir4TPUhJJ61FT4K4Fcb6G60qjP14niQARouXsI3VuE0_tXzZDkfjc1hGa3vCow_xO4dw7byV8UdeOIP-1GtX-yF013FqPJ_dr2HegO/s400/gd.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;span style=&quot;background-color: white; font-size: 14px; line-height: 20px;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;&lt;b&gt;2.DROP BOX&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: sans-serif; font-size: x-small;&quot;&gt;&lt;span style=&quot;line-height: 19.200000762939453px;&quot;&gt;Link:&lt;/span&gt;&lt;/span&gt;&lt;a href=&quot;https://www.dropbox.com/&quot;&gt;https://www.dropbox.com/&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqE6gYwoaax9mfYjvb12O0tHn4HAGMR-v38e6TtA9bwj0warqJ6Jb1iLVBae8ETh0e42xHZn472vBj5Y4OvWNDRSPh0_zPfh6zDj92JVBPFnIYIii-0XBTmBalS6N5yagV1MrWZHb58DjB/s1501/Dropbox1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;217&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqE6gYwoaax9mfYjvb12O0tHn4HAGMR-v38e6TtA9bwj0warqJ6Jb1iLVBae8ETh0e42xHZn472vBj5Y4OvWNDRSPh0_zPfh6zDj92JVBPFnIYIii-0XBTmBalS6N5yagV1MrWZHb58DjB/s400/Dropbox1.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;3:BOX&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Link:&amp;nbsp;&lt;a href=&quot;https://www.box.com/&quot;&gt;https://www.box.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYYDv_8xA8EIFTp7Fw0mo2zwZmSa-aq8j2cwKbrrjjERhJuaGW8xBb3snyFIbsHMMWxqdhNuSsdRRRHxo92RuyR8siaDvf8op2ojDPekG9bueMn853KGmDlyt9DQ-YUd6sth-N38k5y4Mi/s1016/74101v1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;298&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYYDv_8xA8EIFTp7Fw0mo2zwZmSa-aq8j2cwKbrrjjERhJuaGW8xBb3snyFIbsHMMWxqdhNuSsdRRRHxo92RuyR8siaDvf8op2ojDPekG9bueMn853KGmDlyt9DQ-YUd6sth-N38k5y4Mi/s400/74101v1.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;4:SKYDRIVE&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
Link:&amp;nbsp;&lt;a href=&quot;https://skydrive.live.com/%E2%80%8E&quot;&gt;&lt;cite style=&quot;background-color: white; display: inline-block; font-family: arial, sans-serif; font-size: 14px !important; font-style: normal; margin-bottom: 1px; white-space: nowrap;&quot;&gt;https://&lt;b&gt;skydrive&lt;/b&gt;.live.com/&lt;/cite&gt;&lt;span style=&quot;background-color: white; font-family: arial, sans-serif; font-size: x-small; line-height: 15px; white-space: nowrap;&quot;&gt;‎&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGSrZFiTyIZYmLf52PVHTrZL8XZ7gvHlprMqqjvlwkU5JvPU4RuA4nZGnovBcus_PcBAnw3Dh212v7PiqJnfNacBMmZ8QBS-vI_FQ2ixDnFneU1vdydvx8MlhTjtKafell0SiZffyk3_3p/s484/16de2970-13de-4418-9727-0b5653277c56_8.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;222&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhGSrZFiTyIZYmLf52PVHTrZL8XZ7gvHlprMqqjvlwkU5JvPU4RuA4nZGnovBcus_PcBAnw3Dh212v7PiqJnfNacBMmZ8QBS-vI_FQ2ixDnFneU1vdydvx8MlhTjtKafell0SiZffyk3_3p/s400/16de2970-13de-4418-9727-0b5653277c56_8.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/6956125435666514191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/07/cloud-computing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6956125435666514191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/6956125435666514191'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/07/cloud-computing.html' title='Cloud Computing'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiU-9WNzZOn30QyF06gyWvHVgcI8-FC9WIAbPWCUP5FNJmdHK11EEBuROAbIi536qwemvt_cIKCh6ti6aMt69thXFfzjUuqg5dadlnm1e9If7Zo-WFvghekfbW3hr5vT2AcSIQggXlfMNVM/s72-c/cloudComputing.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-903244985554325625</id><published>2013-06-25T00:51:00.000-07:00</published><updated>2013-07-01T00:17:56.436-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>Kick Start for HTML,CSS</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUE7RdzsbYZQpS_Rw_I_uYJlS9GXpsl7gfR11Bj08dTnLwiTHEFO_Kdh1XW8UISN2OkOPYuq1H8n_lZ-ykCWcoct2UNOpDVv0Gk9aGsGExekMi3w5tDwY2y5tco8o_cDzt9sF6nD9pkR58/s1600/htmlkickstart.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;225&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUE7RdzsbYZQpS_Rw_I_uYJlS9GXpsl7gfR11Bj08dTnLwiTHEFO_Kdh1XW8UISN2OkOPYuq1H8n_lZ-ykCWcoct2UNOpDVv0Gk9aGsGExekMi3w5tDwY2y5tco8o_cDzt9sF6nD9pkR58/s400/htmlkickstart.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.99lime.com/&quot;&gt;http://www.99lime.com/&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;pre class=&quot;prettyprint linenums&quot;&gt;&lt;b&gt;Tips for using html and css in easy way :&lt;/b&gt;
go to --------&amp;gt;&lt;a href=&quot;http://www.99lime.com/&quot;&gt;http://www.99lime.com/&lt;/a&gt;
goto----------&amp;gt;HTML kick Start
download---&amp;gt;from github
And call the particular class files mentioned in tutorial..
&lt;/pre&gt;
&lt;pre class=&quot;prettyprint linenums&quot;&gt;
&lt;/pre&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/903244985554325625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/kick-start-for-htmlcss.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/903244985554325625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/903244985554325625'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/kick-start-for-htmlcss.html' title='Kick Start for HTML,CSS'/><author><name>technoblazze</name><uri>http://www.blogger.com/profile/16691860879862541800</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUE7RdzsbYZQpS_Rw_I_uYJlS9GXpsl7gfR11Bj08dTnLwiTHEFO_Kdh1XW8UISN2OkOPYuq1H8n_lZ-ykCWcoct2UNOpDVv0Gk9aGsGExekMi3w5tDwY2y5tco8o_cDzt9sF6nD9pkR58/s72-c/htmlkickstart.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-8485576121634188608</id><published>2013-06-20T04:49:00.000-07:00</published><updated>2013-06-20T04:49:47.831-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="XML"/><title type='text'>Structure of xml</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTJ90ujCLZajhSRog-7zHQRza7w_U_DzgLO7K7zhyphenhyphen3pANacjtsr1r1GBt5OkwJw8rkKNO_FWCKzc3WcIR0eQwtl0WveIjshwuBPRiTosMNTN-VzmccHZJRPHvy-9dIPrtHZv7Oze7EhbI1/s1600/XML.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTJ90ujCLZajhSRog-7zHQRza7w_U_DzgLO7K7zhyphenhyphen3pANacjtsr1r1GBt5OkwJw8rkKNO_FWCKzc3WcIR0eQwtl0WveIjshwuBPRiTosMNTN-VzmccHZJRPHvy-9dIPrtHZv7Oze7EhbI1/s1600/XML.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;b&gt;Input XML FILE:&lt;/b&gt;
&amp;lt;?xml version=&quot;1.0&quot;?&amp;gt;
&amp;lt;note&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;to cat=&quot;head&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cc&amp;gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Arun&lt;/span&gt;&amp;lt;/cc&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;cc&amp;gt;&lt;span style=&quot;background-color: transparent; font-weight: bold;&quot;&gt;Vibin&lt;/span&gt;&amp;lt;/cc&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/to&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;from&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bc&amp;gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Jani&lt;/span&gt;&amp;lt;/bc&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;lt;bc&amp;gt;&lt;span style=&quot;background-color: transparent; font-weight: bold;&quot;&gt;ishya&lt;/span&gt;&amp;lt;/bc&amp;gt;
&lt;b&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/b&gt;&amp;lt;/from&amp;gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;
&amp;lt;/note&amp;gt;


&lt;/pre&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;b&gt;EXPLAIN:&lt;/b&gt;
&amp;lt;note&amp;gt;-------&amp;gt;parent Element
&amp;lt;to&amp;gt;,&amp;lt;from&amp;gt;--&amp;gt;Child Element
&amp;lt;cc&amp;gt;,&amp;lt;bc&amp;gt;-----&amp;gt;siblings
cat-----------&amp;gt;attribute
&lt;/pre&gt;
&lt;div style=&quot;font-family: &#39;courier new&#39;; font-size: 16px;&quot;&gt;
&lt;b&gt;Strcture Tree Diagram:&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3509AA7sXvZZBB7OVD2Cu5vPsVXg0wGvITBy7XQ4pp4EwzsshfWMtjwS5X6awCs9OtKqYn3nBU420IDJzcHqy5mfl01jU72l3rM43JxBErsdj3XFHF8ushkWuca8LZLiaPWW207ar4pDF/s1600/nodetree.gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;226&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh3509AA7sXvZZBB7OVD2Cu5vPsVXg0wGvITBy7XQ4pp4EwzsshfWMtjwS5X6awCs9OtKqYn3nBU420IDJzcHqy5mfl01jU72l3rM43JxBErsdj3XFHF8ushkWuca8LZLiaPWW207ar4pDF/s400/nodetree.gif&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;background-color: white; font-family: &#39;courier new&#39;; font-size: 16px;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/8485576121634188608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/structure-of-xml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8485576121634188608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8485576121634188608'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/structure-of-xml.html' title='Structure of xml'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTJ90ujCLZajhSRog-7zHQRza7w_U_DzgLO7K7zhyphenhyphen3pANacjtsr1r1GBt5OkwJw8rkKNO_FWCKzc3WcIR0eQwtl0WveIjshwuBPRiTosMNTN-VzmccHZJRPHvy-9dIPrtHZv7Oze7EhbI1/s72-c/XML.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-5071336581399670856</id><published>2013-06-18T00:55:00.000-07:00</published><updated>2013-06-18T00:59:16.710-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Print the Report or Page using Javascript And PHP</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDrU0qab79gaZa6G1mq62dZhxO6Hf1NmBZohr6cLV6bp0WNxG1x_aU0GnWFESOCI523eVGRHcivcVBEcvw05LTnRq8yGfx1JP4wDAnej3Q0Z8FPaoCz94ujPw-eovmP8hS59YaRZtS__5f/s1600/printer-orange.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDrU0qab79gaZa6G1mq62dZhxO6Hf1NmBZohr6cLV6bp0WNxG1x_aU0GnWFESOCI523eVGRHcivcVBEcvw05LTnRq8yGfx1JP4wDAnej3Q0Z8FPaoCz94ujPw-eovmP8hS59YaRZtS__5f/s1600/printer-orange.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;b&gt;Javascript file:&lt;/b&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;script&amp;gt;
function printDiv(id)
{
&amp;nbsp; var divToPrint=document.getElementById(id);
&amp;nbsp; newWin=window.open(&#39;&#39;, &#39;&#39;, &#39;left=5,top=10,width=1024,height=768,toolbar=0,scrollbars=0,status=0&#39;);
&amp;nbsp; var str=&#39;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;link href=&quot;css/css.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&amp;lt;div align=&quot;center&quot;&amp;gt;&amp;lt;img src=&quot;image/logo.png&quot; border=&quot;0&quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;div align=&quot;center&quot;&amp;gt;&amp;lt;b&amp;gt;Outstanding Report&amp;lt;/b&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&#39;;
&amp;nbsp; newWin.document.write(str);
&amp;nbsp; newWin.document.write(divToPrint.outerHTML);
&amp;nbsp; newWin.print();
&amp;nbsp; newWin.close();
}
&amp;lt;/script&amp;gt;
&lt;/pre&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;
&lt;b&gt;Passing the Div ID parameter:&lt;/b&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;input type=&quot;image&quot; onClick=&quot;return printDiv(&#39;sprint&#39;);&quot; &amp;nbsp;value=&quot;print&quot; &amp;nbsp;src=&quot;image/printj.png&quot; class=&quot;flrt&quot; title=&quot;print report&quot;/&amp;gt;
&amp;lt;div id=&quot;sprint&quot;&amp;gt;
&amp;lt;?php
// Dynamic Code here
?&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;
&lt;b&gt;Expected Output:&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwlth8NNrwj4kpfHl5XuTeNZo_0hCY3K6ARvPFleoGj54mQtxrGD11pJTg_nvc1WzYphwyk75n1eOkyE1tc0JeGYqmgnG4ozys3ItY89ilOglF9CvIR7mT-zYhehbnzfBkUYbXw7HIveBg/s1600/print.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;306&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiwlth8NNrwj4kpfHl5XuTeNZo_0hCY3K6ARvPFleoGj54mQtxrGD11pJTg_nvc1WzYphwyk75n1eOkyE1tc0JeGYqmgnG4ozys3ItY89ilOglF9CvIR7mT-zYhehbnzfBkUYbXw7HIveBg/s400/print.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/5071336581399670856/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/print-report-or-page-using-javascript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/5071336581399670856'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/5071336581399670856'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/print-report-or-page-using-javascript.html' title='Print the Report or Page using Javascript And PHP'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiDrU0qab79gaZa6G1mq62dZhxO6Hf1NmBZohr6cLV6bp0WNxG1x_aU0GnWFESOCI523eVGRHcivcVBEcvw05LTnRq8yGfx1JP4wDAnej3Q0Z8FPaoCz94ujPw-eovmP8hS59YaRZtS__5f/s72-c/printer-orange.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-2966369030546064897</id><published>2013-06-15T03:21:00.000-07:00</published><updated>2013-06-15T03:21:45.591-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Script for Dynamic MORE or  LESS and [all the DIV&#39;s become Less when One more option is clicked]</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;script&amp;gt;
 $(document).ready(function () {
var showChar = 100;
 var ellipsestext = &quot;...&quot;;
 var moretext = &quot;more&quot;;
 var lesstext = &quot;less&quot;;
 var txtlen = 1;
 $(&#39;.more&#39;).each(function () {
 var content = $(this).html();
 if (content.length &amp;gt; showChar) {
 var c = content.substr(0, showChar);
 var h = content.substr(showChar - 1, content.length - showChar);
 var html = c + &#39;&amp;lt;span class=&quot;moreelipses&quot;&amp;gt;&#39; + ellipsestext + &#39;&amp;lt;/span&amp;gt;&amp;amp;nbsp;&amp;lt;span class=&quot;morecontent&quot;&amp;gt;&amp;lt;span&amp;gt;&#39; + h + &#39;&amp;lt;/span&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;lt;a href=&quot;&quot; class=&quot;morelink&quot; id=testimonial&#39; + txtlen + &#39;&amp;gt;&#39; + moretext + &#39;&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&#39;;
$(this).html(html);
 }
 txtlen++;
 });
 $(&quot;.morelink&quot;).click(function () {
 if ($(this).hasClass(&quot;less&quot;)) {
 $(this).removeClass(&quot;less&quot;);
$(this).html(moretext);
 } else {

 for (var i = 1; i &amp;lt; txtlen; i++) {
if ($(&quot;a#testimonial&quot; + i).attr(&#39;class&#39;) == &quot;morelink less&quot;)
 {
 $(&quot;a#testimonial&quot; + i).trigger(&quot;click&quot;);
 }
 }
 $(this).addClass(&quot;less&quot;);
 $(this).html(lesstext);
}
 $(this).parent().prev().toggle();
 $(this).prev().toggle();
 return false;
 });
 });
&amp;lt;/script&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;lt;div class=&quot;comment more&quot;&amp;gt;
 &amp;lt;?php 
              //give dynamic code
        ?&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;div class=&quot;comment more&quot;&amp;gt;
 &amp;lt;?php 
              //give dynamic code
        ?&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/2966369030546064897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/script-for-dynamic-more-or-less-and-all.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2966369030546064897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/2966369030546064897'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/script-for-dynamic-more-or-less-and-all.html' title='Script for Dynamic MORE or  LESS and [all the DIV&#39;s become Less when One more option is clicked]'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-3299793315256933844</id><published>2013-06-09T01:00:00.000-07:00</published><updated>2013-06-09T01:08:34.848-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Face book Wall Post</title><content type='html'>&lt;div&gt;
&lt;div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqoEL8eIKHJ9FpxziHTjNPZGqyhnnmo8bODvkVugscmn9g5RiTw-nGIrL9jpSugmkiqhFPTI-BLV6_I-VUMooCaDs3qs2u3H1pOLR2KcIm14LKldlavJOi0bUgSZmObmKOVbgsPpvZRj5Y/s1600/fbwall.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;136&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqoEL8eIKHJ9FpxziHTjNPZGqyhnnmo8bODvkVugscmn9g5RiTw-nGIrL9jpSugmkiqhFPTI-BLV6_I-VUMooCaDs3qs2u3H1pOLR2KcIm14LKldlavJOi0bUgSZmObmKOVbgsPpvZRj5Y/s400/fbwall.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;Index.php:&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;?php
include &#39;class.php&#39;;
$db=new database();
$db-&amp;gt;connect();
?&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; href=&quot;wall.css&quot; type=&quot;text/css&quot; /&amp;gt;
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;jquery-latest.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
$(document).ready(function() {
$(&#39;#textpost&#39;).click(function() {
&amp;nbsp; &amp;nbsp; &amp;nbsp; var b=$(&quot;#fbpost&quot;).val();
&amp;nbsp; &amp;nbsp; &amp;nbsp; var dataString = &#39;fbwall=&#39;+b;
&amp;nbsp; &amp;nbsp; &amp;nbsp; $.ajax( {
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type:&quot;POST&quot;,
&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;async: false,
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url:&quot;ajax.php&quot;,
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data: dataString,
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success: function(data) {&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;

&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;			&lt;/span&gt; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt; &amp;nbsp;$(&quot;#fbpost&quot;).val(&quot;&quot;);&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&quot;#viewpost&quot;).html(data);&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;				&lt;/span&gt; &amp;nbsp;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;				&lt;/span&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
});
});

&amp;lt;/script&amp;gt;
&amp;lt;div id=&quot;container&quot;&amp;gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;img src=&quot;facebook-logo.jpg&quot; width=&quot;200&quot; height=&quot;75&quot;/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;div id=&quot;post&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;form action=&quot;&quot; method=&quot;post&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;p class=&quot;example-twitter&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;textarea name=&quot;fbwall&quot; id=&quot;fbpost&quot; class=&quot;&quot; placeholder=&quot;whatzz upp?&quot; &amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/textarea&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;br/&amp;gt; &amp;nbsp;&amp;lt;br/&amp;gt; 
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&quot;#&quot; class=&quot;button postfb&quot; id=&quot;textpost&quot;&amp;gt;Post&amp;lt;/a&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/form&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;div id=&quot;viewpost&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;?
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;$queyr=$db-&amp;gt;query(&quot;select * from fb ORDER BY `id` DESC&quot;);
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;while($query=$db-&amp;gt;fetch($queyr))
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;?&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;div id=&quot;display&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;div id=&quot;leftdisplay&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;img src=&quot;http://lh3.googleusercontent.com/-Iw_xOyvn0z0/AAAAAAAAAAI/AAAAAAAAAFw/r_0QqjeH2vQ/s512-c/photo.jpg&quot; &amp;nbsp;width=&quot;120&quot; height=&quot;120&quot;/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&quot;rightdisplay&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;p class=&quot;triangle-border left&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;&amp;lt;? echo $query[&quot;wallpost&quot;];?&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;lt;div style=&quot;height:200px;&quot;&amp;gt;&amp;lt;/div&amp;gt; 
&amp;nbsp; &amp;nbsp; &amp;lt;? } ?&amp;gt; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;

&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;Ajax.php:&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;?
include &#39;class.php&#39;;
$db=new database();
$db-&amp;gt;connect();
if(isset($_REQUEST[&quot;fbwall&quot;]))
{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;$wall=$_REQUEST[&quot;fbwall&quot;];
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;$insert=$db-&amp;gt;query(&quot;INSERT INTO fb (wallpost) VALUES (&#39;$wall&#39;)&quot;);
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;if($insert)
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;$select=$db-&amp;gt;query(&quot;select * from fb ORDER BY `id` DESC&quot;);
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;while($view=$db-&amp;gt;fetch($select))
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;{?&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;div id=&quot;display&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&quot;leftdisplay&quot;&amp;gt;&amp;lt;img src=&quot;http://lh3.googleusercontent.com/-Iw_xOyvn0z0/AAAAAAAAAAI/AAAAAAAAAFw/r_0QqjeH2vQ/s512-c/photo.jpg&quot; &amp;nbsp;width=&quot;120&quot; height=&quot;120&quot;/&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&quot;rightdisplay&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p class=&quot;triangle-border left&quot;&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;? echo $view[&quot;wallpost&quot;];?&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/p&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div style=&quot;height:200px;&quot;&amp;gt;&amp;lt;/div&amp;gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;		&lt;/span&gt;&amp;lt;? }
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt;}
}
?&amp;gt;
&lt;/pre&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;b&gt;&lt;u&gt;Database:&lt;/u&gt;&lt;/b&gt;
id----------&amp;gt;int(11)
wallpost---&amp;gt;longtext()
&lt;/pre&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;class.php&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&amp;lt;?

class database

{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;	&lt;/span&gt; public function connect()
&amp;nbsp; &amp;nbsp; &amp;nbsp;{

&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $con=mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;&quot;) or die(&quot;unable to connect&quot;);
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mysql_select_db(&quot;test&quot;,$con) or die(&quot;unable to select&quot;);
&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp; &amp;nbsp; &amp;nbsp;public function query($sql)
&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$sc=mysql_query($sql) or die(&quot;query not working&quot;. &amp;nbsp;mysql_error());
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return $sc;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp; &amp;nbsp; &amp;nbsp;public function &amp;nbsp;fetch($qu)
&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$ft=mysql_fetch_array($qu);
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return $ft;
&amp;nbsp; &amp;nbsp; &amp;nbsp;}
&amp;nbsp; &amp;nbsp; &amp;nbsp;public function num($rows)
&amp;nbsp; &amp;nbsp; &amp;nbsp;{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$rw=mysql_num_rows($rows);
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return $rw;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&amp;nbsp; &amp;nbsp; &amp;nbsp;}
}
?&amp;gt;
&lt;/pre&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&lt;/pre&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;b&gt;&lt;u&gt;Output:&lt;/u&gt;&lt;/b&gt;&lt;/pre&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihJIZrbsBPfwfsCVgiKXn4bHyVhXmS56Q7QDmbtkXZUPN2RElu8DD66Ed15XC9YdAhkse_5jtKfR2Jh3KSQhyphenhyphen2uXCQkBi3vtM5xfNwRvjRb15NQIwGKT-XhiwRbrs0gSZNKJmmxE4jB-04/s1600/fbpost.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;276&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihJIZrbsBPfwfsCVgiKXn4bHyVhXmS56Q7QDmbtkXZUPN2RElu8DD66Ed15XC9YdAhkse_5jtKfR2Jh3KSQhyphenhyphen2uXCQkBi3vtM5xfNwRvjRb15NQIwGKT-XhiwRbrs0gSZNKJmmxE4jB-04/s320/fbpost.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;&lt;b&gt;&lt;u&gt;
&lt;/u&gt;&lt;/b&gt;&lt;/pre&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/0ycz34owol7diowa7ynr&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/3299793315256933844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/face-book-wall-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3299793315256933844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/3299793315256933844'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/face-book-wall-post.html' title='Face book Wall Post'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjqoEL8eIKHJ9FpxziHTjNPZGqyhnnmo8bODvkVugscmn9g5RiTw-nGIrL9jpSugmkiqhFPTI-BLV6_I-VUMooCaDs3qs2u3H1pOLR2KcIm14LKldlavJOi0bUgSZmObmKOVbgsPpvZRj5Y/s72-c/fbwall.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-1476243362287241827</id><published>2013-06-06T00:19:00.000-07:00</published><updated>2013-06-06T00:20:05.494-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="php"/><title type='text'>Dynamic Autocomplete using php </title><content type='html'>&lt;div&gt;
&lt;b&gt;&lt;u&gt;index.php:&lt;/u&gt;&lt;/b&gt;&lt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&amp;gt;
&amp;lt;title&amp;gt;Auto Complete Input box&amp;lt;/title&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;jquery.autocomplete.css&quot; /&amp;gt;
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;jquery.autocomplete.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;script&amp;gt;
$(document).ready(function(){
&amp;nbsp;$(&quot;#tag&quot;).autocomplete(&quot;autocomplete.php&quot;, {
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;selectFirst: true
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;});
});
&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;label&amp;gt;Tag:&amp;lt;/label&amp;gt;
&amp;lt;form action=&quot;&quot; method=&quot;post&quot;&amp;gt;
&amp;lt;input name=&quot;tag&quot; type=&quot;text&quot; id=&quot;tag&quot; size=&quot;20&quot;/&amp;gt;&amp;nbsp;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;&amp;lt;input type=&quot;submit&quot; value=&quot;submit&quot; name=&quot;gt&quot;/&amp;gt;
&amp;lt;form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;?php
if(isset($_POST[&quot;gt&quot;]))
{
$mysql=mysql_connect(&quot;localhost&quot;,&quot;root&quot;,&quot;123&quot;);
mysql_select_db(&quot;hi&quot;,$mysql);
mysql_query(&quot;insert into tag (name) values (&#39;&quot;.$_POST[&quot;tag&quot;].&quot;&#39;)&quot;);
echo $_POST[&quot;tag&quot;];
}
?&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;
&lt;b&gt;&lt;u&gt;autocomplete.php:&lt;/u&gt;&lt;/b&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;lt;?php
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$q=$_GET[&#39;q&#39;];
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$my_data=mysql_real_escape_string($q);
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$mysqli=mysqli_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;123&#39;,&#39;hi&#39;) or die(&quot;Database Error&quot;);
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$sql=&quot;SELECT name FROM tag WHERE name LIKE &#39;%$my_data%&#39; ORDER BY name&quot;;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;$result = mysqli_query($mysqli,$sql) or die(mysqli_error());
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;if($result)
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;while($row=mysqli_fetch_array($result))
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;{
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;echo $row[&#39;name&#39;].&quot;\n&quot;;
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;}
&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}
?&amp;gt;

&lt;br /&gt;
&lt;/pre&gt;
&lt;b&gt;&lt;u&gt;Database :&lt;/u&gt;&lt;/b&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
id---&amp;gt;int(4)---&amp;gt;Autocomplete
Name---&amp;gt;varchar(50)
&lt;/pre&gt;
&lt;div style=&quot;padding-left: 250px;&quot;&gt;
Download&lt;br /&gt;
&lt;a href=&quot;https://www.box.com/s/anwahjk3g0i7nueq4f2z&quot; target=&quot;_blank&quot;&gt;&lt;img height=&quot;50&quot; src=&quot;http://sphotos-d.ak.fbcdn.net/hphotos-ak-prn1/559891_4814296523694_55639862_n.jpg&quot; width=&quot;50&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/1476243362287241827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/06/dynamic-autocomplete-using-php.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/1476243362287241827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/1476243362287241827'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/06/dynamic-autocomplete-using-php.html' title='Dynamic Autocomplete using php '/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-8130377160888086070</id><published>2013-05-20T21:57:00.000-07:00</published><updated>2013-05-20T22:12:27.797-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>what is the Best programming Language to learn in 2013</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px;&quot;&gt;An interesting article caught my eye at&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://jobstractor.com/&quot; style=&quot;background-color: white; color: #0071d8; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px; margin: 0px; padding: 0px; text-decoration: initial;&quot;&gt;jobstractor.com&lt;/a&gt;&lt;span style=&quot;background-color: white; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px;&quot;&gt;&amp;nbsp;—&amp;nbsp;&lt;/span&gt;&lt;a href=&quot;http://jobstractor.com/monthly-stats&quot; style=&quot;background-color: white; color: #0071d8; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px; margin: 0px; padding: 0px; text-decoration: initial;&quot;&gt;the programming language trends review&lt;/a&gt;&lt;span style=&quot;background-color: white; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px;&quot;&gt;. The company analyzed more than 60,000 job vacancies during 2012 to produce a chart of the most sought-after technologies:&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span style=&quot;color: red;&quot;&gt;Language &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Jobs&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; PHP &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;12,664&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Java &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;12,558&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Objective C &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;8,925&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SQL &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5,165&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Android(java) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;4,981&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Ruby &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;3,859&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Javascript &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;3,742&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c# &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;3,549&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; c++ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;1,908&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Actionscript &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;1,821&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Python &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1,649&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; C &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;1,087&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&lt;span style=&quot;color: red; font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Asp.net &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;818&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfnLyZspylsHef5XhxbCfb2U0SSVXrJ1ePlu7Q1fgYiopK_vqESHwXtMFIAoULWhFSeO6giJs8kfoQmdjzI-0jrTPx2ou_XJUpbnuIWMy_azIzIJsqthOV-Dr1YA-_m-JJtzlWaVlQ85Sa/s1600/781-programming-skills-chart.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;322&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfnLyZspylsHef5XhxbCfb2U0SSVXrJ1ePlu7Q1fgYiopK_vqESHwXtMFIAoULWhFSeO6giJs8kfoQmdjzI-0jrTPx2ou_XJUpbnuIWMy_azIzIJsqthOV-Dr1YA-_m-JJtzlWaVlQ85Sa/s400/781-programming-skills-chart.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; font-family: &#39;Helvetica Neue&#39;, Helvetica, Arial, sans-serif; font-size: 15px; line-height: 22px;&quot;&gt;Despite developer complaints, demand for PHP and Java (server/Android) remains strong. You would also expect those jobs to require some SQL knowledge although that has a strong showing in its own right. ActionScript is a dying art so it’s rapidly falling off the chart.&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;background-color: white; line-height: 22px; text-align: right;&quot;&gt;&lt;span style=&quot;font-family: Helvetica Neue, Arial, Helvetica, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/8130377160888086070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/05/what-is-best-programming-language-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8130377160888086070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/8130377160888086070'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/05/what-is-best-programming-language-to.html' title='what is the Best programming Language to learn in 2013'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhfnLyZspylsHef5XhxbCfb2U0SSVXrJ1ePlu7Q1fgYiopK_vqESHwXtMFIAoULWhFSeO6giJs8kfoQmdjzI-0jrTPx2ou_XJUpbnuIWMy_azIzIJsqthOV-Dr1YA-_m-JJtzlWaVlQ85Sa/s72-c/781-programming-skills-chart.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-531865752241695203</id><published>2013-05-20T21:34:00.005-07:00</published><updated>2013-05-20T21:35:18.877-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vital info"/><title type='text'>WORLD TOP TEN PROGRAMMING LANGUAGES</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;color: #660000;&quot;&gt;&lt;b&gt;1.JAVA :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #660000;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;background-color: white;&quot;&gt;An object-oriented programming language developed in the late 1990s by&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;James Gosling and colleagues&lt;/b&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp;at&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;Sun Microsystems.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;2.C:&lt;/b&gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;span style=&quot;background-color: white;&quot;&gt;C, a general purpose programming language built by&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;Dennis Ritchie&lt;/b&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp;when he was a part of Bell Telephone labs, is the bass of C++ and other programming languages. It was built to work with the Unix operating system.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #134f5c;&quot;&gt;&lt;b&gt;3.C#:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #134f5c;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;This general-purpose programming language&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;developed by Microsoft&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;background-color: white;&quot;&gt;evolved from C and C++ as a part of the software company’s .NET initiative.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #274e13;&quot;&gt;&lt;b&gt;4.C++:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;span style=&quot;color: #274e13;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: #274e13;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;C++ is a general purpose multi-paradigm spanning compiled language that has both high-level and low-level languages’ features. It was started as an enhancement to the C programming language,&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;Bjarne Stroustrup in 1979.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;span style=&quot;color: #0c343d;&quot;&gt;&lt;b&gt;
5.Objective-c:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0c343d;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;span style=&quot;background-color: white;&quot;&gt;This object-oriented programming language created first by&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;Brad Cox and Tom Love&amp;nbsp;&lt;/b&gt;&lt;span style=&quot;background-color: white;&quot;&gt;at their company Stepstone in the early 1980s, adds Smalltalk-like messaging to the C programming language.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #0b5394;&quot;&gt;&lt;b&gt;6.PHP:&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #0b5394;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;This language is especially suited for Web development because of it easy embedding into HTML pages. It is an open-source, server-side, cross-platform, interpretive HTML scripting language&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #7f6000;&quot;&gt;&lt;b&gt;7.VB :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #7f6000;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;This is an event-driven programming language which is implemented on Microsoft’s .Net framework.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #3d85c6;&quot;&gt;&lt;b&gt;8.Python :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #3d85c6;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;This is an event-driven programming language which is extensively used by Google because of its simplicity. It is managed by the&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;Python Software Foundation.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;b style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/b&gt;&lt;span style=&quot;color: #b45f06;&quot;&gt;&lt;b&gt;
9.perl :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #b45f06;&quot;&gt;&amp;nbsp; &amp;nbsp; Being a high-level programming language, its emphasis lies in code readability and clear syntax. It combines Object-oriented and functional programming styles, and is often used as a scripting language. Perl is an open-source language used widely to process text through CGI programs.&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: white; color: #351c75;&quot;&gt;&lt;b&gt;10.Javascript :&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #351c75;&quot;&gt;&lt;span style=&quot;background-color: white;&quot;&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;JavaScript is an object-oriented scripting language that is&amp;nbsp;&lt;/span&gt;&lt;b style=&quot;background-color: white;&quot;&gt;smaller than Java&lt;/b&gt;&lt;span style=&quot;background-color: white;&quot;&gt;. Being a client-side language, it runs in the web browser on the client-side with a simplified set of&amp;nbsp;&lt;/span&gt;&lt;span id=&quot;goog_2124723921&quot; style=&quot;background-color: white;&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_2124723922&quot; style=&quot;background-color: white;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;background-color: white;&quot;&gt;commands, easier code and no need for compilation.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhD5iwOw4p4X6nueUmSV_Pc1qbDvaCs5p4GBO0Po-8VxBtytKC7vrHaZZjVB_qKARGEmL0W2T_ITsLA0qxrHcEY2brVINIwPx08MZPT3DAJnSIZ_RgB9Q91y7RafTyi8GoAbQwVNsvpsj5j/s1600/statics.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;253&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhD5iwOw4p4X6nueUmSV_Pc1qbDvaCs5p4GBO0Po-8VxBtytKC7vrHaZZjVB_qKARGEmL0W2T_ITsLA0qxrHcEY2brVINIwPx08MZPT3DAJnSIZ_RgB9Q91y7RafTyi8GoAbQwVNsvpsj5j/s320/statics.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/531865752241695203/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/05/world-top-ten-programming-languages.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/531865752241695203'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/531865752241695203'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/05/world-top-ten-programming-languages.html' title='WORLD TOP TEN PROGRAMMING LANGUAGES'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhD5iwOw4p4X6nueUmSV_Pc1qbDvaCs5p4GBO0Po-8VxBtytKC7vrHaZZjVB_qKARGEmL0W2T_ITsLA0qxrHcEY2brVINIwPx08MZPT3DAJnSIZ_RgB9Q91y7RafTyi8GoAbQwVNsvpsj5j/s72-c/statics.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8453863829337782422.post-7104399719797870717</id><published>2013-05-06T22:47:00.001-07:00</published><updated>2013-05-06T22:49:43.113-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="jQuery"/><title type='text'>javascript conform box</title><content type='html'>&lt;div&gt;
&lt;br /&gt;
&lt;pre class=&quot;prettyprint&quot;&gt;
&amp;lt;script type=&quot;text/javascript&quot;&amp;gt;
function Validate(event) 
{
var thereturn = confirm(&quot;Are you sure want to delete the profile?&quot;);
if (event) 
{
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (!thereturn)
{
event.preventDefault();
}
} 
else 
{
return thereturn;
}
}
window.onload = function()
{ 
document.getElementById(&#39;delete-form&#39;).onsubmit = Validate;
};
&amp;lt;/script&amp;gt;
&amp;lt;input type=&quot;submit&quot; class=&quot;submit redform&quot; value=&quot;delete&quot; &amp;nbsp;onclick=&quot;Validate(event)&quot; /&amp;gt;&lt;br /&gt;
&lt;/pre&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://technoblazze.blogspot.com/feeds/7104399719797870717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://technoblazze.blogspot.com/2013/05/javascript-conform-box.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7104399719797870717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8453863829337782422/posts/default/7104399719797870717'/><link rel='alternate' type='text/html' href='http://technoblazze.blogspot.com/2013/05/javascript-conform-box.html' title='javascript conform box'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>