<?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-4454604480319291668</id><updated>2024-09-11T09:43:06.375-07:00</updated><category term="PHP TUTORIALS"/><category term="INTRODUCTION"/><title type='text'>Toxic Scripts:php,javascript,CGI and PERL,ASP,CFML,Ajax.Get and submit scripts here.</title><subtitle type='html'>Toxic scripts,is one of the few blogs providing useful and powerful programming scripts and codes such as&#xa;Php,ASP,ASP.NET,CGI and PERL,JAVASCRIPT,JAVA,CFML,RUBY on RAILS,XML,PYTHON,C and C++,FLASH,&#xa;AJAX and many more.You can also submit,download scripts and take part in our practical assignments.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4454604480319291668.post-3265759336934577124</id><published>2008-02-04T01:37:00.000-08:00</published><updated>2008-02-04T09:33:33.742-08:00</updated><title type='text'>ARRAYS</title><content type='html'>Good Morning Everyone.Am sure you have been practicing on our last tutorial.We talked about; -Installing Necessary applications or softwares to make our lesson easier.Those software are PHP interpreter,MYSQL Database and Apache server. Today,we will be looking at ARRAYS. Arrays are group of items sharing the same characteristics such as CAR MODELS,BASEBALL TEAM and TYPES OF HOUSES.Basically its used to group many variables and stored in to another variable.&lt;br /&gt;&lt;br /&gt;CREATING ARRAYS&lt;br /&gt;&lt;br /&gt;Arrays can be created like this&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;$names[0]=&quot;Peter&quot;; // Numerical key&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;$names = array (0 =&gt; &quot;julie&quot;, 1 =&gt; &quot;peter&quot;,2 =&gt; &quot;mark&quot;); //Numerical key &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;$names[&quot;Friend&quot;]=&quot;Sammy&quot;; //words as index key. &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;You can see from the above examples the various ways arrays are created.The first one has a numerical key which can be referenced like this&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;strong&gt;echo $names[0];&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;While,the second one can be referenced, the same way as the first.But the only difference between the first two and the third one,that is the one with a word as its key,is that instead of enclosing 0 in the bracket,we gave it a name which is Friend,so we call it like this&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;strong&gt;echo $names[&quot;Friend&quot;];&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;As easy as ABC,if you run this,you will get Sammy as your result..&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;ARRAY()&lt;/span&gt;&lt;br /&gt;&lt;p&gt;We can also create arrays with this function.&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;&lt;strong&gt;$languages=array(&quot;English&quot;,&quot;Frenceh&quot;,&quot;Spanish&quot;);&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;Alternatively,This function can be used to create Assoiciative arrays.An associative array bears a relationship with the value itself.Now lets say we want to specifie relationships to the elements in our previous example.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;$names = array (&quot;person1&quot;=&gt; &quot;julie&quot;,&quot;person2&quot; =&gt; &quot;peter&quot;,&quot;person3&quot; =&gt; &quot;mark&quot;);&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;Now you see the difference,we removed the number indexes and changed them to strings.Therefore,the key to julie is &quot;sister&quot;.Te reference it is so easy.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;/span&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;echo $names[&quot;person1&quot;];. &quot;is&quot;. $names[&quot;person2&quot;]; .&quot;sister and&quot; . $names[&quot;person3&quot;].&quot;bestfriend&quot;;&lt;/span&gt;&lt;/strong&gt;&lt;span style=&quot;font-family:arial;&quot;&gt; &lt;/span&gt;&lt;/p&gt;RESULT:Julie is peter sister and mark bestfriend&lt;br /&gt;&lt;br /&gt;Now,isnt that easy and interesting?Also,it is very possible to create and array inside an array and it is called a multidimensional Array.For example,Lets say we decided to include the sex,ages of peter,julie and mark in our example,we will do it this way&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;$names=array(&quot;person1&quot;=&gt;array(&quot;Age&quot;=&gt;&quot;22&quot;,&quot;Sex&quot;=&gt;&quot;F&quot;),&quot;person2&quot;=&gt;array (&quot;Age&quot;=&gt;&quot;27&quot;,&quot;Sex&quot;=&gt;&quot;M &quot;),&quot;person3&quot;=&gt;array(&quot;Age&quot;=&gt;&quot;25&quot;,&quot;Sex&quot;=&gt;&quot;M&quot;));&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:85%;color:#003300;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:85%;color:#003300;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-size:85%;color:#003300;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;font-size:0;&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;What we did here is to create another aray in an array,so this is how we reference a multi-dimensional array.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;strong&gt;&lt;span style=&quot;font-family:arial;font-size:85%;&quot;&gt;&lt;div align=&quot;justify&quot;&gt;&lt;br /&gt;&lt;br /&gt;                            echo $names[&quot;person2&quot;][&quot;Age&quot;];                     #Result 27&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family:Arial;font-size:85%;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;span style=&quot;color:#003300;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;This will display 27 as result.There are so many other ways of outputing array elements.PHP as a large language contains some functions which we will learn.Hope you are having fun!cause i am.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div align=&quot;justify&quot;&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;www.toxicscripts.blogspot.com----Visit now&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/3265759336934577124/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4454604480319291668/3265759336934577124' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/3265759336934577124'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/3265759336934577124'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/2008/02/arrays.html' title='ARRAYS'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4454604480319291668.post-8244195977018698618</id><published>2008-01-31T07:07:00.000-08:00</published><updated>2008-01-31T07:37:41.672-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="PHP TUTORIALS"/><title type='text'>VARIABLE</title><content type='html'>&lt;script src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot; type=&quot;text/javascript&quot;&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;VARIABLES&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A variable is the name or the object that we assign strings,integers,floats etc to.Php variables always starts with the dollar sign($).Onlike other programming language,you do not need to define the data type.A valid php variable must start with the dollar sign and the name must not start with a number or any other special character apart from alphabets and the underscore sign(_).You can define php variables like this.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;VALID:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;/span&gt;&lt;br /&gt;$variablename=&quot;john&quot;;&lt;br /&gt;$_variablename=&quot;john&quot;;&lt;br /&gt;INVALID:&lt;br /&gt;variablename=&quot;john&quot;;&lt;br /&gt;_variablename=&quot;john&quot;;&lt;br /&gt;8variablename=&quot;john&quot;;&lt;br /&gt;$variablename=&quot;john&quot;;&lt;br /&gt;$8variablename=&quot;john&quot;;&lt;br /&gt;Variables can be of interger values,strings,floats etc.A string must be surrounded with the &quot; &quot; sign like in examples above but this doesnt apply to intergers.Also,all variables and statements must end (;) sign.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;OPERATORS&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;br /&gt;&lt;/span&gt;Php also have operators to perform arithmetic and logical statements.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;em&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;Operators&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;&lt;/span&gt;&lt;/em&gt;&lt;br /&gt;+ -Addition&lt;br /&gt;- -Subtration&lt;br /&gt;* -Multiplication&lt;br /&gt;/ -Division&lt;br /&gt;% -Modulus&lt;br /&gt;&lt;br /&gt;We all know what they are because we use them everyday of our lives.Note, the modulus operator is quite different.This operator divides two numbers and if there is a remainder,it returs it.Below are examples of this operators&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Addition example&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=2;&lt;br /&gt;y=x+4;&lt;br /&gt;&lt;br /&gt;ANS:6&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Subtraction example&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=2;&lt;br /&gt;y=5;&lt;br /&gt;z=y-x;&lt;br /&gt;&lt;br /&gt;ANS:3&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Multiplication example&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=4;&lt;br /&gt;x*5;&lt;br /&gt;&lt;br /&gt;ANS:20&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Division example&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=10;&lt;br /&gt;x=10/2;&lt;br /&gt;&lt;br /&gt;ANS:5&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Modulus (division remainder)&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=4;&lt;br /&gt;x%3&lt;br /&gt;&lt;br /&gt;ANS:1&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Increment example(++)&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=5&lt;br /&gt;x++&lt;br /&gt;&lt;br /&gt;ANS x=6&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;em&gt;Decrement example(++)&lt;/em&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;x=5&lt;br /&gt;x--&lt;br /&gt;&lt;br /&gt;ANS:x=4&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;WE WILL STOP HER FOR TODAY SO I CAN STUDY THE RESPONSE BE FOR MOVING ON.IF YOU LIKE IT,DONT HESITATE TO LET ME KNOW.&lt;div class=&quot;blogger-post-footer&quot;&gt;www.toxicscripts.blogspot.com----Visit now&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/8244195977018698618/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4454604480319291668/8244195977018698618' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/8244195977018698618'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/8244195977018698618'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/2008/01/variable.html' title='VARIABLE'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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-4454604480319291668.post-8776458252412054940</id><published>2008-01-31T05:22:00.000-08:00</published><updated>2008-01-31T07:50:24.896-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="PHP TUTORIALS"/><title type='text'>INSTALLING PHP</title><content type='html'>&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--&lt;br /&gt;google_ad_client = &quot;pub-1050460665349716&quot;;&lt;br /&gt;/* 336x280, created 1/31/08 */&lt;br /&gt;google_ad_slot = &quot;6569599786&quot;;&lt;br /&gt;google_ad_width = 336;&lt;br /&gt;google_ad_height = 280;&lt;br /&gt;//--&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;script type=&quot;text/javascript&quot;&lt;br /&gt;src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;INSTALLING PHP&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi13ekjNm4xH1eDZ3n_HMYK4h7np3wC65goqN-OTe7WPBBlxkQ-vKSaqeHJnff0QCD6RdEwo56-xhJj-NEhQtw8qUg-bbD5dZ1SC3Kkdm1fqSonSy4Zwl0PWGa7ezEtjbCxRbC-l-_YbrQ/s1600-h/code1.gif&quot;&gt;&lt;/a&gt;&lt;br /&gt;Installing php for the first time may seem like a very difficult task for a beginner,which is a very normal situation.&lt;br /&gt;Because,you would have to install so many softwares on your server to be able to perform well with PHP.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Firstly,you will need to install PHP interpreter itself,this is what reads the PHP scripts and processes them and then provides results.&lt;br /&gt;&lt;br /&gt;Secondly,you will need to download a webserver to work with php,this is used to interact and process users request.There are various types which i have metioned above.But the most used is the Apache server.After this you will need to set the PHP configuration file to work with the webserver correctly.&lt;br /&gt;&lt;br /&gt;Now,lastly,you need a database for PHP to work with,this is where data from users forms,users information are kept and can be sorted for if need arises.For this tutorial we will be using MYSQL.&lt;br /&gt;&lt;br /&gt;Basically,a complete beginner can install this packages easily with a third party software like WAMP or XAMPP.&lt;br /&gt;This packages contain all software required to keep start your journey with php,you do not have to worry about the configuration aspect because it will be handled by the all-in-one package.The good thing is that this packages are FREE! and the bad news is...you dont have full control over your system,but as a beginner,who cares.you can download it here Install &lt;a href=&quot;http://www.blogger.com/www.wampserver.com/en/download.php&quot;&gt;WAMP &lt;/a&gt;or Install &lt;a href=&quot;http://www.blogger.com/sourceforge.net/xampp/&quot;&gt;XAMPP&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;NOW LETS ATTACK PHP &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color:#3366ff;&quot;&gt;&lt;br /&gt;&lt;/span&gt;-I assume you have downloaded and have PHP and its server and database working.&lt;br /&gt;to findout,&lt;br /&gt;open your favorite editor,for windows open the notepad and type or copy this in there.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i bgcolor=&quot;navy&quot;&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;?php&lt;br /&gt;phpinfo();&lt;br /&gt;&lt;br /&gt;?&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;Save it as info.php to your web-server document and open your browser and navigate it to where you saved it.For wamp,you will find it in the dafault folder www.If all settings where done right,you should have a long list of information about our friend php.This means php is set for work.&lt;div class=&quot;blogger-post-footer&quot;&gt;www.toxicscripts.blogspot.com----Visit now&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/8776458252412054940/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4454604480319291668/8776458252412054940' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/8776458252412054940'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/8776458252412054940'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/2008/01/installing-php-installing-php-for-first.html' title='INSTALLING PHP'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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-4454604480319291668.post-3903281637133024784</id><published>2008-01-31T04:57:00.000-08:00</published><updated>2008-01-31T07:05:39.262-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="PHP TUTORIALS"/><title type='text'>PHP TUTORIAL FOR THE ABSOLUTE BEGINNER</title><content type='html'>&lt;script src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot; type=&quot;text/javascript&quot;&gt;&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;Name:&lt;b&gt;&lt;span style=&quot;color:#000099;&quot;&gt;PHP TUTORIAL FOR THE ABSOLUTE BEGINNER&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;Difficulty:&lt;b&gt;&lt;span style=&quot;color:#000099;&quot;&gt;BEGINNER&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=&quot;font-size:130%;color:#000066;&quot;&gt;ABOUT PHP&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;PHP is a widely-used and a general purpose scripting language that is capable of&lt;br /&gt;developing first-class and dynamic websites.It is very easy to use or work with as we can embed it into&lt;br /&gt;our HTML codes.Php was designed to make ordinary html codes to perform more.Although php is similar to languages like c and perl.&lt;br /&gt;&lt;br /&gt;PHP was first invented in 1995 and its first version which was php3 was release to all in 1998.And now we have PHP5 and soon PHP6 will be released with even more better function and capability.&lt;br /&gt;Php can be run on operating systems like Windows, Linux, Unix, OS&lt;br /&gt;&lt;br /&gt;Also,php supports alot of webservers which i will mention a few buth you can get the full documentation on their website &lt;a href=&quot;http://www.php.net/docs.php&quot;&gt;http://www.php.net/docs.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;supported webservers:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;br /&gt;-Apache {one of the most utilized servers}&lt;br /&gt;-Microsoft IIS&lt;br /&gt;-Personal web server&lt;br /&gt;-omniHTTPd&lt;br /&gt;-and many more&lt;br /&gt;&lt;br /&gt;PHP also works with various database to store information gotten from a webpage which we will discuss later.&lt;br /&gt;With php,you can also create a login and signup page which we see on almost all sites on the web.below are some of the supported servers&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;supported Database:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;br /&gt;-Mysql {this is the most used webserver on the web}&lt;br /&gt;-MSSQL(microsoft SQL)&lt;br /&gt;-Postgre&lt;br /&gt;-Oracle&lt;br /&gt;-many more&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color:#3333ff;&quot;&gt;What php can Do:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;-With this great language,you can develope just anything that runs with the internet such as a message board (eg like smf,phbb,etc),you can make a video site like youtube,a gallery like flickr.&lt;br /&gt;-Thats not all that can be done,you can also develope your own yahoo,hotmail and even google.But before you&lt;br /&gt;reach that stage lets first create a helloworld! program.&lt;br /&gt;&lt;br /&gt;Next you will know how to install PHP.&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;left&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;&quot;&gt;NEXT:INSTALLING PHP&lt;/span&gt; &lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;www.toxicscripts.blogspot.com----Visit now&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/3903281637133024784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4454604480319291668/3903281637133024784' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/3903281637133024784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/3903281637133024784'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/2008/01/php-tutorial-for-absolute-beginner.html' title='PHP TUTORIAL FOR THE ABSOLUTE BEGINNER'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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-4454604480319291668.post-2530656985133644276</id><published>2008-01-30T11:52:00.000-08:00</published><updated>2008-01-31T01:13:07.833-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="INTRODUCTION"/><title type='text'>WELCOME TO TOXICSCRIPTS</title><content type='html'>Welcome to &lt;strong&gt;Toxicscripts&lt;/strong&gt;.As this is the first post of this New blog about programming both web and desktop,i will like to introduce myself.My name is kennedy Idialu and am from Nigeria,for more info about me,you can check the profile.Ok my main reason for starting a blog like this is that i have seen the power of programmin and to be precised,i love web programming.&lt;br /&gt;&lt;br /&gt;Although,i am a newbie(NEW BEGINNER),who wants to learn.I put this on air because i wanted my own community of both skilled and new programmers so that i can ask qestions and larn freely from everyone and also do stuffs with people.&lt;br /&gt;&lt;br /&gt;Now,what i plan to do here,is to bring everyone here to learn,teach and give out usefull scripts.so what we will be ding here is basically &lt;strong&gt;SUBMISSION&lt;/strong&gt; of scripts,&lt;strong&gt;TUTORIALS&lt;/strong&gt; any language,Free &lt;strong&gt;DOWNLOAD&lt;/strong&gt; of scripts,&lt;strong&gt;ASSIGNMENT PROJECTS&lt;/strong&gt; and many more.&lt;br /&gt;&lt;br /&gt;You can see with the above statements that this place is a place for learnng nd giving so feel free to pop in here and submit something or learn something.We may not have anything to give but we will make sure you are tagged in our HONOURS list with your wensite and othe info.&lt;br /&gt;&lt;br /&gt;You can send in tutorials and complete scripts in here mailing me at &lt;strong&gt;toxicscripts@gmail.com&lt;/strong&gt; and then i will paste it in here and we will learn and talk about it together using our every own comments section.&lt;br /&gt;&lt;br /&gt;We do not have a registration section here but we you can become one of our members by sending me a mail or by stating it in any comment section,but this is not compulsory.&lt;br /&gt;&lt;br /&gt;Ok!All said and done let us begin&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;(if you like my opening speech,encourage me with your comments)&lt;/strong&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;www.toxicscripts.blogspot.com----Visit now&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://toxicscripts.blogspot.com/feeds/2530656985133644276/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4454604480319291668/2530656985133644276' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/2530656985133644276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4454604480319291668/posts/default/2530656985133644276'/><link rel='alternate' type='text/html' href='http://toxicscripts.blogspot.com/2008/01/welcome-to-acidscrip.html' title='WELCOME TO TOXICSCRIPTS'/><author><name>Anonymous</name><uri>http://www.blogger.com/profile/12784979625668446603</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></feed>