[PHP] File upload error

2001-01-26 Thread Data Driven Design
Driven Design PO Box 1084 Holly Hill, Florida 32117 http://www.datadrivendesign.com http://www.rossidesigns.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e

Re: [PHP] Good Free PHP Editor?

2001-03-12 Thread Data Driven Design
It sounds like you just described Homesite. - Original Message - From: Harshdeep S Jawanda [EMAIL PROTECTED] To: Andrew Halliday [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, March 12, 2001 7:54 AM Subject: Re: [PHP] Good Free PHP Editor? Hi, Andrew Halliday wrote: Does

Re: [PHP] Shopping Carts and Sessions

2001-03-16 Thread Data Driven Design
Can this be used via .htaccess in a shared hosting situation? - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 16, 2001 10:15 AM Subject: Re: [PHP] Shopping Carts and Sessions In a message dated 3/16/01 9:39:16 AM Eastern Standard Time, [EMAIL

Re: [PHP] header:(location) error

2001-03-17 Thread Data Driven Design
Do you have any white space outside of your ?php ? tags? That is considered as output by the parser. - Original Message - From: Stas Newdel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 17, 2001 6:56 AM Subject: Re: [PHP] header:(location) error Brett, I only have

Re: [PHP] Expire data from form

2001-03-18 Thread Data Driven Design
You can use javascript and set the history length to 0 script language="javascript" !-- history.length=0; // -- /script - Original Message - From: Sheni R. Meledath [EMAIL PROTECTED] To: PHP Masters [EMAIL PROTECTED] Sent: Saturday, March 17, 2001 11:47 PM Subject: [PHP] Expire data

Re: [PHP] Using php4.02 on IIS5

2001-03-19 Thread Data Driven Design
If you're talking about windows PWS that's probably your path that you set in the .reg file needs to point directly at the .dll file you chose, whether it was the isapi or exe. Move the .dll file out of the 'sapi' folder into the main php folder and you'll probably be ok. - Original Message

Re: [PHP] get name of file

2001-03-19 Thread Data Driven Design
?php echo $SCRIPT_NAME ? - Original Message - From: Matthew Delmarter [EMAIL PROTECTED] To: PHP Mailing List [EMAIL PROTECTED] Sent: Monday, March 19, 2001 6:51 PM Subject: [PHP] get name of file How do I return the name of a file without any extensions or path info. Eg how do I

Re: [PHP] get filename?

2001-03-20 Thread Data Driven Design
$PHP_SELF will be the filename including $QUERY_STRING and $PATH_INFO variables, $SCRIPT_NAME should be just the filename. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 20, 2001 5:19 AM Subject: [PHP] get filename? Hi Whats the best method

Re: [PHP] Hello $variable, whats your name?

2001-03-22 Thread Data Driven Design
You can cycle through the $HTTP_POST_VARS or $HTTP_GET_VARS arrays depending on whether you use 'post' or 'get' for the methos in you form while(list($key,$val)=each($HTTP_POST_VARS)) { print "$key:$valbr\n"; } - Original Message - From: JCampbell [EMAIL PROTECTED] To: Main PHP List

Re: [PHP] drop down used to redirect?

2001-03-25 Thread Data Driven Design
You can do it with javascript like this. script language="javascript" function go(selectBox) { var where = selectBox.options[selectBox.selectedIndex].value; if (where != "") window.location = where; } /script form select onchange="go(this)" option value="page.html"Page/option ... Or you can

Re: [PHP] Newbie - MySQL Question - Finding Unique Names in Column

2001-03-27 Thread Data Driven Design
I think you mean distict, as in $query = "SELECT DISTINCT band_name FROM table WHERE ..."; Data Driven Design P.O. Box 1084 Holly Hill, FL 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Rami Krayem [EMAIL PROTECTED]

Re: [PHP] HTML to Text

2001-03-28 Thread Data Driven Design
Isn't that what strip_tags() does? http://www.php.net/manual/en/function.strip-tags.php Data Driven Design P.O. Box 1084 Holly Hill, FL 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Boget, Chris [EMAIL PROTECTED] To: Php (E-mail

Re: [PHP] Tab Index Functionality

2001-03-30 Thread Data Driven Design
ot; In this example tabing order would be 1, 3, 2 There's also an Internet Explorer only attribute called notab Data Driven Design P.O. Box 1084 Holly Hill, FL 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Wayne Joyner [EMAIL PROTECTE

Re: Re: [PHP] dumb mysql_connect issue

2001-07-31 Thread Data Driven Design
Is the error coming from a mysql_query() line or a mysql_select_db() line? Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: CGI GUY [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday

[PHP] file downloads

2001-08-04 Thread Data Driven Design
]; $parts = split(/,$path); $file_name = $parts[count($parts)-1]; header(Content-Type: application/download\n); header(Content-Disposition: attachment; filename=$file_name); header(Content-Transfer-Encoding: binary); $fn=fopen($path , r); fpassthru($fn); ? Data Driven Design 1506 Tuscaloosa Ave

Re: [PHP] file downloads

2001-08-04 Thread Data Driven Design
); header(Content-Disposition: attachment; filename=$file_name); header(Content-Transfer-Encoding: binary); readfile($path); ? This should work shouldn't it? - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: Data Driven Design [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent

Re: [PHP] file downloads

2001-08-04 Thread Data Driven Design
); header(Content-Transfer-Encoding: binary); readfile($path); Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: Data Driven

Re: [PHP] Display the weather on my site

2001-08-06 Thread Data Driven Design
The weather channel used to offer this service, for a single site it 'was' free, a year or so ago, I'm not sure of the cost for getting this info for multiple cities. I think they are www.weather.com Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http

Re: [PHP] Question about security: writing images to a directory (chmod 777)

2001-08-10 Thread Data Driven Design
Using the ftp functions is an alternative http://www.php.net/manual/en/ref.ftp.php Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: SED [EMAIL PROTECTED

Re: [PHP] Php on Windows not running!!! Any help ???

2001-08-10 Thread Data Driven Design
I used to use PWS, but now I use Apache, maybe I can help. Did you: . move the php.ini and php4ts.dll to your system folder . put the correct path in the registry editing file and double click it . check the box for 'Execute' in your PWS administration Data Driven Design 1506

Re: [PHP] Re: Problems with exec

2001-08-12 Thread Data Driven Design
I've used system() instead of exec() on windows systems with success before. Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Richard Lynch [EMAIL PROTECTED

Re: [PHP] auto-input data into form boxes

2001-08-15 Thread Data Driven Design
=text name=\numb\ value=\$numb\ size=5/centerbr; print centerinput type=submit value=\Do_It!\/center; print /form; ? Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message

Re: [PHP] loose variables when url parsed through Netscape

2001-08-16 Thread Data Driven Design
of time all you need to pass in the url from the processing company is an id# to look up the info in your database. Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From

Re: [PHP] File uploads in PHP

2001-08-16 Thread Data Driven Design
This is a very good tutorial on the subject. http://www.thickbook.com/extra/php_fileupload.phtml Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Dr. Evil

Re: [PHP] How do I read the first n lines from a file?

2001-08-28 Thread Data Driven Design
You might be better off using the file() function which reads a file into an array, then you can use the indexes to get whatever lines you want http://www.php.net/manual/en/function.file.php Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone

[PHP] networking

2001-08-31 Thread Data Driven Design
, and the internet from the linux machine? Thanks Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Tracking shipments UPS, FEDEX, etc...

2001-09-06 Thread Data Driven Design
The ups tools are quite complicated. You have to open a pipe and the send and retrieve xml documents. Not for the weak of heart. Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original

Re: [PHP] Other lists

2001-09-11 Thread Data Driven Design
The lists from the html writers guild are good. www.hwg.org Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Seb Frost [EMAIL PROTECTED] To: php list [EMAIL

Re: [PHP] Book

2001-09-13 Thread Data Driven Design
If you own it you should read it. Data Driven Design 1506 Tuscaloosa Ave Holly Hill, Florida 32117 http://www.datadrivendesign.com Phone: (386) 226-8979 Websites That WORK For You - Original Message - From: Kurth Bemis [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September

Re: [PHP] Refreshing multiple frames?

2001-05-07 Thread Data Driven Design
Link to another frameset page if you choose not to use javascript. But IMO there's no such thing as a proper use of frames. Frames should never be used for anything. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net

Re: Lists are back up

2001-06-18 Thread Data Driven Design
Thank You. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 3:15 PM Subject: Lists are back up We

Re: [PHP] mailform loop

2001-06-20 Thread Data Driven Design
You might try something like this. while(list($key,$val) = each($HTTP_POST_VARS)) { $$key = addslashes($val); } Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Wilbert Enserink

[PHP] system() call to payflow pro

2001-06-29 Thread Data Driven Design
=32117[EMAIL PROTECTED]] in e:\www\roffice.net\ssl\bouncersbible\sec_order.php on line 104 I'm assuming that my host moved or deleted the executable in question. Is there another possible cause? Username/password changed. Thanks Data Driven Design 1506 Tuscaloosa Ave Holly Hil, FL 32117 http

Re: [PHP] Week Number

2001-06-30 Thread Data Driven Design
I didn't see anything built in but you might try (date(z)/7) +1 Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Matt TrollBoy Wiseman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: [PHP] Using an image as a reset button on a PHP script

2001-07-14 Thread Data Driven Design
You have to use javascript form name=the_form ... a href=javascript:document.the_form.reset()img /a /form Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Brandon Orther [EMAIL

Re: [PHP] Open window2 (javascript), enter info in a form, then close window2 and refresh window1. help.

2001-07-26 Thread Data Driven Design
It's possible that adding target=_top to your form tag in the popup might solve your problem. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Matthew DeChant [EMAIL PROTECTED] To: 'PHP

[PHP] $PATH_INFO

2001-02-27 Thread Data Driven Design
as http://www.mydomain.com/index.php/somevar/someothervar It could make things easier for me if it is. Data Driven Design PO Box 1084 Holly Hill, Florida 32117 http://www.datadrivendesign.com http://www.rossidesigns.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] $PATH_INFO

2001-02-27 Thread Data Driven Design
I already know that the second example works, I just wanted to know if the first would before I try it on a live site. Data Driven Design PO Box 1084 Holly Hill, Florida 32117 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: "Sam Masiello&qu

Re: [PHP] how can i extract from such an array??

2001-03-02 Thread Data Driven Design
$email_list = implode(",",$emailto); The name in your select probably doesn't need the $ Data Driven Design PO Box 1084 Holly Hill, Florida 32117 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: "Sandeep Hundal" [EMAIL P

Re: [PHP] BUG - Someone else please verify B4 I file

2001-04-04 Thread Data Driven Design
I've noticed that and had to rewrite several scripts when hosts upgraded from PHP3 to PHP4. $HTTP_POST_VARS is considered set even when it is empty. Data Driven Design P.O. Box 1084 Holly Hill, FL 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message

Re: [PHP] sending mail.. PLEASE HELP!

2001-04-12 Thread Data Driven Design
I couldn't get it to work by changing php.ini either, I guess my isp mail server wouldn't relay. I downloaded a mailserver from www.tnsoft.com , its not free but it is an option if you get too frustrated trying to make it work. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084

Re: [PHP] pumping database dump in mysql

2001-04-21 Thread Data Driven Design
Isn't that what load data infile does? http://www.mysql.com/doc/L/O/LOAD_DATA.html Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Peter Van Dijck [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] create bar chart

2001-04-24 Thread Data Driven Design
with a lot less overhead than using GD. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Ali [EMAIL PROTECTED] To: 'Php-General (E-mail)' [EMAIL PROTECTED] Sent: Monday, April 23, 2001 10:37 AM

[PHP] hdml simulator?

2001-05-04 Thread Data Driven Design
I'm writing some wireless content in PHP and I've found several wml simulators but none for hdml. The up.sdk says it works for hdml but displays my wml content. Anybody know where to find a hdml simulator? Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http

Re: [PHP] PHP on PWS not working!

2001-05-04 Thread Data Driven Design
I use PWS what errors are you getting? Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Thomas Edison Jr. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 04, 2001 2:00 PM

Re: [PHP] PHP on PWS not working!

2001-05-04 Thread Data Driven Design
Did you check the execute box uder the home directory properties? I think that's when I got that error. Also you need to reboot after you make the registry entries, even though the instructions don't say so. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http

Re: [PHP] PHP on PWS not working!

2001-05-04 Thread Data Driven Design
In the regedit file where you put the path assuming the path is C:\php\sapi\php4isapi.dll You would enter C:\\php\\sapi\\php4isapi.dll Into the places where it says to put the path. Then save that file, then double click it, and click ok. Then reboot windows. Data Driven Design P.O. Box 1084

Re: [PHP] PHP on PWS not working!

2001-05-05 Thread Data Driven Design
Maybe somebody who REALLY knows can help, because it appears to me that you've done everything right. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net - Original Message - From: Thomas Edison Jr. [EMAIL PROTECTED