Skip to Content

Tips & Tricks

Quick Tips To Search Google Like an Expert

12 Expert Google Search Tips

  1. Explicit Phrase:
    Lets say you are looking for content about internet marketing.  Instead of just typing internet marketing into the Google search box, you will likely be better off searching explicitly for the phrase.  To do this, simply enclose the search phrase within double quotes.
    Example: "internet marketing"
  2. Exclude Words:
    Lets say you want to search for content about internet marketing, but you want to exclude any results that contain the term advertising.  To do this, simply use the "-" sign in front of the word you want to exclude.
    Example Search: internet marketing -advertising
  3. Site Specific Search:



100 Great Free And Open Source Tools And Applications For Web Developers

1. Aptana

The Aptana IDE is a free, open-source, cross-platform, JavaScript-focused development environment for building Ajax applications. It features code assist on JavaScript, HTML, and CSS languages, FTP/SFTP support and a JavaScript debugger to troubleshoot your code.
More about Aptana




Tips & Tricks

Problem : PHP Warning: Cannot modify header information - headers already sent by

Solution:
//ob_start() . Its turning on the output buffer. So any output is kept in the buffer. And ob_flush() is to flush the buffer

try placing this at the top of your page:
<? ob_start(); ?>

then at the bottom of the page place this line of code:
<? ob_flush(); ?>
 

 




Syndicate content