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 ThePHPMaster

  1. imranamen6 liked ThePHPMaster's post in the thread Links open in Chrome but not in Firefox.

    That shouldn't be an issue I think. The issue with the link is that there is an empty space at the end of the url causing it not to...

    Jul 3, 2015
  2. gyahoo liked ThePHPMaster's post in the thread Bash Script: Read names one on each line and perform a certain task on each.

    Make sure that the file is executable before running it. File name needs to be absolute or within the same directory. #!/bin/bash #...

    Nov 27, 2014
  3. misohoni liked ThePHPMaster's post in the thread Opening New Window in Link, Current Window Loads new url - in PHP?.

    It is pretty simple, you need to somehow communicate the link between Javascript and PHP (for example, if you send PHP #1 it should...

    Nov 5, 2014
  4. News Updates liked ThePHPMaster's post in the thread PHP data serialization in mysql.

    A good comment on PHP seralize documentation explains what you need: Anatomy of a serialize()'ed value: String s:size:value; Integer...

    Jun 24, 2014
  5. MrLeN liked ThePHPMaster's post in the thread Multiple keyword loop?.

    From the docs of: http://www.php.net//manual/en/function.fgets.php + the isset check: <?php // Items or item to look for $lookingFor =...

    Jun 14, 2014
  6. Vooler liked ThePHPMaster's post in the thread Coding article spinner.

    I like it. You should work on it so that it is more realistic in spinning.

    Apr 6, 2014
  7. postcd liked ThePHPMaster's post in the thread .htaccess redirect + counting traffic.

    Here is a simple counter you can use (in no way this is the perfect solution, but for free it is good enough): <?php if...

    Mar 22, 2014
  8. RobinInTexas liked ThePHPMaster's post in the thread notepad ++ - How to select specific lines?.

    Using Notepad++ regular expression search 1) Replace: .*[^\.com]$ with empty text Then select all (control + A) Menu -> TextFX ->...

    Feb 15, 2014
  9. Avener liked ThePHPMaster's post in the thread notepad++ - How to delete everything before and after ,.

    Use regular expression search mode. Replace: [0-9]+, with nothing (empty) and then replace: ,.* with nothing (empty)

    Feb 12, 2014
  10. eritrea1 liked ThePHPMaster's post in the thread I need a review for my secure PHP file uploading script.

    It will suffice for general purposes, it all depends on what you need to accomplish and your requirements are (for me, most of the file...

    Dec 2, 2013
  11. sarahk liked ThePHPMaster's post in the thread PHP include hyperlinks and subdirectories.

    I think what Sarah is trying to say, create a file, ex: definitions.php (include the file in all files, or in a shared file if you have...

    Nov 3, 2013
  12. ROOFIS liked ThePHPMaster's post in the thread Need some help with preg_match.

    I wouldn't use preg_match unless needed, this should be more handy: $var =...

    Oct 24, 2013
  13. eritrea1 liked ThePHPMaster's post in the thread Why use getters and setters in PHP?.

    Another reason would be when the properties aren't public or you want to limit the user to only set and/or get.

    Oct 16, 2013
  14. deathshadow liked ThePHPMaster's post in the thread Why use getters and setters in PHP?.

    Another reason would be when the properties aren't public or you want to limit the user to only set and/or get.

    Oct 16, 2013
  15. FPForum liked ThePHPMaster's post in the thread Download a Text File with 'Onchange'?.

    I'll take it one step further and disable changing directories: $_GET['file'] = '../..differentlinkfolder'. <?php // Use absolute link...

    Oct 13, 2013
  16. sarahk liked ThePHPMaster's post in the thread newbie, PHP/MySQL coding help.

    Sorry, I totally thought it was the same person, gotta open my eyes more! Your code looks solid to me.

    Sep 19, 2013
  17. sarahk liked ThePHPMaster's post in the thread Liquidity and responsiveness- a better website?.

    Without Failure, there is no success. If you feel in your guts that this can succeed, go ahead with it. Just ready yourself to drop it...

    Sep 18, 2013
  18. nico_swd liked ThePHPMaster's post in the thread Change the result of mysql_fetch_array into one variable????.

    $src_get_schspt = "select GROUP_CONCAT(school_support) from transaction"; $query_get_schspt = mysql_query($src_get_schspt) or...

    May 11, 2013
  19. deathshadow liked ThePHPMaster's post in the thread Change the result of mysql_fetch_array into one variable????.

    $src_get_schspt = "select GROUP_CONCAT(school_support) from transaction"; $query_get_schspt = mysql_query($src_get_schspt) or...

    May 10, 2013
  20. blueparukia liked ThePHPMaster's post in the thread PHP Breadcrumbs - most efficient way..

    You can't do this with simple SQL, you will need to get into stored procedure to do recursive logic which is my first choice. For...

    Apr 21, 2013