Page Number: Page 1 of 1
Actual Results
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: how to make bread crumb navigation without PHP?
- Subject: how to make bread crumb navigation without PHP?
- Replies: 5
- Views: 988
Posted: August 22nd, 2005, 2:14 am
page*.html and not page.php?foo=bar is generated by Apache - mod.rewrite
.htaccess makes those links work and a PHP script changes link on the page.
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: Populating drop down box from PHP and XML
- Subject: Populating drop down box from PHP and XML
- Replies: 1
- Views: 878
Posted: August 22nd, 2005, 2:12 am
You need an PHP array with entries that you wish to place in the box and when you have it - foreach and HTML.
If you wish to store data in XML then you have to parse XML to an array. (PHP5 has simpleXML, PHP4 - use a class from phpclasses)
If you wish to store data in XML then you have to parse XML to an array. (PHP5 has simpleXML, PHP4 - use a class from phpclasses)
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: Displaying PHP Code
- Subject: Displaying PHP Code
- Replies: 2
- Views: 384
- Subject: Displaying PHP Code
Posted: August 22nd, 2005, 2:08 am
highlight_file(file.php) - will show the code of a PHP file with syntax highlighting 
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: XML-php???????
- Subject: XML-php???????
- Replies: 1
- Views: 481
- Subject: XML-php???????
Posted: August 18th, 2005, 2:07 am
In PHP5 via simpleXML extension, In 4/5 via various classes and functions. You can find some at http://www.phpclasses.org I use: [php]function read_xml($url, $ile = false) { $datax= file($url); $data = implode('', $datax); $data = preg_replace('#<\?xml-stylesheet href="([a-zA-Z0-9 /. -_]*)" type=...
- Riklaunim
- Forum: Unix / Linux Forum
- Topic: Multimedia
- Subject: Multimedia
- Replies: 6
- Views: 1306
- Subject: Multimedia
Posted: August 17th, 2005, 4:34 am
I don't use it, just have it in PHP and in vnc2swf (makes swf movies of your desktop).
ming page: http://ming.sourceforge.net/
ming page: http://ming.sourceforge.net/
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: How To Build A custom Search Spider
- Subject: How To Build A custom Search Spider
- Replies: 1
- Views: 1161
- Subject: How To Build A custom Search Spider
Posted: August 17th, 2005, 4:05 am
there are some free scripts in the net, try on sourcefourge.net but to run a good search engine spider you will need a shell web account (or your computer running unix/linux, maybe windows, depends on the search engine code language).
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP regular exp to html
- Subject: PHP regular exp to html
- Replies: 8
- Views: 558
- Subject: PHP regular exp to html
Posted: August 17th, 2005, 4:00 am
Code: [ Select ]
$text = preg_replace('#\[tag=(.*?)\](.*?)\[/tag\]#es', "function_that_pars_the_tags('\\1', '\\2')", $text);
- Riklaunim
- Forum: Unix / Linux Forum
- Topic: Multimedia
- Subject: Multimedia
- Replies: 6
- Views: 1306
- Subject: Multimedia
Posted: August 17th, 2005, 3:54 am
If you wish to create flash things in linux use ming and friends 
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: search in text file (PHP)
- Subject: search in text file (PHP)
- Replies: 1
- Views: 679
- Subject: search in text file (PHP)
Posted: August 17th, 2005, 3:50 am
read the file with $array = file('filename.txt'); and you will get an array of file rows, then you can use in_array if you want a fast search (but searched phrase must be exactly the same as that in array), or if you want an advanced search use ereg in foreach :) [code] foreach($array as $key =&...
- Riklaunim
- Forum: Programming / Scripting / Coding Forum
- Topic: Good CMS
- Subject: Good CMS
- Replies: 5
- Views: 1308
- Subject: Good CMS
Posted: December 17th, 2003, 9:49 am
I'm searching for a good cms that is optimized, clean and has some resources
He need to have a nice and powerfull "articles" module - content managing section in general. Any ideas (not php-nuke and his familly)
