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 php-lover

  1. baris22 liked php-lover's post in the thread How to skip in a loop.

    $query = "SELECT item_name, item_amount FROM item WHERE orderr_reference = '$ref'"; $result = mysql_query($query); $record =...

    Feb 12, 2010
  2. johneva liked php-lover's post in the thread Edit Form.

    if ($_POST["$submit"]) change to if($_POST['submit'])

    Feb 12, 2010
  3. JEET liked php-lover's post in the thread php OOP help please.

    $db = new db; $page = new Page; class Page{ public function __construct(){ global $db; $query = 'SELECT * FROM JEET';...

    Oct 11, 2009
  4. Silver89 liked php-lover's post in the thread Get Site Root.

    $url = "http://mysite.com/abc/ssds/page.php"; $n = parse_url($url); echo $n['host'];

    Oct 10, 2009
  5. PoPSiCLe liked php-lover's post in the thread Split integer from database.

    ereg ("([0-9]{3})([0-9]{2})([0-9]{3})", '12345678', $part); echo "$part[1] - $part[2] - $part[3]";:)

    May 30, 2009
  6. Hade liked php-lover's post in the thread How do i create IF/Else statement to change title of site based on page url?.

    You can add this code in your header file. <?php //add all your file and their title in this array $pages = array('Index.php'=>'Home...

    Sep 16, 2008
  7. Masterful liked php-lover's post in the thread How Can I Add an ELSE to My WHILE Loop?.

    $sql = "SELECT * FROM tadv, tcat, tc WHERE tc.advid=tadv.advid AND tc.catid=tcat.catid"; $result = mysql_query($sql, $conn) or...

    Sep 15, 2008
  8. SnoozZz liked php-lover's post in the thread echo contact list.

    $query = "SELECT * FROM contacts"; $result = mysql_query($query); echo '<table col="4" border="1" width="500" bordercolor="#CCCCCC"...

    Aug 11, 2008
  9. stompergames liked php-lover's post in the thread function help?.

    function showHannsgMonitor($monitor) { echo '<div class="section"> <div class="images"> <img...

    Aug 9, 2008
  10. domainloco.net liked php-lover's post in the thread EXPERTS!! What script is this please?.

    That is an e-commerce open source from the following site http://www.oscommerce.com/

    Aug 8, 2008
  11. jack_ss liked php-lover's post in the thread Long word Filter.

    function word_split($text, $char_limit = 24) { $words = str_word_count($text, 1); foreach ($words as $v) {...

    Jul 31, 2008
  12. Silver89 liked php-lover's post in the thread Long word Filter.

    function word_split($text, $char_limit = 24) { $words = str_word_count($text, 1); foreach ($words as $v) {...

    Jul 30, 2008
  13. rohan_shenoy liked php-lover's post in the thread Cleaner - Professional Code.

    if(!is_numeric($data)) Check that line on your cleaner function...I prefer using this if(!ctype_digit($data)) //<---more secure...

    Jul 27, 2008
  14. Dirty-Rockstar liked php-lover's post in the thread help with preg_replace.

    $name = 'php lover'; $name=preg_replace('/\s/','_',$name); echo $name; :)

    Jul 18, 2008
  15. Rory M liked php-lover's post in the thread Prevent PHP Executing code in string?.

    function highlight($str){ highlight_string('<?php '.$str.' ?>'); }//end function highlight $str = ' $entered_pass = $GET[...

    Jul 13, 2008
  16. Isaac liked php-lover's post in the thread readdir help.

    From your code it should be display your download file in alphabetical order. But if it doesn't sort then try this code. if...

    Jul 6, 2008
  17. SeoVeteran33 liked php-lover's post in the thread Advanced Php Issue - Will Give Green Rep For Help.

    This is the base ideas you can use :) <?php //plugs.php include ("config.php"); include ("functions.php"); class REFERER{...

    Jun 25, 2008
  18. sg552 liked php-lover's post in the thread Help me with my web form.

    When visitors input more than one email address, its will use only the first email address and ignore the rest. $to =...

    Jun 23, 2008
  19. raymond222 liked php-lover's post in the thread Action with checked records.

    <?php if(isset($_POST['submit'])){ for($x=0;$x<count($_POST['teamcheck']);$x++){ $list .= ($x ==...

    Jun 18, 2008
  20. slaydragon liked php-lover's post in the thread Am i doing the right thing?.

    Limit was implement in sql for paging. If you have 1 million record to select. You can use LIMIT to break apart your result into pieces....

    Jun 12, 2008