1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Likes Received By coderlinks

  1. sarahk liked coderlinks's post in the thread Is PHP a language or a program?.

    Hello, If you use Mozilla Firefox, you an use an extension called FireFTP ( https://addons.mozilla.org/en-US/firefox/addon/684 ). It...

    Aug 14, 2007
  2. Dirty-Rockstar liked coderlinks's post in the thread How to query words and have them ordered by how many characters there is.

    Yea .. you are right .. How about: $res = $db->query('select * from '.$dtable.' where id > 1 order by time DESC, LENGTH(word) ASC ') ?...

    Aug 12, 2007
  3. PinoyIto liked coderlinks's post in the thread How to extract domain from a certain url.

    If the url is in $url, try doing: $domain = parse_url($url,PHP_URL_HOST); ~ Thomas

    Jul 14, 2007
  4. letsjoy liked coderlinks's post in the thread Running PHP in my PC in Local host ?.

    Hi, I just downloaded Apache, PHP and Mysql and installed them. Its just a matter of adding 3 lines to httpd.conf to add PHP to...

    Jan 15, 2007
  5. tsptom liked coderlinks's post in the thread PHP Date Reformat.

    Use an Array: $months = array('Jan'=>1,'Feb'=>2,'Mar'=>3,'Apr'=>4,'May'=>'5',...

    Aug 18, 2006
  6. KevinJB liked coderlinks's post in the thread Getting Contents of a Webpage.

    You can also use the curl functions. It supports proxies and HTTPS too. http://php.net/curl Thomas

    Aug 9, 2006
  7. YugKoobe liked coderlinks's post in the thread Include PHP footer/header in Smarty Templates.

    To include another Smarty template itself, you can use: {include file="hooba.tpl"} Just thought you would want to know. :D Thomas

    Aug 8, 2006
  8. pratik liked coderlinks's post in the thread Making a Database driven PHP website....

    You CAN setup a PHP system on your PC, if you have some know-how. Earlier, I used to test all my scripts, even the silliest ones by...

    Aug 2, 2006
  9. Colleen liked coderlinks's post in the thread Problem with fopen command.

    Are you sure you are using curl in the correct way? I will give you an example code: $ch = curl_init();...

    Aug 1, 2006
  10. KLB liked coderlinks's post in the thread Need to find and replace a specific HEX character (hex 'AO' to hex '20').

    You dont need to use regular expressions. You can use str_replace itself. Like this: str_replace("\xAO", "\x20", $oldstring); Thomas

    Jul 28, 2006
  11. goldensea80 liked coderlinks's post in the thread Preg_Replace newlines.

    Why not just use rtrim? rtrim($string); Thomas

    Jul 28, 2006
  12. Weirfire liked coderlinks's post in the thread Sorting an array of arrays.

    Ahh... I made all that code for nothing... :( ;) Thomas

    Jul 25, 2006
  13. yfs1 liked coderlinks's post in the thread Hiding a Link Except for Admins.

    Hi, So you want to display the URL only when the MM_UserGroup thingy is equal to 'Admin'. right? <?php...

    Jul 25, 2006
  14. Tim_Myth liked coderlinks's post in the thread This person keeps submitting his website to my directory.

    Are you sure about this? You wont be able to read the directory page itself as GET is disabled. GET is what is used to fetch the...

    Jul 24, 2006
  15. latehorn liked coderlinks's post in the thread print string.

    Being the paranoid fool I am :D , I don't think you should leave the paypal redirection stuff to the client. He can just modify the URL,...

    Jul 23, 2006
  16. DarrenC liked coderlinks's post in the thread Combating Scammers - PHP ideas required..

    You can code a ban system that uses a Geo-IP database like that at: http://www.maxmind.com/app/geoip_country Their lite version is...

    Jul 23, 2006
  17. EveryQuery liked coderlinks's post in the thread Tricky MFA Submissions.

    A simpler way would be to use an array or a text file. The text file can be ready into an array by using the file() function. Then you...

    Jul 22, 2006