Voting

: min(nine, seven)?
(Example: nine)

The Note You're Voting On

nieprzeklinaj at gmail dot com
12 years ago
Here's a handy little function for smart cache overriding :)
<?php
function img($src, $alt='', $attr='')
{
if(
file_exists($src))
{
$lmod = filemtime($src);
echo
'<img src="'.$src.'?lmod='.$lmod.'" alt="'.$alt.'" '.$attr.' />';
}
}
?>

<< Back to user notes page

To Top