<?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: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-1793839616362759558</id><updated>2011-07-07T13:37:03.180-07:00</updated><category term='PHP Array'/><category term='Software Hit Counter'/><category term='software support'/><category term='PHP Hit Counter'/><category term='Trojan Software'/><category term='Software on php'/><category term='Php Support'/><category term='Software Text Hit Counter'/><category term='software on memory card'/><category term='Text it Counter'/><category term='Trojan removal software'/><category term='PHP Software'/><category term='software data recovery'/><title type='text'>Ben's Software Support</title><subtitle type='html'>Learn a programming language.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://bensoftwaresupport.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1793839616362759558.post-935549456293720558</id><published>2009-08-06T09:56:00.000-07:00</published><updated>2009-08-06T10:11:00.416-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Software Hit Counter'/><category scheme='http://www.blogger.com/atom/ns#' term='Text it Counter'/><category scheme='http://www.blogger.com/atom/ns#' term='Software Text Hit Counter'/><category scheme='http://www.blogger.com/atom/ns#' term='PHP Hit Counter'/><title type='text'>PHP Hit Counter using text only</title><content type='html'>&lt;p align="justify"&gt;Steps to make a Hit Counter&lt;/p&gt;&lt;p align="justify"&gt;1. Create a counter text file of the name hitcounter.txt and save it to the same directory you will put your hit counter in.&lt;br /&gt;&lt;/p&gt;&lt;div align="justify"&gt;&lt;br /&gt;2. Open your php editor. Save the document as counter.php. Set your opening statement for PHP script.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;3. Set the variable for the file named hitcounter.txt and place this between your PHP tags. remember to place the filename in quotes. place the semicolon on the end of the line to end the command.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;4. Set the number of visits to the current value of the contents of the hitcounter.txt file:&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;5. When the script is accessed as the page loads, it not only reads the current number of hits on the page in the hitcounter.txt, it must increase the value by 1 for the current hit to be recorded. Add 1 to your value of $hits and call it $hits.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;$hits[0] ++;&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;6.Open the file that is keeping count so we can write to it&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;$hits[0] ++;&lt;br /&gt;$fp = fopen($count_my_page , "w");&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;7. Replace the value in the file with the new $hits number after it was incremented.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;$hits[0] ++;&lt;br /&gt;$fp = fopen($count_my_page , "w");&lt;br /&gt;fputs($fp , "$hits[0]");&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;8. You must close the file next.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;$hits[0] ++;&lt;br /&gt;$fp = fopen($count_my_page , "w");&lt;br /&gt;fputs($fp , "$hits[0]");&lt;br /&gt;fclose($fp);&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;9. Set the code to display your hit number.&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;$count_my_page = ("hitcounter.txt");&lt;br /&gt;$hits = file($count_my_page);&lt;br /&gt;$hits[0] ++;&lt;br /&gt;$fp = fopen($count_my_page , "w");&lt;br /&gt;fputs($fp , "$hits[0]");&lt;br /&gt;fclose($fp);&lt;br /&gt;echo $hits[0];&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;10. Save your php file in same directory as the text file.&lt;br /&gt;&lt;br /&gt;11. To use this script you just have to add a php statement that calls that php file. Use the following include:&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;include ("counter.php");&lt;br /&gt;?&amp;gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1793839616362759558-935549456293720558?l=bensoftwaresupport.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/935549456293720558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/935549456293720558'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/2009/08/php-hit-counter-using-text-only.html' title='PHP Hit Counter using text only'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1793839616362759558.post-8901216407245537471</id><published>2009-08-06T08:34:00.000-07:00</published><updated>2009-08-06T09:46:11.718-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PHP Software'/><category scheme='http://www.blogger.com/atom/ns#' term='PHP Array'/><category scheme='http://www.blogger.com/atom/ns#' term='Software on php'/><category scheme='http://www.blogger.com/atom/ns#' term='Php Support'/><title type='text'>PHP Array Functions</title><content type='html'>&lt;strong&gt;array()&lt;/strong&gt; : Creates an array&lt;br /&gt;&lt;strong&gt;array_change_key_case()&lt;/strong&gt; : Returns an array with all keys in lowercase or uppercase&lt;br /&gt;&lt;strong&gt;array_chunk()&lt;/strong&gt; : Splits an array into chunks of arrays&lt;br /&gt;&lt;strong&gt;array_combine()&lt;/strong&gt; : Creates an array by using one array for keys and another for its values&lt;br /&gt;&lt;strong&gt;array_count_values() &lt;/strong&gt; : Returns an array with the number of occurrences for each value&lt;br /&gt;&lt;strong&gt;array_diff()&lt;/strong&gt; : Compares array values, and returns the differences&lt;br /&gt;&lt;strong&gt;array_diff_assoc()&lt;/strong&gt; : Compares array keys and values, and returns the differences&lt;br /&gt;&lt;strong&gt;array_diff_key()&lt;/strong&gt; : Compares array keys, and returns the differences&lt;br /&gt;&lt;strong&gt;array_diff_uassoc()&lt;/strong&gt; :Compares array keys and values, with an additional user-made function check, and returns the differences&lt;br /&gt;&lt;strong&gt;array_diff_ukey()&lt;/strong&gt; : Compares array keys, with an additional user-made function check, and returns the differences&lt;br /&gt;&lt;strong&gt;array_fill() &lt;/strong&gt;: Fills an array with values&lt;br /&gt;&lt;strong&gt;array_filter()&lt;/strong&gt; : Filters elements of an array using a user-made function&lt;br /&gt;&lt;strong&gt;array_flip()&lt;/strong&gt; : Exchanges all keys with their associated values in an array&lt;br /&gt;&lt;strong&gt;array_intersect()&lt;/strong&gt; : Compares array values, and returns the matches&lt;br /&gt;&lt;strong&gt;array_intersect_assoc()&lt;/strong&gt; : Compares array keys and values, and returns the matches&lt;br /&gt;&lt;strong&gt;array_intersect_key()&lt;/strong&gt; : Compares array keys, and returns the matches&lt;br /&gt;&lt;strong&gt;array_intersect_uassoc()&lt;/strong&gt; : Compares array keys and values, with an additional user-made function check, and returns the matches&lt;br /&gt;&lt;strong&gt;array_intersect_ukey()&lt;/strong&gt; : Compares array keys, with an additional user-made function check, and returns the matches&lt;br /&gt;&lt;strong&gt;array_key_exists()&lt;/strong&gt; : Checks if the specified key exists in the array&lt;br /&gt;&lt;strong&gt;array_keys()&lt;/strong&gt; : Returns all the keys of an array&lt;br /&gt;&lt;strong&gt;array_map()&lt;/strong&gt; : Sends each value of an array to a user-made function, which returns new values&lt;br /&gt;&lt;strong&gt;array_merge()&lt;/strong&gt; : Merges one or more arrays into one array&lt;br /&gt;&lt;strong&gt;array_merge_recursive()&lt;/strong&gt; : Merges one or more arrays into one array&lt;br /&gt;&lt;strong&gt;array_multisort()&lt;/strong&gt; : Sorts multiple or multi-dimensional arrays&lt;br /&gt;&lt;strong&gt;array_pad()&lt;/strong&gt; : Inserts a specified number of items, with a specified value, to an array&lt;br /&gt;&lt;strong&gt;array_pop() &lt;/strong&gt; : Deletes the last element of an array&lt;br /&gt;&lt;strong&gt;array_product()&lt;/strong&gt; : Calculates the product of the values in an array&lt;br /&gt;&lt;strong&gt;array_push()&lt;/strong&gt; : Inserts one or more elements to the end of an array&lt;br /&gt;&lt;strong&gt;array_rand() &lt;/strong&gt;: Returns one or more random keys from an array&lt;br /&gt;&lt;strong&gt;array_reduce()&lt;/strong&gt; : Returns an array as a string, using a user-defined function&lt;br /&gt;&lt;strong&gt;array_reverse()&lt;/strong&gt; : Returns an array in the reverse order&lt;br /&gt;&lt;strong&gt;array_search()&lt;/strong&gt; : Searches an array for a given value and returns the key&lt;br /&gt;&lt;strong&gt;array_shift() &lt;/strong&gt; : Removes the first element from an array, and returns the value of the removed element&lt;br /&gt;&lt;strong&gt;array_slice()&lt;/strong&gt; : Returns selected parts of an array&lt;br /&gt;&lt;strong&gt;array_splice()&lt;/strong&gt; : Removes and replaces specified elements of an array&lt;br /&gt;&lt;strong&gt;array_sum() &lt;/strong&gt;: Returns the sum of the values in an array&lt;br /&gt;&lt;strong&gt;array_udiff()&lt;/strong&gt; : Compares array values in a user-made function and returns an array&lt;br /&gt;&lt;strong&gt;array_udiff_assoc()&lt;/strong&gt; : Compares array keys, and compares array values in a user-made function, and returns an array&lt;br /&gt;&lt;strong&gt;array_udiff_uassoc()&lt;/strong&gt; : Compares array keys and array values in user-made functions, and returns an array&lt;br /&gt;&lt;strong&gt;array_uintersect()&lt;/strong&gt; : Compares array values in a user-made function and returns an array&lt;br /&gt;&lt;strong&gt;array_uintersect_assoc()&lt;/strong&gt; : Compares array keys, and compares array values in a user-made function, and returns an array&lt;br /&gt;&lt;strong&gt;array_uintersect_uassoc()&lt;/strong&gt; : Compares array keys and array values in user-made functions, and returns an array&lt;br /&gt;&lt;strong&gt;array_unique()&lt;/strong&gt; : Removes duplicate values from an array&lt;br /&gt;&lt;strong&gt;array_unshift()&lt;/strong&gt; : Adds one or more elements to the beginning of an array&lt;br /&gt;&lt;strong&gt;array_values() &lt;/strong&gt;: Returns all the values of an array&lt;br /&gt;&lt;strong&gt;array_walk()&lt;/strong&gt; : Applies a user function to every member of an array&lt;br /&gt;&lt;strong&gt;array_walk_recursive()&lt;/strong&gt; : Applies a user function recursively to every member of an array&lt;br /&gt;&lt;strong&gt;arsort()&lt;/strong&gt; : Sorts an array in reverse order and maintain index association&lt;br /&gt;&lt;strong&gt;asort() &lt;/strong&gt;: Sorts an array and maintain index association&lt;br /&gt;&lt;strong&gt;compact()&lt;/strong&gt; : Create array containing variables and their values&lt;br /&gt;&lt;strong&gt;count()&lt;/strong&gt; : Counts elements in an array, or properties in an object&lt;br /&gt;&lt;strong&gt;current()&lt;/strong&gt; : Returns the current element in an array&lt;br /&gt;&lt;strong&gt;each() &lt;/strong&gt; : Returns the current key and value pair from an array&lt;br /&gt;&lt;strong&gt;end()&lt;/strong&gt; : Sets the internal pointer of an array to its last element&lt;br /&gt;&lt;strong&gt;extract()&lt;/strong&gt; : Imports variables into the current symbol table from an array&lt;br /&gt;&lt;strong&gt;in_array()&lt;/strong&gt; : Checks if a specified value exists in an array&lt;br /&gt;&lt;strong&gt;key()&lt;/strong&gt; : Fetches a key from an array&lt;br /&gt;&lt;strong&gt;krsort()&lt;/strong&gt; : Sorts an array by key in reverse order&lt;br /&gt;&lt;strong&gt;ksort()&lt;/strong&gt; : Sorts an array by key&lt;br /&gt;&lt;strong&gt;list()&lt;/strong&gt; : Assigns variables as if they were an array&lt;br /&gt;&lt;strong&gt;natcasesort()&lt;/strong&gt; : Sorts an array using a case insensitive "natural order" algorithm&lt;br /&gt;&lt;strong&gt;natsort()&lt;/strong&gt; : Sorts an array using a "natural order" algorithm&lt;br /&gt;&lt;strong&gt;next()&lt;/strong&gt; : Advance the internal array pointer of an array&lt;br /&gt;&lt;strong&gt;pos()&lt;/strong&gt; : Alias of current()&lt;br /&gt;&lt;strong&gt;prev() &lt;/strong&gt;: Rewinds the internal array pointer&lt;br /&gt;&lt;strong&gt;range()&lt;/strong&gt; : Creates an array containing a range of elements&lt;br /&gt;&lt;strong&gt;reset() &lt;/strong&gt; : Sets the internal pointer of an array to its first element&lt;br /&gt;&lt;strong&gt;rsort() &lt;/strong&gt; : Sorts an array in reverse order&lt;br /&gt;&lt;strong&gt;shuffle() &lt;/strong&gt; : Shuffles an array&lt;br /&gt;&lt;strong&gt;sizeof() &lt;/strong&gt; : Alias of count()&lt;br /&gt;&lt;strong&gt;sort() &lt;/strong&gt; : Sorts an array&lt;br /&gt;&lt;strong&gt;uasort() &lt;/strong&gt;: Sorts an array with a user-defined function and maintain index association&lt;br /&gt;&lt;strong&gt;uksort()&lt;/strong&gt; : Sorts an array by keys using a user-defined function&lt;br /&gt;&lt;strong&gt;usort()&lt;/strong&gt; : Sorts an array by values using a user-defined function&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.w3schools.com/PHP/php_ref_array.asp"&gt;read more..&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1793839616362759558-8901216407245537471?l=bensoftwaresupport.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/8901216407245537471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/8901216407245537471'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/2009/08/php-array-functions.html' title='PHP Array Functions'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1793839616362759558.post-6457640702614967106</id><published>2009-08-04T11:25:00.000-07:00</published><updated>2009-08-04T11:26:37.931-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PHP Software'/><category scheme='http://www.blogger.com/atom/ns#' term='Php Support'/><category scheme='http://www.blogger.com/atom/ns#' term='software support'/><title type='text'>PHP Introduction</title><content type='html'>&lt;div style="text-align: justify;"&gt;HP stands for Hypertext Preprocessor and is used as a scripting language that is embedded in HTML and runs on the web server. The PHP code is run on the server when the page is requested&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;Anyone who knows HTML and the C or C++ language can easily program PHP. PHP uses much of the same syntax of C, but is much easier to use and provides access to variables and their values as submitted using HTML forms without the need to parse information. Also PHP is designed to work easily with most SQL servers including the open source SQL server, MySQL.&lt;br /&gt;&lt;br /&gt;PHP code is placed in the body of HTML code.   It may be placed in HTML code as follows:&lt;/div&gt;&lt;p align="justify"&gt;The above example will output the quoted text on the HTML page where the PHP code is embedded.&lt;br /&gt;&lt;/p&gt;&lt;php echo="" this="" is="" a="" test="" of=""&gt;&lt;div align="justify"&gt;Many webservers support PHP out of the box although depending on the version, they may not support the latest version of PHP (Currently 4).  If using PHP on the web, it is wise to run the latest version since it has some security enhancements.  If you're just using PHP to learn on a local network using the latest PHP version is not as imperative.  For example the Apache webserver that comes with Redhat Linux version 6.1 supports PHP3.  Depending on how the webserver is setup, it may be required to name the HTML files that contain PHP code with an extension like ".php4".&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;h3&gt;Documentation&lt;/h3&gt;&lt;div align="justify"&gt;This manual is a brief synopsis of information as an aid to learning PHP.  It provides basic PHP information, then provide examples of some useful PHP functionality including sessions, cookie use, sending mail and using it with SQL.  It is not intended completely cover all aspects of PHP.  Also, it is assumed that the reader is familiar with HTML and languages similar in type to C or Perl.  Much PHP syntax is similar to the C programming language.  To supplement this document, the reader should refer to the documents page in the weblinks PHP section for available online and downloadable documentation about PHP.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;/php&gt;&lt;div style="text-align: justify;"&gt;&lt;php echo="" this="" is="" a="" test="" of=""&gt;&lt;p&gt;This document and the documentation at the &lt;a href="http://www.php.net/docs.php" target="_top"&gt;PHP.org Document Section&lt;/a&gt; should be all a reader needs to learn PHP.  Specifically the large downloadable PHP Manual which is in both PDF and HTML format is an excellent reference manual outlining the many PHP functions by category.&lt;/p&gt;&lt;/php&gt;&lt;br /&gt;&lt;php echo="" this="" is="" a="" test="" of=""&gt;&lt;/php&gt;&lt;/div&gt;&lt;php echo="" this="" is="" a="" test="" of=""&gt;&lt;strong&gt;PHP Syntax&lt;/strong&gt;&lt;br /&gt;&lt;p&gt;PHP statements end with a semicolon.&lt;br /&gt;&lt;/p&gt;PHP supports comments the same as C and C++  using the methods shown below:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;PHP Variables&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;PHP variable type is determined by the way in which it is used (context).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Variable names begin with a dollar sign, $, followed by a letter, then more letters or numbers.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;Supported variables include integers, floating point numbers, strings, arrays, and objects.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Predefined Variables&lt;/h4&gt;&lt;div align="justify"&gt;There are additional predefined PHP variables defined in a file called "php.ini".  Variables defined in HTML forms are available to the PHP file that the form is submitted to using the HTML form "action" attribute.  Also if the PHP document has been called using a HTML form, a variable named $submit is available and may be tested to see if it exists.  If it exists, an if statement may be used to display one set of HTML rather then the HTML that would be displayed if it does not exist.  The phpinfo() function may be used to get a list of predefined variables.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;h4&gt;Typecasting&lt;/h4&gt;Typecasting is performed with the type written in parenthesis as follows:&lt;br /&gt;&lt;br /&gt;&lt;p class="indent"&gt;$i = (int) $myrealvalue;&lt;br /&gt;&lt;/p&gt;Supported typecasts include (int), (array), (object), (string), (real), (double), and (float).&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;PHP Array Variables&lt;/h3&gt;PHP Array variables may be defined in the following manner:&lt;br /&gt;&lt;br /&gt;$tree = array("trunk", "branches", "leaves");&lt;br /&gt;&lt;br /&gt;In this case the value:&lt;br /&gt;&lt;p&gt;tree[0]&lt;br /&gt;&lt;/p&gt;evaluates to the string "trunk".  The statement:&lt;br /&gt;&lt;br /&gt;$tree[3]="nuts";&lt;br /&gt;&lt;br /&gt;&lt;p&gt;sets a fourth array value to "nuts".  In this way, the array, tree, may be dynamically expanded.&lt;br /&gt;&lt;/p&gt;An array can be created and expanded in the following manner.&lt;br /&gt;&lt;br /&gt;$car[ ]="body";&lt;br /&gt;&lt;br /&gt;$car[ ]="engine";&lt;br /&gt;&lt;br /&gt;$car[ ]="transmission";&lt;br /&gt;&lt;br /&gt;$car[ ]="tires";&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;String Concatenation&lt;/h3&gt;Strings can be added to each other or additional values may be added to a string using the append, "." operator as follows:&lt;br /&gt;&lt;br /&gt;echo "The value of my variable is: " . $myvariable;&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Operators&lt;/h3&gt;&lt;div align="justify"&gt;The math and logical operators are the same as the C programming language.  Variables may be pre-incremented or post incremented or decremented with commands like "++$a;" which does a pre increment.&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;&lt;a href="http://www.comptechdoc.org/independent/web/php/intro/index.html"&gt;read more&lt;/a&gt;&lt;/div&gt;&lt;/php&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1793839616362759558-6457640702614967106?l=bensoftwaresupport.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/6457640702614967106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/6457640702614967106'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/2009/08/php-introduction.html' title='PHP Introduction'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1793839616362759558.post-5435185241792507775</id><published>2009-08-03T09:28:00.000-07:00</published><updated>2009-08-03T09:41:50.816-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Trojan removal software'/><category scheme='http://www.blogger.com/atom/ns#' term='Trojan Software'/><title type='text'>What is the Top Trojan Removal Program?</title><content type='html'>&lt;div align="justify"&gt;If you are confused about what the top Trojan removal program is and do not even know where to start to ensure that you are not wasting your money, the information to follow should help you to head in the right direction.&lt;br /&gt;&lt;br /&gt;One key issue that always arises is whether or not Trojan viruses are the problem to start with. If your computer performance has declined, you are experiencing computer crashes and freezes, or if your PC has been acting in a strange way, you may have a virus on your system. Some of the follow symptoms are associated with Trojan viruses and could require the help of a Trojan removal program to eliminate: &lt;br /&gt;&lt;br /&gt;1. Websites you did not request are appearing.&lt;br /&gt;2. You are getting strange error messages and pop-up ads.&lt;br /&gt;3. Your web browser is very slow.&lt;br /&gt;4. Windows loads slowly.&lt;br /&gt;5. Strange software appears when you start up your PC.&lt;br /&gt;6. Your modem light is spastically blinking even when you are not online.&lt;br /&gt;7. The mouse is leaving a trail on your screen.&lt;br /&gt;8. Your favourites list has added some sites that you never placed there.&lt;br /&gt;9. Brand new toolbars are appearing in your web browser.&lt;br /&gt;10. Your homepage is hijacked and you end up on sites not requested.&lt;br /&gt;11. Your function buttons are reversed on your mouse.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.articlesbase.com/software-articles/what-is-the-top-trojan-removal-program-1092527.html"&gt;read more&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1793839616362759558-5435185241792507775?l=bensoftwaresupport.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/5435185241792507775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/5435185241792507775'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/2009/08/what-is-top-trojan-removal-program.html' title='What is the Top Trojan Removal Program?'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1793839616362759558.post-6917272701294303500</id><published>2009-08-02T09:25:00.000-07:00</published><updated>2009-08-02T09:38:53.302-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='software on memory card'/><category scheme='http://www.blogger.com/atom/ns#' term='software support'/><category scheme='http://www.blogger.com/atom/ns#' term='software data recovery'/><title type='text'>Data Recovery Software for Memory Cards</title><content type='html'>&lt;p align="justify"&gt;&lt;strong&gt;Data Doctor Recovery&lt;/strong&gt;  TM  is pioneer in developing windows data recovery software which offers economical and faster way of do it yourself recovery process. They are leading developers of professional and user interactive &lt;strong&gt;data recovery software&lt;/strong&gt; and have maintained outstanding records in the field of data recovery. Following are some of the remarkable features.  &lt;br /&gt;&lt;strong&gt;&lt;em&gt;Easy to use&lt;/em&gt;&lt;/strong&gt;:  Data Recovery Software for Memory Cards contains simple and well guided help manual. The Inbuilt instruction manual offers step by step assistance to the user and enables him to easily understand software functionality without having advance computer skill. &lt;/p&gt;&lt;p&gt;&lt;a href="http://www.articlesbase.com/data-recovery-articles/data-recovery-software-for-memory-cards-932758.html"&gt;read more..&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1793839616362759558-6917272701294303500?l=bensoftwaresupport.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/6917272701294303500'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1793839616362759558/posts/default/6917272701294303500'/><link rel='alternate' type='text/html' href='http://bensoftwaresupport.blogspot.com/2009/08/data-recovery-software-for-memory-cards.html' title='Data Recovery Software for Memory Cards'/><author><name>Benoy N Sreedhar</name><uri>http://www.blogger.com/profile/00903955031905839662</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
