Saturday, February 20, 2010

Rare Collection................. Einstein's

Rare Collection................. Einstein's father
www.FunAndFunOnly.org
Einstein's mother
www.FunAndFunOnly.org
House of Einstein
www.FunAndFunOnly.org
Einstein's childhood photo
www.FunAndFunOnly.org

School class photograph in
Munich , 1889. Einstein is in the front row, second from right. He did well only in mathematics and in Latin (whose logic he admired).
Was Einstein's Brain Different?
www.FunAndFunOnly.org
Of course it was-people's brains are as different as their faces. In his lifetime many wondered if there was anything especially different in Einstein's. He insisted that on his death his brain be made available for research. When Einstein died in 1955, pathologist Thomas Harvey quickly preserved the brain and made samples and sections. He reported that he could see nothing unusual. The variations were within the range of normal human variations. There the matter rested until 1999. Inspecting samples that Harvey had carefully preserved, Sandra F. Witelson and colleagues discovered that Einstein's brain lacked a particular small wrinkle (the parietal operculum) that most people have. Perhaps in compensation, other regions on each side were a bit enlarged-the inferior parietal lobes. These regions are known to have something to do with visual imagery and mathematical thinking. Thus Einstein was apparently better equipped than most people for a certain type of thinking. Yet others of his day were probably at least as well equipped-Henri Poincaré and David Hilbert, for example, were formidable visual and mathematical thinkers, both were on the trail of relativity, yet Einstein got far ahead of them. What he did with his brain depended on the nurturing of family and friends, a solid German and Swiss education, and his own bold personality.


A late bloomer:
Even at the age of nine Einstein spoke hesitantly, and his parents feared that he was below average intelligence. Did he have a learning or personality disability (such as "Asperger's syndrome," a mild form of autism)? There is not enough historical evidence to say. Probably Albert was simply a thoughtful and somewhat shy child. If he had some difficulties in school, the problem was probably resistance to the authoritarian German teachers, perhaps compounded by the awkward situation of a Jewish boy in a Catholic school.

Einstein in the Bern patent office

www.FunAndFunOnly.org


Einstein when his light bending theory conformed

www.FunAndFunOnly.org


Einstein in Berlin with political figures
www.FunAndFunOnly.org


Einstein in a
Berlin synagogue in 1930, playing his violin for a charity concert.
www.FunAndFunOnly.org


The Solvay Congress of 1927

www.FunAndFunOnly.org


E = MC^2

www.FunAndFunOnly.org


www.FunAndFunOnly.org


POSTWAR SIGNING
www.FunAndFunOnly.org


Einstein in his study in his home in Berlin, 1919.
www.FunAndFunOnly.org
www.FunAndFunOnly.org
www.FunAndFunOnly.org
Einstein at his home in Princeton, New Jersey
www.FunAndFunOnly.org

signature of the legend
www.FunAndFunOnly.org

Sunday, February 7, 2010

How to Create a Search Feature with PHP and MySQL

Developing a robust, interactive and engaging Web site involves many different avenues, such as interactive pop-out menu’s using dynamic JavaScript, Cascading Style Sheets (CSS), complex maps that allows visitors to rollover individual sections for detailed information, forms designed and formatted with CSS and are programmed to collect and send visitor feedback to a specified recipient. Other features could include: database driven pages that display a current member directory, a customized blog section that enables administrators to manage postings and allow random users in coordination with CAPTCHA techniques to post remarks to an article. Arguably, one of the most popular features of any database driven site is a searchable form feature that allows anyone to search for current staff members of an organization and find additional information, such as their email address or phone number.
In this article, you'll learn how to create a searchable form feature that will query a database table and display current staff member information. During the analysis you'll learn how to do the following: create a database table that will hold current staff listings, create a search form and use PHP, in coordination with Structured Query Language (SQL) to capture information entered by the visitor and append the information to display the results we want to show. Additionally, you'll learn about design patterns with the searchable form including security through code to ensure that only certain input is entered before performing operations on your database table and ways to pass state information through the address bar to display additional information about staff members.
Before we begin, you'll need to download the project files.

What You'll Need

In order to complete this article, you'll need the following tools and technologies:
  • One My SQL database
  • PHP support
  • A text editor

Creating Our Database

If you're unsure how to create a database through your host, please contact your system administrator for further information. Once you've created a database, you'll need a way to connect to it, create a table, and enter data for appropriate entities. One popular database administration tool for My SQL is PHP My Admin, or one that I'm particular fond of is SQLyog, which currently supports a free version (Community Edition) which is sufficient for the purposes of this article.

Creating Our Table

Our table needs to be created with the following columns and their corresponding data types and lengths:
Column Name Data Type Length Null or Not Null Primary key? Auto Increment
ID INT 1 Not Null Yes Yes
FirstName Varchar 50 Not Null No No
LastName Varchar 50 Not Null No No
Email Varchar 50 Not Null No No
PhoneNumber Varchar 15 Not Null No No
While an in-depth analysis of database design is beyond the scope of this article, let's briefly discuss the concepts of columns, data types and lengths.  A database table is composed of columns and rows, much like an Excel spread sheet. A column gives us a unique way to identify a certain entity, such as a first name. Data types are merely what type of data the column stores, such as a number, variable characters, date, time, etc. Lengths allocate a specified amount of memory (storage) to the table column. In our case, we're using variable characters that allow more flexibility. In other words, if the first or last name doesn't occupy exactly 50 units of data in our column, only that which is occupied will be allocated and stored. Furthermore, there should be no null (empty) entities for any staff members. Lastly, it should be noted that the reason our first row is highlighted in yellow is to identify that the ID column is our primary key. A primary key in database design ensures that each record is guaranteed to be unique. This column is also set to auto increment, ensuring that each record has a unique number assigned to it by the database engine.

Enter Staff Members into the table

Once you've created the columns for your database table, proceed to fill your columns with data. Six records should suffice for the purposes of this article. A replica of mine is below:
Column ID FirstName LastName Email PhoneNumber
2 Ryan Butler ryanbutler@domain.com 417-854-8547
3 Brent Callahan brentcallahan@domain.com 417-854-6587

Create the Form

In order to create the search form, you'll need to open a text editor of your choice. One that is free is PSPad. You can use any text editor you want; though it's recommended to choose one that has syntax highlighting to make PHP debugging and programming a bit easier. When creating the search form page, make sure to save it with a .php extension, otherwise, the PHP code will not execute. Once the form is saved, begin with the following markup:


1> 
2<html> 
3  <head> 
4    <meta  http-equiv="Content-Type" content="text/html;  charset=iso-8859-1"
5    <title>Search  Contactstitle> 
6  head> 
7  <p><body
8    <h3>Search  Contacts Detailsh3> 
9    <p>You  may search either by first or last namep> 
10    <form  method="post" action="search.php?go"  id="searchform"
11      <input  type="text" name="name"
12      <input  type="submit" name="submit" value="Search"
13    form> 
14  body> 
15html> 

view plain | print | ?
If you're familiar with HTML, everything should look familiar until you reach the opening form tag. Inside the opening form tag, the key line of code is the action attribute. We set the action of the form to the name of our file and then append on a query string of “go”. We'll discuss why this is important in the next section (search_start.php).

Check to See if the Criteria Has Been Met

At this point, it's wise to understand how the initial search functionality will work. When a visitor enters a first or last name and then presses the submit button, the form will post back to itself and append a query string of "go" on the end. At this point, we'll check the address bar for a query string of go and if it exists, we'll perform additional programming logic to make applicable staff members to appear. Before we perform database operations or information is displayed back to the visitor, we need to verify three things: (1) Has the form been submitted, (2) Does the query string contain a value of go, and (3) Does the search criteria entered only contain a capital or lower case letter? If none of these is true, then no operations are needed. First, let's add a PHP code block right below the closing tag:


1
2
3//do  something here in code 
4?> 
5
6

view plain | print | ?
First, we start a PHP code block:

Followed by a closing PHP code block:

?> 
Any PHP code inside this area will be executed by the server. Moving on, we check to see if the form has been submitted:


1
2  if(isset($_POST['submit'])){ 
3  //do  something here in code 
4  } 
5  else
6  echo  "Please enter a search query
"
7  } 
8?> 

view plain | print | ?
We use the built-in function isset, which is a Boolean check and pass in the super global array $_POST value of submit. A Boolean value in programming is a true/false value. Therefore, if the function returns true, then the form has been submitted and we need to do additional programming logic. If the function returns false, we display an error message. If you haven't saved your file yet, now would be a good time to do so (search_submit.php).
Next, we need to check whether the query string has a value of go, which is achieved by using this code:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  else
5  echo  "Please enter a search query
"
6  } 
7  } 
8  } 
9?> 

view plain | print | ?
We simply nest another conditional logic statement inside our original, except this time, we use the super global array name of $_GET, with a parameter of "go" to check our address bar for this value. Save your file (search_go.php).
Finally, we need to ensure that visitors are only allowed to enter a capital or lower case letter as the first character in our search field. Why this is done is explained in the SQL injection section at the end of the article. We also need a way to collect the search criteria entered by the visitor. The best way to check visitor input, and really the only way, is through a regular expression, which is shown below:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  if(preg_match("^/[A-Za-z]+/"$_POST['name'])){ 
5   $name=$_POST['name']; 
6  } 
7  } 
8  else
9  echo  "Please enter a search query
"
10  } 
11}?> 

view plain | print | ?
Again, as before, we nest another conditional logic statement inside our original two. This time, we use a regular expression to check our input. We use the built-in preg_match function along with two parameters, which is the pattern to match, in our case, at least one capital or lowercase letter, followed by the name of our form field we want to check against, in our case, name. Lastly, in order to collect the search criteria entered by the visitor, we create a variable called name by using the dollar sign ($) in PHP and assign it the POST value of name from our form, which is used in conjunction with our SQL query, seen later. At this point, even though our form won't return a result set, we've ensured that: (1) The form has been submitted, (2) The query string has a value of go, and (3) The visitor has entered a capital or lowercase letter as the first character before any database or SQL operations are allowed to continue. Save your file (search_expression.php).

Connect, Select, Query and Return Result Set from Our Database Table

In order to return a result set from our database table, we need to first connect to our database server. We use the following code:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  if(preg_match("/[A-Z  | a-z]+/"$_POST['name'])){ 
5  $name=$_POST['name']; 
6  //connect  to the database 
7  $db=mysql_connect ("servername",  """"or die ('I cannot connect  to the database because: ' . mysql_error()); 
8  else
9  echo  "Please enter a search query
"
10  } 
11  } 
12}?> 

view plain | print | ?
As you'll notice, we create a variable called db, and assign it to My SQL's built-in mysql_connect function which takes three parameters: your database server, which if you're developing locally, would simply be "localhost," followed by your user name and password. After this, we call a built-in function in PHP, die, which will stop further execution of the code if it cannot connect to the database, and lastly, append error information by calling My SQL's built-in function, mysql_error which will hopefully give us some insight as to why we're not able to connect. Save your file (search_connectdb.php).
Next, we select which database to use by using this code:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  if(preg_match("/[A-Z  | a-z]+/"$_POST['name'])){ 
5  $name=$_POST['name']; 
6  //connect  to the database 
7  $db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error()); 
8  //-select  the database to use 
9  $mydb=mysql_select_db("yourDatabase"); 
10  } 
11  else
12  echo  "Please enter a search query
"
13  } 
14  } 
15  } 
16?> 

view plain | print | ?
We create a variable called mydb and assign to My SQL's built-in function, mysql_select_db and pass in the name of our database we created earlier. Next, we query our database table using SQL, along with our name variable, which contains the search criteria entered by our visitor:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  if(preg_match("/[A-Z  | a-z]+/"$_POST['name'])){ 
5  $name=$_POST['name']; 
6  //connect  to the database 
7  $db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error()); 
8  //-select  the database to use 
9  $mydb=mysql_select_db("yourDatabase"); 
10  //-query  the database table 
11  $sql="SELECT ID, FirstName, LastName FROM Contacts WHERE  FirstName LIKE '%" . $name . "%' OR LastName LIKE '%" . $name  ."%'"
12  } 
13  else
14  echo  "Please enter a search query
"
15  } 
16  } 
17  } 
18?> 

view plain | print | ?
When querying our database table, we first create a variable called sql, and assign it to a literal string containing our SQL query. In our case, we use the keyword SELECT to grab the id, first and last name columns from our contacts table. Then we use the keyword WHERE, along with our first and last name columns to narrow our search field. Using the LIKE keyword, we pass in the percentage sign (%), which is a wildcard character that returns zero or more characters and our name variable from the search field. As a result, the LIKE keyword (in conjunction with our wildcard character) will find any name that matches in our database table to that entered by our visitor. In other words, the SQL query performed could be translated as follows: "Select first and last names from our contacts table where either the first or last name matches that entered by our visitor." If you haven't saved your file yet, now would be a good time to do so (search_query.php).
Next, we need to store the results of our SQL query in a variable and run it against the mysql_query function as illustrated below:


1
2if(isset($_POST['submit'])){ 
3if(isset($_GET['go'])){ 
4if(preg_match("/[A-Z  | a-z]+/"$_POST['name'])){ 
5$name=$_POST['name']; 
6//connect  to the database 
7$db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error());  
8//-select  the database to use 
9$mydb=mysql_select_db("yourDatabase"); 
10//-query  the database table 
11$sql="SELECT  ID, FirstName, LastName FROM Contacts WHERE FirstName LIKE '%" . $name .  "%' OR LastName LIKE '%" . $name ."%'"
12//-run  the query against the mysql query function 
13$result=mysql_query($sql); 
14
15else
16echo  "Please enter a search query
"
17
18
19
20?> 

view plain | print | ?
As you can see, we create a variable called result, and assign it to the mysql_query function, passing in our query variable. Now our query is stored in the result variable. In order to display our result set in PHP, we'll create a loop and then parse out the first and last name using an unordered list as shown below:


1
2  if(isset($_POST['submit'])){ 
3  if(isset($_GET['go'])){ 
4  if(preg_match("/^[  a-zA-Z]+/"$_POST['name'])){ 
5  $name=$_POST['name']; 
6  //connect  to the database 
7  $db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error()); 
8  //-select  the database to use 
9  $mydb=mysql_select_db("yourDatabase"); 
10  //-query  the database table 
11  $sql="SELECT  ID, FirstName, LastName FROM Contacts WHERE FirstName LIKE '%" . $name .  "%' OR LastName LIKE '%" . $name ."%'"
12  //-run  the query against the mysql query function 
13  $result=mysql_query($sql); 
14  //-create  while loop and loop through result set 
15  while($row=mysql_fetch_array($result)){ 
16          $FirstName  =$row['FirstName']; 
17          $LastName=$row['LastName']; 
18          $ID=$row['ID']; 
19
20  //-display the result of the array 
21  echo "
    \n"; 
22  echo "
  • "



  •  . "search.php?id=$ID\">"   .$FirstName . " " . $LastName .  "\n"
    23  echo ""
    24  } 
    25  } 
    26  else
    27  echo  "Please enter a search query
    "
    28  } 
    29  } 
    30  } 
    31?> 

    view plain | print | ?
    First, we create a while loop, and inside we create a variable called row and assign it to the mysql_fetch_array function, which takes one parameter, our result variable containing our SQL query. Inside the while loop, we assign each column from the row variable to a new variable with an identical name. Then, we display the values inside an unordered list. Two things worth noting are: (1) Inside the while loop, you don't have to create and assign a variable to the row array, you could parse out the values directly from the row array, (2) You'll notice in the anchor tag that we pass in the name of our file along with the id or primary key. The reason for this is mainly because in most search applications, you don't display everything initially. Since we're only displaying first and last name, by appending the ID on the end of our anchor tag, we can then use the ID for an additional query that will display further information regarding our staff member. Save your file and test your form at this point (search_display.php).

    Removing Bullets

    As you can see from viewing the example file, our matches are coming back in an unordered list, but bullets in this case aren't needed. To remove the bullets, add this CSS rule to the top of your file, inside the opening and closing tags:


    1<style  type="text/css" media="screen"
    2ul  li{ 
    3  list-style-type:none; 
    4
    5style> 

    view plain | print | ?
    This rule simply says to target all list items inside of an unordered list and set their bullet type to none.

    Searching by Letter

    Since searching by letter is merely adjusting a couple lines of code, let's go ahead and add in functionality that allows our visitor to search our staff member directory for first or last names containing a certain letter. In order to do this, add this code right after the closing
    tag:

    1form> 
    2<p><a  href="?by=A">Aa> | <a  href="?by=B">Ba> | <a  href="?by=K">Ka>p
    3php 

    view plain | print | ?
    We simply hard-code anchor tags with a query string of by, and set it equal to a particular letter. Depending on how large your database of staff members is you may want to add additional ones. To achieve the search functionality by letter we need to add the following code right after the closing curly brace of our original script as shown below:


    1}//end of search form script 
    2if(isset($_GET['by'])){ 
    3$letter=$_GET['by']; 
    4//connect  to the database 
    5$db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error()); 
    6//-select  the database to use 
    7$mydb=mysql_select_db("yourDatabase"); 
    8//-query  the database table 
    9$sql="SELECT  ID, FirstName, LastName FROM Contacts WHERE FirstName LIKE '%" . $letter . "%' OR LastName LIKE '%" . $letter ."%'"
    10//-run  the query against the mysql query function 
    11$result=mysql_query($sql); 
    12//-count  results 
    13$numrows=mysql_num_rows($result); 
    14echo  "" .$numrows . " results found for " . $letter . ""
    15//-create  while loop and loop through result set 
    16while($row=mysql_fetch_array($result)){ 
    17$FirstName  =$row['FirstName']; 
    18            $LastName=$row['LastName']; 
    19            $ID=$row['ID']; 
    20//-display  the result of the array 
    21echo  "
      \n"; 
    22echo  "
  • "



  •  . "search.php?id=$ID\">"   .$FirstName . " " . $LastName .  "\n"
    23echo  ""
    24
    25

    view plain | print | ?
    The four snippets of code we changed are:
    1. We use the isset Boolean check and pass in the $_GET array and check for a value of by,
    2. We create a variable called letter and assign it to the $_GET array value,
    3. Append the letter variable in our SQL statement and
    4. Concatenate the letter variable inside the statement where the counted number of rows are returned.
    Save your file and review the results (search_byletter.php).

    Searching by Specific Employee

    In order to display the rest of the staff member's information that's passed by the unique id inside our link, we just need to add the following code right after the closing curly brace of our letter script as shown below:


    1}//end of our letter search script 
    2if(isset($_GET['id'])){ 
    3$contactid=$_GET['id']; 
    4//connect  to the database 
    5$db=mysql_connect  ("servername""username",  "password"or die ('I cannot connect to the database  because: ' . mysql_error()); 
    6//-select  the database to use 
    7$mydb=mysql_select_db("yourDatabase"); 
    8//-query  the database table 
    9$sql="SELECT  * FROM Contacts WHERE ID=" . $contactid
    10//-run  the query against the mysql query function 
    11$result=mysql_query($sql); 
    12//-create  while loop and loop through result set 
    13while($row=mysql_fetch_array($result)){ 
    14  $FirstName =$row['FirstName']; 
    15            $LastName=$row['LastName']; 
    16            $PhoneNumber=$row['PhoneNumber']; 
    17            $Email=$row['Email']; 
    18//-display  the result of the array 
    19echo  "
      \n"; 
    20echo  "
  • "



  •  . $FirstName . " " . $LastName .  "\n"
    21echo  "
  • "



  •  . $PhoneNumber . "\n"
    22echo  "
  • "



  •  . " . $Email .  ">" . $Email . "\n"
    23echo  ""
    24
    25

    view plain | print | ?
    The four snippets of code we changed are:
    1. We use the isset Boolean check and pass in the $_GET array and check for a value of id,
    2. We create a variable called contactid and assign it the $_GET array value,
    3. Select everything from our table, which is indicated by an asterisk (*). An asterisk is shorthand notation in SQL that's translated to "give me all columns and rows from the table". In order to know which information to display we append the contactid variable at the end of our SQL statement, and
    4. Display the additional information about each staff member.
    Save your file and review the results (search_byid.php).
    As you review the changes, you should notice our functionality is working as intended. When you enter a first or last name in our form field or select a letter, only the staff member's name appears as a hyperlink. As you move our mouse over the link, in the status bar, you should notice that a unique ID has been passed inside our link and appended on our query string. When you click a specific staff member link, the address bar changes and the rest of the employee information is shown according for the unique ID passed.

    SQL Injection

    The reason we added a regular expression to our search form field was to ensure that no one could manipulate our SQL query to perform abnormal operations on our data or table such as delete operations, at least, not very easily. Such abnormal operations are called SQL injection attacks. These attacks are basically techniques that hackers use to try and manipulate your applications to perform operations they weren't meant to do and as a result, they cause adverse affects on applications and more importantly, database tables. For example, if we were to allow apostrophes in our search form field, a malicious attacker visiting our form could try typing the following:


    1'DROP  TABLE  

    view plain | print | ?
    By executing this query, it could cause My SQL or any database engine to execute a command that would delete your entire staff member table. As mentioned before our regular expression ensures that the first character coming from the $_POST value of our form field has to be either a capital or lowercase letter. As a result, we're able to protect against malicious queries that might be attempted from our search field.

    Conclusion

    In this article you learned how to do the following:
    • Create a database and corresponding table
    • Use a database management system DBMS) to create columns and enter data for the corresponding entities
    • Create a search form, along with PHP code to:
      • Check for form submissions
      • Check for appropriate query string variables
      • Check for acceptable input from visitors
      • Connect, query and display results from a database table
    • How to protect your application and database table from SQL injection attacks
    With the knowledge gained from this article, developers can easily adapt or modify the code presented to perform other operations or enhance functionality for any particular instance of a search feature.

    About the Author

    Ryan Butler is the founder of Midwest Web Design. His skill sets include HTML, CSS, Flash, JavaScript, ASP.NET, PHP and database technologies.
    Original: August 6, 2008
    Revised: August 08, 2008


    http://www.webreference.com/programming/php/search/index.html