I NEED A SCRIPT THAT CAN CREATE LINKS FROM A DIRECTORY.?
HOW LONG DOES IT TAKE TO CREATE AN ADVANCED WEBSITE? (SEARCH ENGINE OR NETWORKING SITE)?
about 23 hours ago - 4 comments
Question by Rockstarz: How long does it take to create an advanced website? (search engine or networking site)? I have an extraordinary idea for a website but I only know basic web design. When it comes to developing something more advanced like facebook, how long do you think it will take and what resources do
Q&A: I WANT TO CREATE A POPULAR SEARCH ENGINE LIKE GOOGLE AND YAHOO…?
about 2 days ago - No comments
Question by Kerching!!!: I want to create a popular search engine like google and yahoo…? What should i do? I was thinking of setting up a business and create a search engine like Google and Yahoo. How do Google and Yahoo get their money? —————————————— Answer by firesplatfrom advertising —————————————— Add your own answer in
Q&A: I WANT TO CREATE A WEBSITE TO SELL SOMETHING. HOW DO I GET A SEARCH ENGINE TO SHOW MINE FIRST?
about 3 days ago - 8 comments
Question by Tina W: I want to create a website to sell something. How do I get a search engine to show mine first? I want to create a website to sell something. How do I get a search engine to show my site as one of its first sites once someone looks for it?
Q&A: MAJORA’S MASK FULL SCRIPT?
about 4 days ago - No comments
Question by Sarah Elizabeth: Majora’s Mask full script? Haha, wow. I feel like a complete loser for even thinking about asking this, nonetheless actually posting it for people all around the world who look at this can see what a freaking loser I am. But still, this is important to my situation right now so
Q&A: SCRIPT FOR 3 FEMALES?
about 6 days ago - 1 comment
Question by made_in_demise: Script For 3 Females? So, I need a free script for three girls, no guys. I have already searched google and ask and havent found a thing. So random links to google or other search engines probably wont help. If you have a recommendation, just say it. I am getting desperate at
Q&A: HOW CAN I CREATE A “SEARCH ENGINE”?
about 1 week ago - No comments
Question by Dr Daud Zareef: How can i create a “search engine”? I have wrote a lot coding to my project, and there is nothing left to code anymore, so i just need to think, that how can i get all the world wide web “URL”? that is my answer for this day (27/04/09), i
HOW TO CONNECT PRODUCTS TO A SHOPPING CART WITH A SCRIPT.?
about 1 week ago - No comments
Question by Steve: how to connect products to a shopping cart with a script.? I need to add products to my shopping cart, which I have done btw, then make them appear on fly pages and also create deep links [single products on a page] to appear both when product is clicked AND when a
LOOKING FOR STOCK QUOTE SCRIPT (PHP)
about 1 week ago - No comments
Question by Delete: Looking for Stock Quote Script (PHP) I am looking for a free detailed stock quote script to at to my website. I would like a perl script that is crawl-able by search engines. Thanks for your help! —————————————— Answer by Skillz CheckNone of the free scripts are of any value, they all
PHP READING FILES SCRIPT PROBLEM?
about 2 weeks ago - No comments
Question by : PHP Reading files script problem? I am having trouble with my PHP classes and was hoping someone could help me complete this script because it has me beat. I realize that this is suppose to be very basic, I am just having a very difficult time with it. So basically, I need
CREATE SEARCH ENGINE WEBSITE,HOW DO I CREATE A WEB CRAWLER OR SPIDER -TO CREATE SEARCH DATABASE?
about 3 weeks ago - No comments
Question by fullfavorite: create search engine website,how do i create a web crawler or spider -to create search database? —————————————— Answer by nzseries1http://www.google.com/corporate/history.html Here’s an interesting link which tells you how Google was created. You might like to try something similar. —————————————— Know better? Leave your own answer in the comments!

about 1 year ago
< ?php
// This script reads a directory of files. After reading the directory specified it outputs the directory files.
// Upon output, supplied functions manipulate each filename and format it to make the output filename look better.
// e.g.: instead of output being 'my-good-looking-file.txt' it would look like 'My Good Looking File'.
// In order for the output to look better, you must put a hyphen (-) or an underscore (_) between each
// word that you want to be separated.
// function to strip off the file extension
function strip_ext($name) {
$ext = strrchr($name, '.');
if($ext !== false) {
$name = substr($name, 0, -strlen($ext));
}
return $name;
}
// function to remove the hyphen or underscore from filename.
function removeHyphen($filename) {
$target = $filename;
$patterns[0] = '/-/';
$patterns[1] = '/_/';
$replacements[0] = ' ';
$replacements[1] = ' ';
$filename = preg_replace($patterns, $replacements, $target);
return $filename;
}
// function to capatalize the first character of each word. Must be called after
// the removal of the hyphen or underscore
function capFirstWord($word) {
$cap = $word;
$cap = explode(' ', $cap);
foreach($cap as $key => $value) {
$cap[$key] = ucfirst($cap[$key]);
}
$word = implode(‘ ‘, $cap);
return $word;
}
// Formats the file. This is the main function that calls all functions explained above.
function formatFile($name) {
$name = strip_ext($name);
$name = removeHyphen($name);
$name = capFirstWord($name);
return $name;
}
// Sets up the directory you would like to use as the “reading” directory.
$mydir = dir(‘./mp3 files’);
while(($file = $mydir->read()) !== false) {
// Security – remove “.” and “..” files (directories)
if ($file != “.” && $file != “..”) {
// Output. This is what is actually outputed by the script and that shows
// up on the screen (browser).
echo “
“.formatFile($file).”
“;
}
}
$mydir->close();
?>