Skip to main content

Posts

Advanced Technological Institute, Sri Lanka (SLIATE)

Advanced Technological Institute, Sri Lanka (SLIATE). Sri Lanka Institute of Advanced Technoligical Education. Naiwala 

What is Google Adwords Certification Program

What is Google Adwords Certification Program? Google Certification Program is a program through which an individual can earn one of the most valuable status of being a google adwords qualified individual or a company can earn a google adwords certified partner status. Google Adwords Certification wiil show your knowledge, skills and proficiency in google adwords latest tools and it will show that an individual or a company know how to design, implement and manage an adwords campaign and they will use best practices and techniques and follow google adwords policies and guidelines which is one of the most important thing in eyes of Google. Google has launched two types of certification program for Adwords: Individual Qualification. Company Certification. Individual Qualification Individuals who want to add more value to there resume or an individual who want learn google adwords and get certified can study and get Google Adwords Qualified Individual also known as Google Adwo...

Testing variables with PHP

First, we'll take a look at how to display what's in your variables. We're going to be viewing our results on a web page. So see if you can get this script working first, because it's the one we'll be building on. Using a text editor like Notepad, or your PHP software, type the following. (You can copy and paste it, if you prefer. But you learn more by typing it out yourself - it doesn't really sink in unless you're making mistakes!) <html> <head> <title>Variables - Some Practice</title> </head> <body> <?php print("It Worked!"); ?> </body> </html> Software Developer  Ishan When you've finished typing it all, save the page as variables.php. Then Run the script. Remember: when you're saving your work, save it to the WWW folder, as explained here. To run the page, start your browser up and type this in the address bar:  http://localhost/variables.php If you'v...

String Variable in PHP

$coats1 = "Winter Coats"; Again, our variable name starts with a dollar sign ($). We've then given it the name coats1. The equals sign follows the variable name. After the equals sign, however, we have direct text - Winter Coats. Then you can also put text into your variables. Assume you want to know something about the coats you own. Are they Winter coats? Jackets? Summer coats? You decide to catalogue this, as well. You can put direct text into your variables. You do it in a similar way to storing numbers: But notice the double quotation marks around our text. If you don't surround your direct text with quotation marks, then you'll get errors. You can, however, use single quotes instead of double quotes. So you can do this: $coats1 = 'Winter Coats'; But you can't do this: $coats1 = 'Winter Coats"; In the above line, we've started with a single quote and ended with a double quote. This will get you an e...

Variables in PHP

A variable is a storage area. You put things into your storage areas (variables) so that you can use and manipulate them in your programmers. Things you'll want to store are numbers and text. Variable in PHP You can't begin their names with an underscore (_), or a number. But most other characters are fine. Example 1 : A person is going to be collecting the books. But we can specify how many books he will be collecting. If you have five books   to give him, then you do the "Answer"   is like this: Answer is = 5 Books Ok, now going to the subject …   you're studying   PHP, so there's something missing. Two things, actually. First, your people (variables) need a dollar sign at the beginning (people are like that). So it would be this: $ books = 10 Examples 2 : try to do $books=10+20+30; What is your answer : answer must be 60 Example 3 : Test your mind Find the total books ? $english_book=10; ...

PHP: Hypertext Preprocessor Introduction

The fasting moving wold every programmer know .php so this post discuss about initial steps..  PHP: Hypertext Preprocessor Introduction What is PHP?  PHP is an acronym for "PHP Hypertext Preprocessor"  PHP is a widely-used, open source scripting language  PHP scripts are executed on the server  PHP costs nothing, it is free to download and use  What is a PHP File?   PHP files can contain text, HTML, CSS, JavaScript, and PHP code  PHP code are executed on the server, and the result is returned to the browser as plain HTML  PHP files have extension ".php"  What Can PHP Do?  Software Engineer  Wasura PHP can generate dynamic page content  PHP can create, open, read, write, and close files on the server  PHP can collect form data  PHP can send and receive cookies  PHP can add, delete, modify data in your database  PHP can restrict users to access some pages on your webs...