[PHP] db driven site on IIS

2002-03-27 Thread olinux
) investment in an ASP/MSSQL db project they do not want to move from IIS. I'm not familiar with ASP so I'd rather not go that route. We are a news site with about 6000 articles and 15-20 additions each day. 600,000 monthly page views growing by 40,000 per month. Thanks much, olinux

Re: FW: [PHP] PHP FAQ (again)

2002-04-03 Thread olinux
I delete everything that doesn't include the topic of the question in the subject line. Stop replying and they'll learn how to address an email or search the manual/google. olinux --- Christoph Starkmann [EMAIL PROTECTED] wrote: Hi Ray! I am in total agreement with Justin on this one

Re: [PHP] PHP Authorize.net interface

2002-04-05 Thread olinux
http://www.zend.com/codex.php?CID=22 olinux --- David Johansen [EMAIL PROTECTED] wrote: I was wondering if someone just point me to a good example of a PHP interface for Authorize.net to work with ADC Relay Response. Thanks, Dave -- PHP General Mailing List (http://www.php.net

RE: [PHP] counter for HIGH traffic site

2002-04-08 Thread olinux
What is wrong with simply using the log files. Seems to me this is a lot of excess overhead for very little data. A low end log analyzer will provide this same info and much more. (and possibly free... such as HTTP Analyze - http://www.netstore.de/Supply/http-analyze/) olinux --- SHEETS,JASON

Re: [PHP] using php for keywords

2002-04-12 Thread olinux
Here's a start. http://www.phpbuilder.com/columns/tim2526.php3 olinux --- Marc [EMAIL PROTECTED] wrote: hi how can i use php to list keywords in search engines ?!? how to index a website keywords via php =) plz mail thx -- PHP General Mailing List (http

Re: [PHP] Formatting XML Data

2002-06-10 Thread olinux
Check out these articles at DevShed http://www.devshed.com/Server_Side/XML/XMLwithPHP/ olinux --- Dan Hardiker [EMAIL PROTECTED] wrote: I would like some of the text to be bold, or maybe I would like to insert a hyper-link. Unfortunately it does not seem I can do this with ordinary HTML

Re: [PHP] Re: phpmyadmin - moving data from one database to another

2002-06-18 Thread olinux
FROM test_table; It will write the data to a delimited file - then upload this file to new server and use LOAD DATA INFILE much the same way SELECT INTO OUTFILE http://www.mysql.com/doc/S/E/SELECT.html LOAD DATA INFILE http://www.mysql.com/doc/L/O/LOAD_DATA.html olinux --- Taylor York [EMAIL

Re: [PHP] Architecture problem? Google want index files exept the main page.

2002-06-21 Thread olinux
Are you using a 404 error to generate those deeper pages? If so you will want to send an OK header: header('HTTP/1.1 200 OK'); olinux --- Andy [EMAIL PROTECTED] wrote: Hi guys, I did recently launch my first web site and I am asking myself why google is only indexing the first page

Re: [PHP] Architecture problem? Google want index files exept the main page.

2002-06-21 Thread olinux
'news' (with no extension) and use the apache's ForceType to force this file to be parsed. url is something like this website.com/news/category/year/month/day/article_id.htm - check out Tim Perdue's article on www.phpbuilder.com olinux --- Andy [EMAIL PROTECTED] wrote: Hi, I am not using

Re: [PHP] php SMS (or phone contact)

2002-07-01 Thread olinux
sends msg to your phone olinux --- Duncan [EMAIL PROTECTED] wrote: Hi again, thx for the replies. Well, nagios ... quite a story ... anyway, i spent more than 3-4 hours and still didn't get it to work. Maybe i should look into it again, if it supports that kind of stuff, which really

Re: [PHP] Re: PHP: Script Security: Best coding practices

2002-07-07 Thread olinux
A little off your request, but may be of interest: Top 21 PHP Programming Mistakes from Zend.com http://www.zend.com/zend/art/mistake1.php http://www.zend.com/zend/art/mistake2.php olinux On 07/04/2002 02:24 AM, Jean-Christian Imbeault wrote: I am trying to figure out what are some Bad

[PHP] Single website Unix + Windows servers

2002-07-12 Thread olinux
I am working on integrating our current website to apache/redhat/php/mysql Due to a recent investment in an ASP project I must have the windows / SQL server machine running this application. Any suggestions to keeping the site 'seamless' or ideas that will help Thank you, olinux --- Matt

[PHP] PHP install - what features?

2002-07-13 Thread olinux
-mode -with-exec-dir --with-apache Thanks much, olinux __ Do You Yahoo!? Yahoo! Autos - Get free new car price quotes http://autos.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Credit Card Processing - Take Two

2002-07-15 Thread olinux
www.x-cart.com looks like a good and inexpensive option - I will be implementing it soon, but I have not tried it yet. Anyone used x-cart? Thanks, olinux --- Daniel Guerrier [EMAIL PROTECTED] wrote: Can anyone recommend a good and cheap shopping cart and credit card processing combo

[PHP] make a set of variables available to all visitors?

2002-04-14 Thread olinux
number strings so - $article_type = array(news = 1,opinion = 2,finance = 3); Maybe it would be best to simply query for WHERE article_type = 'news' etc. Thanks much, olinux __ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http

Re: [PHP] graphing packages

2002-04-15 Thread olinux
Never used any of these, but probably what you're looking for: http://www.zend.com/codex.php?CID=345 http://www.hotscripts.com/PHP/Scripts_and_Programs/Graphs_and_Charts/ olinux --- Christian Calloway [EMAIL PROTECTED] wrote: hey ppl, I need to create some fairly complex graphs

RE: [PHP] make a set of variables available to all visitors?

2002-04-15 Thread olinux
(news = 1,opinion = 2,finance = 3); $sql = SELECT * FROM articles WHERE article_type = '2'; /* where condition will contain other criteria as well (date/region) */ olinux --- Cal Evans [EMAIL PROTECTED] wrote: Actually, if they are static variables that rarely or never change, I would stick

Re: [PHP] Re: what do i put in .htaccesss to achieve this

2002-04-16 Thread olinux
for the script. olinux --- Uchendu Nwachukwu [EMAIL PROTECTED] wrote: Try this: RewriteEngine On Options +FollowSymlinks RewriteBase / RewriteCond %{HTTP_HOST} whatever.yoursite.com RewriteCond %{REQUEST_URI} !path/to/desination/folder/ RewriteRule ^(.*)$ path/to/destination/folder/$1 [L

Re: [PHP] Help! Transparency using GD with PNGs!

2002-05-01 Thread olinux
I dont think transparent PNG's are possible with GD Maybe v2.0 will have something? olinux --- Cam [EMAIL PROTECTED] wrote: I've got PHP 4.2 and what I believe to be the newest version of the GD library up and running.. For some reason, my PNG images do not preserve

[PHP] virus scanning with PHP

2002-05-01 Thread olinux
Anyone ever run virus scans via PHP exec command? Is it possible? I am trying to persuade the company to go with Qmail and this would be a killer benefit as we've spent the past 2 days trying to rid klez. Thanks much, olinux __ Do You Yahoo

Re: [PHP] Re: Who's having a good hosting experience these days?

2002-05-05 Thread olinux
php/mysql and tons of other features. The absolute best control panel I have seen. (demo on their site). Great support when needed as well. http://www.websitesource.com olinux --- Kyle Gibson [EMAIL PROTECTED] wrote: My clients aren't rich big money folks but I need a PHP capable host

Re: [PHP] Best way for date/time

2002-05-11 Thread olinux
of choice. http://www.mysql.com/doc/D/a/Date_and_time_functions.html olinux --- John Fishworld [EMAIL PROTECTED] wrote: Okay so I've then got 2002-05-08 and whats then the best way to manipulate it regarding plus 3 days or plus 4 weeks ? lol ! no thats not what I meant

Re: [PHP] read all files in directory

2002-05-11 Thread olinux
$dirPath = C:\somepath; $dhandle = opendir($dirPath); while ($filename = readdir($dhandle)) { echo $filename . br; }// end read filenames --- Andreas Indahl [EMAIL PROTECTED] wrote: Hi! How can I read all files in a directory, when I don't know which files are there? Sincerely

Re: [PHP] building a crawler with PHP

2002-05-13 Thread olinux
/ref.filesystem.php olinux --- Robert Mena [EMAIL PROTECTED] wrote: Hi, I'd like to know if anyone has good references (links, ps, pdf etc) about building a crawler and tips regarding doing that with PHP. This would be mostly for learning purposes. thanks

[PHP] sorting array in predefined order - uksort

2002-05-24 Thread olinux
; elseif ($a == 'east') return 3; elseif ($a == 'midwest') return 4; } uksort ($articles, cmp); Thanks much, olinux __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com -- PHP General Mailing List

Re: [PHP] PHP Toolbar for Homesite...

2002-08-29 Thread olinux
['']; } olinux --- Matt Zur [EMAIL PROTECTED] wrote: I made a php toolbar for Homesite v5. It's currently at v1.0 right now, but I'm looking for any suggestions anyone might have for the next version. http://zurnet.com/dl/hsphptb/ -- Matt Zur [EMAIL PROTECTED] http://www.zurnet.com Need

Re: [PHP] Re: str_replace question

2002-09-01 Thread olinux
something like this should do foreach ($reserved_words as $key = $value) { $reserved_words_bold[$key] = 'b'.$value.'/b'; } $string = str_replace($reserved_words, $reserved_words_bold,$string); olinux --- Gregor J [EMAIL PROTECTED] wrote: Same as with b.$reserved_words./b, i get Array

Re: [PHP] Good free PHP web stats package?

2002-09-04 Thread olinux
Webalizer is a fairly popular package, even used by a few fortune 500's if I remember correctly. Not PHP but fast and free. http://www.webalizer.com/ olinux --- tomba [EMAIL PROTECTED] wrote: I have a client that is hosted with a company that has a rather lame web stats package. I am

[PHP] Stock Market data - where can I get it?

2002-09-07 Thread olinux
, olinux __ Do You Yahoo!? Yahoo! Finance - Get real-time stock quotes http://finance.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about $_GET, etc

2002-09-12 Thread olinux
You need to turn register_globals off in your php.ini file. This is default in php 4.2+ Try this article for a great overview: http://www.webmasterbase.com/article/758/8 olinux --- swade [EMAIL PROTECTED] wrote: On my laptop i still have 4.11 apache,linux on it but its just

RE: [PHP] can you recommned a simple banner rotator in PHP

2002-09-12 Thread olinux
I'll second that - It's a truly professional solution. [even has a full user manual] Here are a couple articles you might want to checkk out: http://www.devarticles.com/content.php?articleId=126page=1 http://www.devshed.com/Server_Side/PHP/CommercialBreak/page1.html olinux --- Seán_Dillon

Re: [PHP] can you recommend PHP shopping cart

2002-09-18 Thread olinux
features and new contributions daily. olinux --- Peter J. Schoenster [EMAIL PROTECTED] wrote: Hi, Looking for a shopping cart. I've written plenty in the past but in Perl. I'm looking for one in PHP and I don't want to write my own. I looked at this: http://www.x-cart.com/ And I

Re: [PHP] reuse database connections

2002-09-18 Thread olinux
When you create a connection it is available to the end of the script run. You can run as many queries as you wish in the script and all will use the same connection. If you wish for multiple accesses to use the same connection, I think you will have to use persistent connections. olinux

Re: Re[2]: [PHP] counting words in a string

2002-09-28 Thread olinux
wouldn't it be easier and more efficient to simply count the number of spaces in the string (and add 1)? using substr_count or something similar olinux --- Justin French [EMAIL PROTECTED] wrote: You need to look at a few options... one is regular expression (not my forte), or perhaps

Re: [PHP] protect downloadable files

2002-12-12 Thread olinux
This has been covered several times recently - check the archives. zend.com has a great article detailing how to accomplish this. olinux --- Adam Voigt [EMAIL PROTECTED] wrote: Make the download link a PHP page: download.php?fileid+AD0-199 Then check to make sure there session is valid

Re: [PHP] Smarty + css + dreamweaver

2002-12-12 Thread olinux
use absolute path link rel=stylesheet href=/style.css type=text/css or link rel=stylesheet href=http://www.sitename.com/style.css; type=text/css --- Daniel Masson [EMAIL PROTECTED] wrote: Hi list : This is maybe a silly question from deamweaver users, i hope you people understand what i

RE: [PHP] Smarty + css + dreamweaver

2002-12-12 Thread olinux
Feliz Navidad y un Prospero 2,003 -Mensaje original- De: olinux [mailto:[EMAIL PROTECTED]] Enviado el: jueves, 12 de diciembre de 2002 16:14 Para: Daniel Masson; 'PHP' Asunto: Re: [PHP] Smarty + css + dreamweaver use absolute path link rel=stylesheet href

Re: [PHP] OOP for Web Programming Paradigm

2003-01-12 Thread olinux
I'm no OOP programmer but maybe extend your class to include methods for each situation. something like this: function countSingle($cid) function countMulti($cidArray) function countAll() HTH, olinux --- Victor [EMAIL PROTECTED] wrote: Hello. I have this question. When I program, I try

Re: [PHP] Ever complained about lousy PHP programmers?

2003-01-18 Thread olinux
I prefer single quotes on stuff that doesn't need to be parsed. In most cases this is more efficient, though probably not noticed except on a large scale. I also think it makes it easier to include html strings (because double quotes don't need to be escaped) and I find it easier to work my code

Re: [PHP] PHP Books

2003-01-19 Thread olinux
point and this will help lots to understand how the database can help you out. http://www.amazon.com/exec/obidos/external-search/002-6827406-7685618?tag=opera-20index=blendedkeyword=Sams+Teach+Yourself+SQL+10+Minutes olinux --- Armoured [EMAIL PROTECTED] wrote: hello, i have been told that i

Re: [PHP] Login scritp help needed.

2003-01-19 Thread olinux
on this as well. olinux --- Karl James [EMAIL PROTECTED] wrote: hey does anyone have a good login script that i can i can go buy on a tutorial sake. and also how to add the info correctly into a mysql database. Im kinda of a noobie so bare with me please. the books i have are not being

Re: [PHP] dreading OOP

2003-01-21 Thread olinux
The most helpful intro to OOP for me is the sidebar here: http://webreference.com/perl/xhoo/php1/5.html --- Jay Paulson [EMAIL PROTECTED] wrote: The easiest way for me to explain and understand OOP was to think of it this way. __ Do you

Re: [PHP] POST_with_PHP_--_please_help_!

2003-02-03 Thread olinux
You can do posts with curl http://www.php.net/manual/en/ref.curl.php olinux --- arthur.chereau [EMAIL PROTECTED] wrote: I need to redirect the browser to an external website and to automatically send POST data to the site, without a form. Basically I need header(Location

Re: [PHP] Associative to Numeric

2003-08-14 Thread olinux
http://www.php.net/array_values http://www.php.net/array_keys --- Gerard Samuel [EMAIL PROTECTED] wrote: What would be the quickest, most reliable means to convert an associative array to a numeric array. Running an implode()/explode() combination comes to mind, but reliablity can be

Re: [PHP] email confirmation script

2003-08-14 Thread olinux
Read the manual notes for mail() and find out how to send html messages. www.php.net/mail or better - just send a text message make your link shorter though so the link won't break. olinux --- Anthony Ritter [EMAIL PROTECTED] wrote: This is what I receive via e-mail after I click submit

Re: [PHP] google style paginating

2003-08-21 Thread olinux
PEAR::DB_Pager is a good example of how to do this. The getData function is all you need. http://pear.php.net/DB_Pager http://cvs.php.net/co.php/pear/DB_Pager/Pager.php?login=2r=1.4 olinux --- Ted Conn [EMAIL PROTECTED] wrote: Hi I am new to this newsgroup and I plan on replying to all

Re: [PHP] Administration packages

2003-06-05 Thread olinux
I'm sure you are already aware of PEAR, if you havent checked it out, you should olinux Hey everyone, I find myself building alot of admin control areas, or in otherwords, a group of forms that lets an end user control data and appearances of his/her site. What I am looking

Re: [PHP] Search Engines and Last-Modified Header (was: Variables don't pass...)

2003-05-29 Thread olinux
already indexed it does not get indexed? olinux On Wed, 28 May 2003 09:31:11 -0500, Jay Blanchard wrote: I wouldn't go as far as using the auto_prepend_file. Neither would I in this case Jay.It was simply an example of what could be done, not necessarily what SHOULD be done. I did

Re: [PHP] Help about these algorithm methods

2003-05-31 Thread olinux
Here's an article that covers tree and stack http://www.evolt.org/article/Four_ways_to_work_with_hierarchical_data/17/4047/index.html olinux --- [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello all, I need help about to implement these methods in PHP: 1) Tree (Arbol) 2) Queue - FIFO

Re: [PHP] Classes vs. functions?

2003-06-03 Thread olinux
Here is an excellent article describing classes/objects - what they are and are not. http://phpmag.net/itr/online_artikel/psecom,id,284,nodeid,114.html olinux Can someone please explain to me when is a class useful over a set of functions? __ Do you Yahoo

Re: [PHP] getting file contents

2003-06-11 Thread olinux
'; ? note: whatever you include will be parsed if it has php tags, regardless of the file extension olinux --- Matt Palermo [EMAIL PROTECTED] wrote: I have text a file which contains php code. I am using it as a template for some other pages. I want to take everything in that file and store

Re: [PHP] shopping cart and login system

2003-06-14 Thread olinux
hi --- electroteque [EMAIL PROTECTED] wrote: hi there , i am about to build a shopping cart which will interact with a paypal payment system , the cart will use sessions to store the items and basket information before checking out and posting to the paypal form , what i'd like to know is

Re: [PHP] php.net's custom 404 scripts

2003-06-30 Thread olinux
://www.phpbuilder.com/columns/tim2526.php3 olinux --- Justin French [EMAIL PROTECTED] wrote: Hi all, I used to have a bookmark for how php.net's custom 404/redirect/search script worked, but I can't find it now, and can't see it on php.net... has anyone got a link? Not sure

Re: [PHP] Authentication system

2003-07-05 Thread olinux
there's a good example in this article A Complete, Secure User Login System by Tim Perdue http://www.phpbuilder.com/columns/tim2505.php3 olinux On 2 Jul 2003 at 13:00, Mike Migurski wrote: You may find it easier to include, in the e-mail, a uniquely-generated, limited-time URL

[PHP] Re: [PHP-DB] Compiling 4.2.3 with MySQL ... what does it look for?

2003-07-05 Thread olinux
try --with-mysql=/usr --- -{ Rene Brehmer }- [EMAIL PROTECTED] wrote: X-posted to PHP General, PHP DB, and MySQL Hi gang Attempting to get my Linux test-server working, but ran into a problem when making PHP... System is RedHat 8, Apache 1.3.27 (compiled myself, tested OK), MySQL

Re: [PHP] Newbie Directory question

2003-07-12 Thread olinux
olinux --- [EMAIL PROTECTED] wrote: I'm wondering if there is a way to have your php development files in another directory other than htdocs when using apache. Similar to the virtual directories IIS uses. __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95

Re: [PHP] Re: classes v. functions

2003-07-19 Thread olinux
I'm quite new to OOP myself, but these two articles helped my understanding a lot See the sidebar - Classes and Object Oriented Programming http://webreference.com/perl/xhoo/php1/5.html Taking PHP the OO way http://phpmag.net/itr/online_artikel/psecom,id,284,nodeid,114.html olinux --- Sam

RE: [PHP] osCommerce and modifications

2003-07-19 Thread olinux
without any template system. olinux --- Edward Peloke [EMAIL PROTECTED] wrote: thanks Richard, I will take a look. osCommerce does a create job of creating an online marketplace. The problem is to add items, you need to go through the admin pages. We need to be able to allow users to add

Re: [PHP] Alternating Row Colors in PHP........

2003-02-08 Thread olinux
Pop this in your loop $bgcolor = ($i++ % 2) ? '#FF' : '#EE'; echo tr bgcolor=\$bgcolor\; olinux --- CF High [EMAIL PROTECTED] wrote: Hey all. I'm coming from Cold Fusion to PHP; in CF I could alternate rows with the following: tr bgcolor=###Iif(((CurrentRow MOD 2) is 0

[PHP] Browser displays binary data

2003-02-12 Thread olinux
this is happening on the fly. ZLib Support enabled Compiled Version 1.1.3 Linked Version 1.1.3 zlib.output_compression Off Off zlib.output_compression_level -1 -1 zlib.output_handler no value no value Any ideas? Thanks much, olinux

Re: [PHP] RE: Login system using PHP/MySql

2003-02-13 Thread olinux
://www.devarticles.com/art/1/241 (you can find the other 5 parts) olinux --- YC Nyon [EMAIL PROTECTED] wrote: Hi, I have looked at many examples session-based of login/password system to protect webpages but can't get it to work. Seems simple but... I have php and mysql installed in my windows

Re: [PHP] programming question

2003-02-13 Thread olinux
You could make $category_array2 global function getGrandParent($cat_id, $year_model_id, $x) { global $category_array2 ... olinux --- Thomas Moore [EMAIL PROTECTED] wrote: I am trying to return a variable from a recursive function. If the recursive function gets called, the nothing

Re: [PHP] Keeping site metrics

2003-02-14 Thread olinux
http://www.devshed.com/Server_Side/PHP/Logging/page1.html http://www.google.com/search?hl=enlr=ie=UTF-8oe=UTF-8q=php+logging olinux --- Daniel Guerrier [EMAIL PROTECTED] wrote: Can someone direct me to a tutorial or provide insight on how to track site vistors usage. This would include

Re: [PHP] Re: date calculation

2003-02-16 Thread olinux
If you're using a database, it may be able to take care of this for you. If you're using mysql: 6.3.4 Date and Time Functions http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Date_and_time_functions olinux --- Fred Merritt [EMAIL PROTECTED] wrote: Qt

Re: [PHP] Help with authentication 'design'

2003-02-18 Thread olinux
You may want to check out PEAR::LiveUser http://pear.php.net/package-info.php?pacid=126 http://projects.21st-hq.de/liveuser/ A very complete / multilevel authentication package. Get the latest source from CVS as the source on pear site is a bit outdated. olinux --- Clarkson, Nick [EMAIL

Re: [PHP] internal site search

2003-02-18 Thread olinux
://www.searchtools.com/tools/tools-opensource.html olinux --- David Otton [EMAIL PROTECTED] wrote: On Tue, 18 Feb 2003 13:35:14 +, you wrote: i wanna make an internal site search, i wanna search my internal html pages and php pages..and i have no clue how to do thatany help

Re: [PHP] php ecommers site

2003-02-19 Thread olinux
/Complete_Scripts/Shopping_Carts/ olinux --- Chris Knipe [EMAIL PROTECTED] wrote: Lo all, Is there any good already developed PHP based commerce solutions out there? I'm preferably looking for something with catalogues (product pics, descriptions, ratings, buyer comments, etc), online

Re: [PHP] user registration system

2003-02-21 Thread olinux
this is decent A Complete, Secure User Login System by tim perdue http://phpbuilder.com/columns/tim2505.php3 and of course - hotscripts.com --- Dennis Gearon [EMAIL PROTECTED] wrote: Anybody know of a good user registration system, using emailed web addresses for verification of email

[PHP] dynamic website screenshot/screen capture

2003-02-21 Thread olinux
. It would be great for a couple projects I'm working on to use this in the same style as alexa.com. (featuring screenshots next to search results.). thanks for any info! olinux __ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http

Re: [PHP] dynamic website screenshot/screen capture

2003-02-22 Thread olinux
right - I was thinking more along the lines that php would loop thru URL database and then trigger IE somehow (have to be on windows box but not production server) The macro idea sounds like the best bet. Thanks olinux --- Justin French [EMAIL PROTECTED] wrote: on 22/02/03 5:55 PM, olinux

Re: [PHP] Printer Friendly page

2003-02-22 Thread olinux
make your own. what could be simpler? If you have data that is generated with php, just change the output to just send very basic html page. olinux --- Sebastian [EMAIL PROTECTED] wrote: Greetings all. I am looking for a simple print page script. I tried just about all the print scripts

Re: [PHP] Flash interaction with PHP

2003-02-23 Thread olinux
never used php and flash but a quick search and you would have found these. http://www.polar-lights.com/fla/url.html http://www.phpbuilder.com/columns/hill20011214.php3 http://www.flashkit.com/tutorials/Dynamic_Content/ --- pei_world [EMAIL PROTECTED] wrote: do you know how to load the

Re: [PHP] Help with Arrays

2003-02-27 Thread olinux
and what problem is that? how about just using the example? http://www.php.net/manual/en/function.file.php $lines = file ('http://www.example.com/'); // Loop through our array, show html source as html source; and line numbers too. foreach ($lines as $line_num = $line) { echo Line

Re: [PHP] Get data from 5 tables

2003-03-05 Thread olinux
SELECT * FROM table1, table2, table3, table4 WHERE id = 1 AND table1.id=table2.id AND table2.id=table3.id AND table3.id=table4.id AND etc. or you can use a JOIN http://www.mysql.com/doc/en/JOIN.html --- Osman Omar [EMAIL PROTECTED] wrote: Hi, How do I query to get data from 5 tables with

Re: [PHP] Do query strings get spidered by Google?

2003-03-15 Thread olinux
are doing some type of validation of the data that is being passed via the URL. olinux --- Mike Hillyer [EMAIL PROTECTED] wrote: Hi All; I am trying to decide how to lay out a site with a lot of articles, and I am wondering if query strings get spidered by Google. I was thinking it would make

Re: [PHP] PHP Project for a newbie (me) or for hire?

2003-03-17 Thread olinux
This might be helpful as well. http://www.databaseanswers.com/data_models/hotels/index.htm olinux --- Dan Sabo [EMAIL PROTECTED] wrote: Hi, I have a huge potential project and I'm fairly new to PHP. I've been managing shopping carts for years for people, Miva Merchant, doing sites

Re: [PHP] User Authentication

2003-03-18 Thread olinux
info http://us2.php.net/manual/en/security.registerglobals.php http://us2.php.net/manual/en/function.session-register.php olinux --- shaun [EMAIL PROTECTED] wrote: Chris Shiflett [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] --- shaun [EMAIL PROTECTED] wrote: Using

Re: [PHP] Cleaning user data

2003-03-19 Thread olinux
You can also use basic functions like is_numeric() [to make sure the value is numeric - duh] or a custom function to do something like check for a valid email address format. I have a news site that explodes the URL to get values for the directory/article it is supposed to display. since the

Re: [PHP] Select email addresses from MySQL

2003-03-21 Thread olinux
matches. olinux --- Tim Thorburn [EMAIL PROTECTED] wrote: Hi, A few days ago I posted a question about sending mass emails through PHP - the good news is I've got my script sending an email to each address stored in my MySQL database. Now my client would like the ability to individually

[PHP] Re: [PHP-DB] Making tree menu

2003-03-20 Thread olinux
://searchdatabase.techtarget.com/tip/1,289483,sid13_gci801943,00.html olinux --- Daniel Harik [EMAIL PROTECTED] wrote: Hello guys I make following query: mysql SELECT b.type, a.link AS parent_link, b.link AS child_link FROM bookmarks AS a, bookmarks AS b WHERE a.id = b.parentid order

Re: [PHP] webeditor

2003-03-29 Thread olinux
Here's another that was posted recently. looks cool. http://www.interactivetools.com/products/htmlarea --- Miles Thompson [EMAIL PROTECTED] wrote: http://www.editworkspro.com/index.php I've not used it, and it requires IE - but the demo was impressive. Miles At 11:21 AM 3/28/2003

Re: [PHP] Nested select options from database.

2003-04-02 Thread olinux
=536mode=2 http://www.jsexamples.com/example/?ex=458mode=2 olinux __ Do you Yahoo!? Yahoo! Tax Center - File online, calculators, forms, and more http://tax.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] submitting a form to multiple places!!!

2002-10-02 Thread olinux
=123something=456'; $fp = fopen (c:\\data\\info.txt, r); - then my script continues to insert info an output confirmation message olinux --- Henry [EMAIL PROTECTED] wrote: Hi All, I have a problem that I hope you can help me with. I'm using a third party shopping cart solution which

Re: [PHP] submitting a form to multiple places!!!

2002-10-02 Thread olinux
If you need something more complex look into CURL as suggested earlier http://curl.haxx.se/ http://www.php.net/curl olinux --- olinux [EMAIL PROTECTED] wrote: Here's what I do. We have an outsourced email newsletter management system that accepts GET method - so I just use fopen

Re: [PHP] php code in templates... how to?

2002-10-04 Thread olinux
eval() should work for you http://www.php.net/eval You also may want to consider including files coded something like this: html head?=$headers;?/head title?=$title;?/title body ?=$header;? ?=$body;? ?=$footer;? /body /html Then you just set the values for the vars in your code - include the

RE: [PHP] CC Processing Merchants

2002-10-09 Thread olinux
You can find a lot of good information and comparisons here: http://www.merchantworkz.com olinux -Original Message- From: Andrew Brampton [mailto:[EMAIL PROTECTED]] Sent: Thursday, 10 October 2002 9:49 AM To: [EMAIL PROTECTED] Subject: [PHP] CC Processing Merchants Sorry

Re: [PHP] PHP caching ideas?

2002-10-14 Thread olinux
Smarty template will allow you to cache certain pieces. http://smarty.php.net olinux --- Krzysztof Dziekiewicz [EMAIL PROTECTED] wrote: Is the general logic to slice the page into some general pieces. For example ones that have always general data and those that change. Then the ones

Re: [PHP] Adding Content Management to live site

2002-10-24 Thread olinux
pages is pretty much cake work. A simple query will grab todays news, the past week, a month from 2000 or whatever. You can email me if you'd like some code pieces. olinux --- Maxim Maletsky [EMAIL PROTECTED] wrote: You could leave the site links the way they are by working out a good logic

Re: [PHP] Sample Meeting Management System

2002-10-29 Thread olinux
Try these http://www.hotscripts.com/PHP/Scripts_and_Programs/Groupware_Tools/ http://www.hotscripts.com/search/?query=meetingcategory=php olinux --- Faisal Abdullah [EMAIL PROTECTED] wrote: Hi people, Do you know where I can look at a free meeting management system? Nothing too fancy

Re: [PHP] Multiple Addresses Mailer

2002-10-30 Thread olinux
The best solution would probably be to send each email by itself or do the actual sending thru a mailing list program. BCC works great, but a lot of spam filters will catch it - plus some shared servers have a limit on the number of BCC's on a single mail piece. olinux --- Rick Emery [EMAIL

Re: [PHP] Multiple Addresses Mailer

2002-10-31 Thread olinux
... olinux __ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Geographic IP location

2002-11-02 Thread olinux
://www.serviceobjects.com/products/dots_ipgeo.asp Thanks for any input, olinux __ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Geographic IP location

2002-11-02 Thread olinux
This is a great class, but NetGeo uses only whois records, I think that the more accurate solutions also use some sort of ip domain name analyisis to find city location. Thanks, olinux --- Jason Reid [EMAIL PROTECTED] wrote: http://www.phpclasses.org/netgeoclass that 'should' work

Re: [PHP] Re: WAP resources for PHP

2002-11-07 Thread olinux
a validator http://www.w3schools.com/wap/ olinux --- [EMAIL PROTECTED] wrote: Well, PHP and WAP are fully compatible. You just need to ouput PHP in a wap format and not html. You should learn the wap tags in w3c.org. -- M.CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com

Re: [PHP] data verification trough _POST arrays

2002-11-07 Thread olinux
['fieldname'];? what is the correct method for save _POST in _SESSION variables, so the values can be preserved for later retrieval? $_SESSION['fieldname'] = $_POST['fieldname']; olinux __ Do you Yahoo!? U2 on LAUNCH - Exclusive greatest hits

Re: [PHP] Online Booking System/Framework question

2002-11-10 Thread olinux
Lots of good ideas here: http://www.databaseanswers.com/data_models/index.htm olinux --- Steve Purkiss [EMAIL PROTECTED] wrote: Hi all, I wrote a site a while back which has a booking system for event guest lists. It was my first venture into PHP, and now that it needs some more work

Re: [PHP] My first XML!

2002-11-27 Thread olinux
Here's a start for you ? /* Connect to database */ $sql = SELECT * FROM categories ORDER BY parent_id,cat_id ASC; $result = @mysql_query($sql) or die(Couldn't select categories.); $menu = array(); while ($row = mysql_fetch_array($result)) { $id = $row['cat_id']; $category =

Re: [PHP] Streaming audio

2002-11-27 Thread olinux
. olinux At 12:55 PM 11/27/2002 -0800, Mako Shark wrote: Does anyone know how to do streaming audio with PHP? No clue if this is even possible. I've checked around a bit, looked at some script sites, but nothing seems to give a clue. I *think* it might be possible to set something like

Re: [PHP] PHP and WebDAV

2002-12-02 Thread olinux
the Temp files folder) web browser. olinux --- [EMAIL PROTECTED] wrote: Hi All I am currently working on a simple document management system in PHP. Metadata and revision histories and other relevant data is stored in a PostgreSQL database. I would like to set up this system so

Re: [PHP] does anybody know PHPlib's source site?

2002-12-03 Thread olinux
--- Alexander A. Savenkov [EMAIL PROTECTED] wrote: Hi All. does anybody know PHPlib's source site? Google does __ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- PHP General Mailing List

  1   2   >