Likes Received By wmtips
-
Leo727 liked wmtips's post in the thread How to remove a line from a string?.
$html = preg_replace ('/<meta\s+name="description.*?>/si','',$html); $html = preg_replace ('/<meta\s+name="keywords.*?>/si','',$html);
Sep 13, 2006 -
redbayron2006 liked wmtips's post in the thread How To Get The Referal Domain?.
You are doing right, $_SERVER['HTTP_REFERER'] is a php source of referring page. And it is always works fine - it just gets the contents...
Sep 5, 2006 -
Mong liked wmtips's post in the thread Different browser different ads ?.
This is a fact, but there is no official explanation. Maybe it is different cookies, maybe FF ads are differently targeted.. Several...
Sep 5, 2006 -
The Webmaster liked wmtips's post in the thread Got a lil problem with XML Parser.
According to documentation: I am modified your code, now it works. Empty object converted to array (why are you using an object?),...
Sep 1, 2006 -
jg123 liked wmtips's post in the thread Need some help, I have been hacked?.
I don't see clicks in this code, it only performs an impressions for Adsense statistics. Maybe they are making reasonable CTR with this...
Aug 30, 2006 -
ahkip liked wmtips's post in the thread Checkbox problem in PHP.
You can also omit warning by using @: $strSearchMe = @$_REQUEST['searchMe']; If checkbox is not checked, $strSearchMe will be empty.
Aug 30, 2006 -
Cryogenius liked wmtips's post in the thread Checkbox problem in PHP.
You can also omit warning by using @: $strSearchMe = @$_REQUEST['searchMe']; If checkbox is not checked, $strSearchMe will be empty.
Aug 29, 2006 -
danielbruzual liked wmtips's post in the thread text.
The <blink> element is not part of the HTML specification. You can use CSS text-decoration: blink (not supported by IE) I think...
Aug 29, 2006 -
kkibak liked wmtips's post in the thread Is it possible to programmatically check overture bid amounts?.
You can try to use phpOCR or similar library for captcha recognition :cool:
Aug 24, 2006 -
Can liked wmtips's post in the thread PRINT command for RSS feed.
Maybe something like this? : <?php print file_get_contents("domain.com/rss.xml"); ?>
Aug 22, 2006