Likes Received By emed

  1. osmasters liked emed's post in the thread need .htaccess help.

    RewriteEngine on RewriteRule state/(.*) ./states.php?state=$1 [PT] RewriteRule city/(.*) ./cities.php?city=$1 [PT]

    Jun 18, 2009
  2. mgrohan liked emed's post in the thread Only show on index.php.

    this should work if(strtolower($_SERVER['SCRIPT_NAME'])=='/index.php'){ //do stuff } (forgot to click submit >.<)

    Jun 16, 2009
  3. bad_bob00 liked emed's post in the thread How To Reduce The Gap Between Each New Paragraph Using CSS?.

    with css: #menu p { margin-top:0; margin-bottom:0; } you can change the 0's for the values you want, for example margin-top:5px; (dont...

    Jun 12, 2009
  4. JJnacy liked emed's post in the thread How to check if my serer run PHP or not?.

    make a new file called test.php and put this in it: <?php phpinfo(); ?> upload it to the server and open that file on your browser...

    Jun 11, 2009
  5. chemicalinck liked emed's post in the thread Need help in coding.

    move all the files from blog/ to the top folder or make a index.php file in the root to redirect to the blog: index.php: <?php...

    Apr 28, 2009
  6. Kerosene liked emed's post in the thread Using preg_replace to remove links from a string?.

    preg_replace("/\<a(.*)\>(.*)\<\/a\>/iU", "$2", $string); or preg_replace("/\<a([^>]*)\>([^<]*)\<\/a\>/i", "$2", $string); i think...

    Apr 11, 2009
  7. campolar liked emed's post in the thread How to do 301 Redirect?.

    you can do it with php <? header( "HTTP/1.1 301 Moved Permanently" ); header( "Location: http://example.com" ); ?>

    Mar 29, 2009
  8. crzydream liked emed's post in the thread How to do 301 Redirect?.

    you can do it with php <? header( "HTTP/1.1 301 Moved Permanently" ); header( "Location: http://example.com" ); ?>

    Mar 28, 2009
  9. jpinheiro liked emed's post in the thread Help with CSS Changing Text Color in wordpress blog.

    add color:white; after body {

    Mar 28, 2009
  10. solidstate liked emed's post in the thread Someone please help me changing the color of wordpress tab fonts..

    .tabbernav li a { position: relative; display: block; width: 104px; padding: 6px 0; margin-left: 10px; float: left; text-align:...

    Mar 27, 2009
  11. HsHosting liked emed's post in the thread Pull information from 2 databases and order it?.

    if you want to show the number of times change SELECT COUNT(*), to SELECT COUNT(*) AS times, then use {$off['times']} instead of...

    Mar 26, 2009
  12. fouzie liked emed's post in the thread How to make hidden pages?.

    you can add a meta tag on that page: <meta name="ROBOTS" content="NOINDEX, NOFOLLOW" /> or make a file called robots.txt in the root...

    Mar 24, 2009