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 JAY6390

  1. pictureboarduk liked JAY6390's post in the thread Dynamic link on image?.

    echo '<a href="productpage.php?id='.$id.'"><img src="'.$picture.'" /></a>';

    Apr 10, 2010
  2. danx10 liked JAY6390's post in the thread Stripping Links with PHP?.

    @ dan & stOK - You are actually both wrong with it. The (.*) means $3 will leave everything between the first <a tag and the final </a>...

    Mar 30, 2010
  3. unbeatable liked JAY6390's post in the thread just started php today.

    Firstly learn (X)HTML and CSS. Then move on to PHP. Whilst learning PHP, learn MySQL too. check out http://www.phpvideotutorials.com/...

    Mar 8, 2010
  4. Imozeb liked JAY6390's post in the thread Does using the include_once() command make page load time longer?.

    Your Apache server processes it. MySQL has nothing to do with the PHP processing. They are two separate entities. The processing occurs...

    Feb 13, 2010
  5. sarahk liked JAY6390's post in the thread how to decryp this code????.

    Or pay for the hard work put into the encoded file. . .

    Feb 12, 2010
  6. valiik liked JAY6390's post in the thread Help with DOM XML PHP....

    Forgot to mention you also need to have the line $xdoc->preserveWhiteSpace = false; just after the new domdocument line

    Feb 5, 2010
  7. Hecky liked JAY6390's post in the thread Domain Validation question.

    FILTER_VALIDATE_URL will validate the following... http://-/ http://1/ So it's not all that reliable either, plus you would want to...

    Jan 24, 2010
  8. ramakrishna p liked JAY6390's post in the thread Multi Dimensional array keys.

    This is after the rsort I take it. Change rsort to arsort and see if that fixes it. rsort doesn't maintain the keys by default (see the...

    Jan 19, 2010
  9. SonnyCooL liked JAY6390's post in the thread WP coding.

    You can also change this in your blog settings in the wp admin area

    Jan 14, 2010
  10. Pixel T. liked JAY6390's post in the thread PHP Get Help.

    # Filter everything but numbers, plus, and minus. $id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_NUMBER_INT); # Escape the ID to...

    Jan 2, 2010
  11. RobeDuke liked JAY6390's post in the thread Php wordpress help.

    <?php /* Plugin Name: Name of the plugin. Plugin URI: The page having information related to plugin. Version: 0.1 Description: Your...

    Nov 24, 2009
  12. mike_sun liked JAY6390's post in the thread My blog has some hidden links, not showing, how to remove, please help.

    Only other thing it can be then is a plugin. disable all your plugins and see if this helps

    Nov 7, 2009
  13. rob7676 liked JAY6390's post in the thread Need help with a function.

    $out = array(); if ($row['txtNotificationAgency1'] == "GLO") { $out[] = "GLO "; } if ($row['txtNotificationAgency2'] == "TCEQ") {...

    Nov 6, 2009
  14. heavydev liked JAY6390's post in the thread PHP while($row = mysql_fetch_array( $data )).

    You can shorten that code down somewhat tguillea $result = mysql_query("SELECT * FROM repertoire") $x = 0; while($row =...

    Oct 23, 2009
  15. Rivmedia liked JAY6390's post in the thread A little help if you could :).

    Change while($freehosthits = mysql_fetch_array($freehosthitsrs)) to while($freehostinghits = mysql_fetch_array($freehosthitsrs))

    Oct 10, 2009
  16. Silver89 liked JAY6390's post in the thread Convert flv to mov using php.

    My thoughts exactly lol

    Oct 9, 2009
  17. timallard liked JAY6390's post in the thread str_replace cauing weird character --> �.

    can you paste the full code from the start of you modifying the search string to the mysql_query line please

    Oct 9, 2009
  18. PuneetJvw liked JAY6390's post in the thread Simple Pagerank script.

    You can also use this class: http://www.phpclasses.org/browse/package/2682.html Just download the class, then use...

    Sep 1, 2009
  19. ads2help liked JAY6390's post in the thread Regex matching multiline string failed..

    $string = preg_match_all("/(<([\w]+)[^>]*>)(.*)(<\/\\2>)/s",$string,$match);

    Nov 3, 2008