Jump to content

open url


Boerke

Recommended Posts

ok

i read the url folder( for example: [a href=\"http://www.site.com/fotodirectory/\" target=\"_blank\"]http://www.site.com/fotodirectory/[/a] ):
$directory = $_POST['fotodir'];

then i'm using a script i found on the internet to test it

[code]
$imgdir = "$directory";
        $allowed_types = array('png','jpg','jpeg','gif');
        $dimg = opendir($imgdir);
        while($imgfile = readdir($dimg))
        {
            if(in_array(strtolower(substr($imgfile,-3)),$allowed_types))
            {
                $a_img[] = $imgfile;
                sort($a_img);
                reset ($a_img);
            }
        }
        $totimg = count($a_img); // total image number
        for($x=0; $x < $totimg; $x++)
        {
            $size = getimagesize($imgdir.'/'.$a_img[$x]);
            // do whatever
            $halfwidth = ceil($size[0]/2);
            $halfheight = ceil($size[1]/2);
            echo 'name: '.$a_img[$x].' width: '.$size[0].' height: '.$size[1].'<br />';
        }
[/code]

but the error i get
failed to open dir: not implemented in ....php on line ...

and

readdir() not valid argument

so i know that i am supposed to give a local folder, and that's why i asked if there is a method that opens the url instead of just a dir
Link to comment
https://forums.phpfreaks.com/topic/3874-open-url/#findComment-13607
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.