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 phper

  1. MunnaMobile liked phper's post in the thread $2 VPS/YEARLY | Alpha & Master Reseller | WAREZ, PROXY, ADULT HOSTING | 5TB UNMETERED.

    for those interested, you should check out this thread first: http://forums.digitalpoint.com/showthread.php?t=1277355 boldpal.com was...

    Apr 24, 2009
  2. Refresher liked phper's post in the thread Infractions and Bans - Reasons?.

    WHERE THIS IDEA / SUGGESTION CAME FROM I got a 7-day ban last week and I've been thinking hard and searching the rules, posts, etc...

    Mar 14, 2009
  3. tarponkeith liked phper's post in the thread What Is The USe For Constants?.

    In your myspace example you created a constant named ADD_URL (presumably for the URL to add a site). Is there not a possibility someone...

    Jan 7, 2009
  4. Astroman liked phper's post in the thread Remove all white space in a table.

    Try this: UPDATE tableName SET field1 = TRIM(field1), field2 = TRIM(field2), field3 = TRIM(field3); You have to specify each field name...

    Dec 31, 2008
  5. ponar liked phper's post in the thread Weird (but simple) issue with arrays.

    for(i=0;i<3;i++){ testArray[testArray.length] = new Array(); // Here you are adding an empty array to the end of testArray. So...

    Dec 20, 2007
  6. yyyk9 liked phper's post in the thread JavaScript Games.

    Some time ago I wrote this JavaScript-based BlackJack game. It's quite simple (you can't 'double', 'split', etc) and only supports...

    Nov 10, 2007
  7. jazzylee77 liked phper's post in the thread include file based on url.

    The opening quote looks funny there. Just a wild guess, are you using MS Word to code? If so, open the file with Notepad and re-type the...

    Nov 9, 2007
  8. Colleen liked phper's post in the thread preg_replace - help needed.

    Try this: $newString = preg_replace('/\s/', '-', preg_replace(array('/[^a-z0-9\s]/i'), array(''), $originalString));

    Nov 8, 2007
  9. tayiper liked phper's post in the thread I need something basic explained about PHP.

    If there's no PHP code in it at all, it doesn't matter. You can just keep it as .html. But if you have other PHP scripts on the same...

    Nov 5, 2007
  10. ruby liked phper's post in the thread preg_replace - help needed.

    Try this: $newString = preg_replace('/\s/', '-', preg_replace(array('/[^a-z0-9\s]/i'), array(''), $originalString));

    Nov 4, 2007
  11. mahmood liked phper's post in the thread Having array in forms?.

    document.formName.elements["myName[]"] returns the array. each element can then be accessed as usual. e.g.:...

    May 15, 2007
  12. Blogmaster liked phper's post in the thread iframe hackers.

    Sounds very much like XSS (Cross Site Scripting) issue here. Does the site allow user to input something to it? e.g.: post a message,...

    Apr 4, 2007
  13. toughguy liked phper's post in the thread Loading page based on option selected when option changes from drop-down.

    There is the 'onChange' event that gets fired when a select drop down's selected item is changed. The code should look something...

    Apr 2, 2007
  14. advancedfuture liked phper's post in the thread SQL Error Line 49??.

    Probably the $category that you get from user input contains a quote character , which breaks the SQL query. In any case, you should...

    Mar 20, 2007
  15. klown liked phper's post in the thread database backup.

    Set up a cron job that executes mysqldump (assuming you're using MySQL). Run 'man mysqldump' or look for the documentation on mysql's...

    Feb 11, 2007
  16. Icheb liked phper's post in the thread Extracting Part of an URL.

    parse_url() is what you're after

    Feb 11, 2007
  17. donteatchicken liked phper's post in the thread help checkbox.

    Using the following sample names for the form and checkboxes: <form name="myform" id="myform" action="" method="post"> <input...

    Jul 19, 2006