Posted on 06 June 2010. Tags: directory, from, like, structure, using, value
I notice that a lot of sites, especially news site with a CMS, use PHP and get a value without the ?=value.For example they can do www.website.com/news/1, and that one will be one story. Change the 1 to a 2 like www.website.com/news/2 , and its a different story.
How do they do this using php?
Posted in PHP
Posted on 16 May 2010. Tags: directory, drive, files, FileSystemObject, list, object, specify
for example you can check if a file exist by
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
If (fs.FileExists("\\panter\test1.jpg"))=true Then
Response.Write("File 1.jpg exist")
Else
Response.Write("Call IS department")
End If
set fs=nothing
%>
But how could I list all files in that particular \\panther\*.*.
Posted in ASP
Posted on 02 April 2010. Tags: directory, display, images, Need, using
I am letting a friend upload his pics into a directory and I need to diplay all of the images in that directory as a gallery. I don’t know the file names and I don’t know how many will be in the directory. Using asp how do I load all of the images?
Posted in ASP
Posted on 24 March 2010. Tags: code, create, directory, password, protected, there, website
Can I use mkdir or any other php function to add a password to a directory?
Posted in PHP
Posted on 21 March 2010. Tags: copy, directory, entire, files, folders, including, using
I’m trying to copy an entire directory using ASP, and cannot find a way to do this dynamically. I do not want to change code every time I add things to this directory.
Posted in ASP
Posted on 15 March 2010. Tags: automatically, create, directory, login, page, password, protected, redirect
How do i create a php page that will automatically redirect & login to a password protected directory on my website, so that the user doesn’t have to input the user & password to access the site.
Posted in PHP
Posted on 09 March 2010. Tags: access, Active, Delphi, directory, Programming
I wanna manage Active directory by my program and edit it in my way
Posted in Delphi
Posted on 06 March 2010. Tags: access, directory, extension, install, server
I need to install an extension for my php site, but since I am using a web hosting service (hostmonster), I do not have access to the directory that contains all the PHP extensions. I DO, however, have access to my php.ini file. How can I install this extension (dbg.so)?
Posted in PHP
Posted on 04 March 2010. Tags: directory, files, list, subdirectories, using, within
I hope that makes sense…
Basically, I want to scan through one particular directory, which contains several subdirectories which all contain several text files, and list each one of these text files.
How can I do this? Just looking for a quick and simple answer seeing as I’m still new to PHP!
Posted in PHP
Posted on 21 February 2010. Tags: directory, files, realtime, script, shows, updates
I need a PHP script that can show files / file names in a table or column. Customizable too. Can you supply me with a tutorial link, the script, or other helpful means of helping me solve my problem?
Posted in PHP