PHP On Eval encoded file decoder

by techietim, January 26, 2008 17:29

Is there an example script ...

441c4f02db55ef2cbe96027af7012e01 Talk

PHP On Content Page Include

by jacob, January 23, 2008 21:20

Peacefire.org$_GET['id']."...

59da41a8221325fd6016e4656fb8a484 Talk
1
2
3
function cache_function($buildCallback, array $args = array (), $timeoutMinutes = 60) {
  $cacheKey = (is_array($buildCallback) ? get_class($buildCallback[0]) . $buildCallback[1] : $buildCallback) .
...

PHP On Cache any PHP function

by firesalamanders.openid.com, January 15, 2008 01:26 Star_full

Even more compression of th...

4100acda45394fa4e8efc805a486b732 Talk
1
2
3
4
function cache_function($buildCallback, array $args=array(), $timeoutMinutes= 60)
 {
  $cacheKey   = $buildCallback . ':' . implode(':', $args); // No need for ELSE{}
...

PHP On Cache any PHP function

by EllisGL, January 14, 2008 22:33 Star_full

Just one optimization here.

Avatar Talk
1
2
3
<?php
$input = preg_replace("/(www\.|http:\/\/)([^\s]+)/", '<a href="http://$1$2" target="_blank">$1$2</a>', $input);
?>

PHP On Replace user input with link

by shtruc, January 08, 2008 22:35 Star_fullStar_fullStar_full

If i understand correctly, ...

C2eee2044eac9c9b7f7d952bd3a7c6fc Talk

PHP On Replace user input with link

by Jeremy Weiskotten, January 02, 2008 23:21

Some examples of PHP linkif...

5170ca260dbd2cdfd5a887a4dba7636f Talk

PHP On Replace user input with link

by Mlopez, January 02, 2008 15:43

also doing the url first th...

132a00e84e74c003f68311b39b28e969 Talk

PHP On Replace user input with link

by Mlopez, January 02, 2008 15:41

ok, now the only problem is...

132a00e84e74c003f68311b39b28e969 Talk
1
2
3
4
<?php
function URLref($sentence){
  $temp = explode(" ", $sentence);
...

PHP On Replace user input with link

by timmeh, January 02, 2008 03:18 Star_fullStar_fullStar_full
Avatar Talk

PHP On Replace user input with link

by Mlopez, January 02, 2008 01:40

im not quite sure what to d...

132a00e84e74c003f68311b39b28e969 Talk
1
2
3
4
<?php
function fecha ()
{
...

PHP On Spanish date Function

by Mlopez, December 22, 2007 02:56

you can remove the "hoy es"...

132a00e84e74c003f68311b39b28e969 Talk
1
2
3
4
if (strpos($_SERVER['HTTP_REFERER'], '?') !== false) {
  list($base, $query_string) = split('?', $_SERVER['HTTP_REFERER']);
  parse_str($query_string, $parameters);
...

PHP On Log Referer, Excluding...

by troels, December 19, 2007 13:08

You can use parse_str to pa...

6ba6351fbc3c11dca46407bb3f1e3c2d Talk

PHP On Log Referer, Excluding...

by Martindale, December 17, 2007 20:32

I don't understand how that...

72f4ba51b784673a15a1e89d8d9f49d1 Talk
1
2
list($sUrl,$sParams)=split('?', $_SERVER['HTTP_REFERER']);

PHP On Log Referer, Excluding...

by Eineki, December 14, 2007 23:19

You can use split() to spli...

5a00a3a98dcf6f9cd717440fd2b606e5 Talk

PHP On Log Referer, Excluding...

by Martindale, December 14, 2007 19:17

Is there any way I can clea...

72f4ba51b784673a15a1e89d8d9f49d1 Talk

PHP On Log Referer, Excluding...

by typefreak, December 14, 2007 19:12 Star_fullStar_fullStar_fullStar_full

Keep in mind that the 'http...

A2c8fecfd1fb707dd0a8f292ade77e1e Talk

PHP On Log Referer, Excluding...

by pkemper, December 13, 2007 07:19 Star_fullStar_fullStar_fullStar_full

Why not run a cron job (say...

0481b9ea2b2aad6844b33dbca2d7fe0e Talk
1
2
3
4
<?php
$domains = array();
$ref = $_SERVER['HTTP_REFERER'];
...

PHP On Log Referer, Excluding...

by techietim, December 12, 2007 23:40
441c4f02db55ef2cbe96027af7012e01 Talk

PHP On Output div block with PHP c...

by Paul Kemper, December 08, 2007 08:57 Star_fullStar_fullStar_fullStar_full

I suggest that you adhere t...

0481b9ea2b2aad6844b33dbca2d7fe0e Talk

PHP On Output div block with PHP c...

by K, December 07, 2007 19:44

Can I ask you guys a favor ...

B5ae59b19cc356df333baffffb9f2c91 Talk

PHP On Output div block with PHP c...

by K, December 07, 2007 19:43

Tim, thanks a lot! This is ...

B5ae59b19cc356df333baffffb9f2c91 Talk
1
2
3
<?php if (the_ID() == 8) { ?>
...

PHP On Output div block with PHP c...

by Casper, December 07, 2007 19:35 Star_fullStar_fullStar_full

You have a missing close br...

B849433e0e1a3f4ca0cf7cc55b8acd53 Talk
1
2
3
<?php 
echo (the_ID() == 8) ? '<div id="menu_show" class="slideshow"><img src="http://example.org/image.gif" alt="A picture" width="748" height="245" /></div>':'<div class="header"></div>';
?>

PHP On Output div block with PHP c...

by techietim, December 07, 2007 19:31 Star_fullStar_fullStar_fullStar_fullStar_full

This is one way to shorten it

441c4f02db55ef2cbe96027af7012e01 Talk

PHP On FLAC -> Multiple File Ty...

by wegosublime, November 29, 2007 02:45

Meant to click on 5 stars, ...

98ae5419a4fd2b739280c3ed7d6cdb3d Talk

PHP On FLAC -> Multiple File Ty...

by wegosublime, November 29, 2007 02:41 Star_fullStar_fullStar_full

Thanks very much dude! anyt...

98ae5419a4fd2b739280c3ed7d6cdb3d Talk