Profile
Achievement
 
    
                beneberle's Recent SnippetsTagged php
- All /
 « Prev 1 Next »
Condition = The condition which must be met.
True = Executed if the condition is met.
False = Executed if the condition failes.
        
        
        
            0 
        
        
            1130 
        
                    posted 13 years ago by beneberle
            Though an old post, this is my solution that's been pieced together from various comments on the article linked above.
        
        
        
            1 
        
        
            1897 
        
                    posted 14 years ago by beneberle
            I needed to trim a simple numerical array that might have duplicate values into an array with no duplicates. I came up with this before finding array_unique().   D\'oh.
        
        
        
            0 
        
        
            1301 
        
                    posted 15 years ago by beneberle
            Substitute new_ placeholder in the second line with your new prefix.  Run it: http://www.yoursite.com/rename.php and wait until it responds with an OK, usually after a couple of seconds.  Delete the rename.php script.  Edit the configuration.php file...
        
        
        
            0 
        
        
            2292 
        
                    posted 15 years ago by beneberle
            To make an image browser, add these lines:
$ext = strtolower(substr("$dirArray[$index]", strrpos("$dirArray[$index]", '.') + 1)); //get file extensions
if ("$ext" == "jpg") { // if file is a jpg
print("<TR><TD>$dirArray[$index]<br/><a href=\...
        
        
        
            1 
        
        
            1225 
        
                    posted 16 years ago by beneberle