Google's big October 29th product launches apparently outed

 A few days ago, Google sent out invitations to a press event to be held on October 29th in New York City. We noted that this event was happening on the same day as Microsoft's Windows Phone 8 press events in San Francisco and other parts of the world.

Now TheNextWeb.com reports it has information on all of the new product reveals that Google will announce at this October 29th media junket, and quite frankly it sounds pretty impressive, if all of this is true. The story says the information comes from an internal video shown to Google employees.

It's not a surprise to learn that Google is said to be revealing a 32 GB version of its previously released Nexus 7 tablet, made by Asus, at this event. The tablet will be available in both WiFi only and a WiFi/3G version, according to the story. It adds that Google will also reveal a 10 inch tablet, made by Samsung, that has the code name "Manta" but might be called the Nexus 10 when it is actually released.

The Manta will reportedly have a screen resolution of 2560x1600 and 300 PPI, compared to the current iPad which has "just" 264 PPI. The story also reports that Google will reveal the LG Nexus 4 smartphone at the event, with a 4.7 inch 1280x768 display, a quad-core 1.5 GHz Qualcomm Snapdragon processor, 2 GB of RAM and more.

Both the Manta tablet and the LG Nexus 4 will reportedly be running on Android 4.2, which among other new features will allow users to access Google Play downloaded content from a widget and a way for one tablet to be shared by several people who can then access their own emails and apps.
PHP Syntax

PHP Syntax

The PHP script is executed on the server, and the plain HTML result is sent back to the browser.

Basic PHP Syntax

A PHP script always starts with <?php and ends with ?>. A PHP script can be placed anywhere in the document.

On servers with shorthand-support, you can start a PHP script with <? and end with ?>.

For maximum compatibility, we recommend that you use the standard form (<?php) rather than the shorthand form.

<?php
?>


A PHP file must have a .php extension.

A PHP file normally contains HTML tags, and some PHP scripting code.

Below, we have an example of a simple PHP script that sends the text "Hello World" back to the browser:

<html>
<body>

<?php
echo "Hello World";
?>

</body>
</html>


Each code line in PHP must end with a semicolon. The semicolon is a separator and is used to distinguish one set of instructions from another.

There are two basic statements to output text with PHP: echo and print.

In the example above we have used the echo statement to output the text "Hello World".
Comments in PHP

In PHP, we use // to make a one-line comment or /* and */ to make a comment block:

<html>
<body>

<?php
//This is a comment

/*
This is
a comment
block
*/
?>

</body>
</html>
PHP Introduction

PHP Introduction

PHP is a server-side scripting language.

What You Should Already Know

Before you continue you should have a basic understanding of the following:

    HTML/XHTML
    JavaScript

If you want to study these subjects first.

What is PHP?

    PHP stands for PHP: Hypertext Preprocessor
    PHP is a server-side scripting language, like ASP
    PHP scripts are executed on the server
    PHP supports many databases (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc.)
    PHP is an open source software
    PHP is free to download and use

What is a PHP File?

    PHP files can contain text, HTML tags and scripts
    PHP files are returned to the browser as plain HTML
    PHP files have a file extension of ".php", ".php3", or ".phtml"

What is MySQL?

    MySQL is a database server
    MySQL is ideal for both small and large applications
    MySQL supports standard SQL
    MySQL compiles on a number of platforms
    MySQL is free to download and use

PHP + MySQL

    PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a Unix platform)

Why PHP?

    PHP runs on different platforms (Windows, Linux, Unix, etc.)
    PHP is compatible with almost all servers used today (Apache, IIS, etc.)
    PHP is FREE to download from the official PHP resource: www.php.net
    PHP is easy to learn and runs efficiently on the server side

Where to Start?

To get access to a web server with PHP support, you can:

    Install Apache (or IIS) on your own server, install PHP, and MySQL
    Or find a web hosting plan with PHP and MySQL support
How To Write Your First PHP Script

How To Write Your First PHP Script

You want to learn how to write PHP scripts but don’t know where to start from? In this tutorial I’ll show you all what you’ll need to write your first PHP script. It is a lot easier to get started with than you might think.

Why Use PHP?

PHP is a powerful tool for making dynamic and interactive Web pages.. By learning just a few simple functions, you are able to do a lot of things with your website. And once you know the basics, there are a wealth of scripts available on the internet that you only need to tweak a little to fit your needs

What you’ll need?
To start writing PHP scripts, you need access to a Web server running PHP.There are 2 options: to run php script on you web host or to run PHP script on your own computer .I recommend you second option to run PHP scripts locally, download XAMP and Edit+.

    Run php script on you web host, if you have already your web host just upload php scripts on web server via FTP or file manager, if not then check this link Best Free Web Hosting, there you’ll find list of the best free web hosting, by my opinion. I recommend 000WebHost , all you need to do is register and you are ready to write you php scripts. The advantage of this approach is that you don’t have to install anything; the disadvantage is that it’s slower to write and test your script
   
   Run PHP script on your own computer. There are many way to run php scripts locally , by my opinion the easiest way is to install a complete package like XAMPP. XAMPP is a great piece of software for a development machine, I highly recommend it. Be sure to have not start up when Windows starts, you can always turn it on manually when you need it. Here are detailed instruction How To Install XAMPP
  
  Download text editor. To write PHP code you’ll need text editor, I recommend to download Edit+

First PHP Script- Hello World.php

Every php script begins <?php with and ends with ?> . Below is example of simplest Hello World php script. PHP command echo is a means of outputting text to the web browser.

    <?php
    echo "Hello World";
    ?>



How to upload php scripts on XAMPP?

Install XAMPP and launch it. Open text editor as Edit + type your code and save as filename.php.

Go to folder where you installed XAMMP, default it’s C:/xampp , there you’ll find folder called htdocs , save you script myFirstScript.php to htdocs

Launch your web browser and type http://localhost/myFirstScript.php

Trick To Hide Text In Notepad



A Superb Trick To Hide Text In Notepad


Here is a small trick to hide text inside your windows default text editor

Steps to hide text in a Notepad

1. Open your command prompt Start–>Run and Type cmd
2. Type cd.. to move to C:\> drive or Type cd desktop to move to your desktop.
3. Type the below code in your command prompt
     notepad filename.txt:hidden
4. Write some data and save(Ctrl+S) the file.
5. Browse to the file location and Open filename.txt you cannot see any data in the file.
6. To retrieve the hidden data open command prompt and type the same command.
    notepad filename.txt:hidden