[PHP] mailTo

2001-01-21 Thread [EMAIL PROTECTED]
I am wrting a php page that will write out an email message to the email address retrieved from Db. If i want to have CC function togethere with mailTo, how could I do that? cheers Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself"

[PHP] convert ASP to be PHP

2001-01-21 Thread [EMAIL PROTECTED]
Hi people, I have one ASP site that need to be converted to be PHP3 ( on Linux OS). Is there any proper way to do this? The database detail is that the ASP site is using SQL7.0. And the database server that is avaliable on my Linux server is MySql. Any thoughts? Jack [EMAIL PROTECTED] "There

[PHP] Convert DBF tu MySQL

2001-01-21 Thread Roman
Hello !! Please, help me someone. How to convert dbf file from FOXPRO(for DOS) to MySQL database if it's posible, or if not how to connect this dbf file form php script and apply sql command for used data from this file... Thanx R

[PHP] serve local file but remote url

2001-01-21 Thread Eric Dahnke
hi, this is off toopic, but don't know where to turn. would appreciate some help. during an http request, is it possible serve a local html file yet return to the browser a different remote url (say yahoo.com for example)? i'm looking at mod_rewrite, but it what i describe above doesn't seem

Re: [PHP] GD => ImagePNG: No transparency

2001-01-21 Thread Rasmus Lerdorf
How many colours in your image? Don't forget that GD can only handle 8-bit colour. -Rasmus On Mon, 22 Jan 2001, Niklas Saers wrote: > Hi. I'm afraid I have to say that the transparency in PHP with GD doesn't > seem to work. Let me give you an example. The included file, midblob.png, has > a tr

[PHP] GD => ImagePNG: No transparency

2001-01-21 Thread Niklas Saers
Hi. I'm afraid I have to say that the transparency in PHP with GD doesn't seem to work. Let me give you an example. The included file, midblob.png, has a transparent area where the color is #bcbcad. Take a look at the following code: if(!isset($text)) $text="Remember to define \$text"; $font = 5;

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread mwaples
Dale Robinson wrote: > > Everyone seems to recommend turning off register_globals, but accessing them > through $HTTP_POST_VARS["var_name"], gets tedious. > > I haven't found a better solution (not to say there isn't one) than this > small snippet. > > The idea is to turn off "register_globals"

[PHP] Newsletter Software needed urgently...

2001-01-21 Thread Maxim Maletsky
Hello guys, I am sure many of you have it on your websites: Newsletter yup, that is, a newsletter software written in PHP. Does anyone have/know/wrote a good one? Basic features needed are: PHP/mySQL - written multiple lists import/export subscribers Name/Company support (in other

php-general Digest 22 Jan 2001 05:54:20 -0000 Issue 469

2001-01-21 Thread php-general-digest-help
php-general Digest 22 Jan 2001 05:54:20 - Issue 469 Topics (messages 35909 through 35960): Re: GetImageSize problem 35909 by: Thies C. Arntzen 35912 by: eschmid+sic.s.netic.de W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert 35910 by: Philipp Althaus 3591

Re: [PHP] Calendar program

2001-01-21 Thread Jeff Lacy
M$ Outlook? I don't know, but try Outlook :-) Jeff "Todd Cary" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does a calendar program exist in PHP similar to Yahoo's program? > (http://www.yahoo.com/calendar) > > Todd > > -- > Todd Cary > Ariste Software

Re: [PHP] How to send the whole form content to database

2001-01-21 Thread Richard Lynch
1. I have create a email sending form. After I enter all the particulars, while sending this mail to somebody. Can anybody tell me that how can I store the whole particular from that email form into my database. $query = "insert into yourtable (field1, field2, ...) values('$field1', '$field2', ..

Re: [PHP] PHP Editors

2001-01-21 Thread Jeff Lacy
Textpad is pretty good on Micro$ucks products. It has a free evaluation which isn't very bothersome (unlike others...). You can examine it as www.textpad.com. ""Karl J. Stubsjoen"" <[EMAIL PROTECTED]> wrote in message 003701c0815f$b6f80e40$0afc020a@kstubsjoen">news:003701c0815f$b6f80e40$0afc02

Re: [PHP] file storage/downloader...

2001-01-21 Thread Toby Butzon
Do just what you said and create a directory outside of your Apache doc root. Just make sure the user PHP is running as has permissions to access the directory ;) Then use PHP's fpassthru, etc., to send the content of the file back. You will need to send a mime-type header; take a look around - t

RE: [PHP] file storage/downloader...

2001-01-21 Thread Jason Murray
> If I store the file in a non-apache directory, how does the > user download the file? Use a file, "download.php" that will make sure the user is authenticated, then fetch the contents of the file, and send the file to the browser. Jason -- PHP General Mailing List (http://www.php.net/) To

[PHP] file storage/downloader...

2001-01-21 Thread johnny p.
Ok, here's the prolem: I'm trying to create a feature on my site similar to xdrive.com. Basically I want the user to be able to upload a file and have it stored on my server. I also want to have the ability for the user to download the file at a later time. Account authentiaction is handled, n

RE: [PHP] MySQL Query Error

2001-01-21 Thread Matt Stone
No, that is exactly as the PHPLib Debug function is returning... :| -Original Message- From: Samantha Savvakis [mailto:[EMAIL PROTECTED]] Sent: Monday, 22 January 2001 3:21 PM To: Matt Stone Subject: RE: [PHP] MySQL Query Error I'm not sure why are getting that error. Is the statement

Re: [PHP] writing a binary file to a browser

2001-01-21 Thread Toby Butzon
Might want to check out fpassthru (http://www.php.net/fpassthru). Good luck - --Toby - Original Message - From: "Mike Chambers" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 22, 2001 12:20 AM Subject: [PHP] writing a binary file to a browser > I am trying to open a

[PHP] How to send the whole form content to database

2001-01-21 Thread hoo chong wei
Hi there, I'm a beginner using php. Currently, I'm develope a online registration system. I face some problems, hope that some one can help me to solve it. 1. I have create a email sending form. After I enter all the particulars, while sending this mail to somebody. Can anybody tell me that

[PHP] writing a binary file to a browser

2001-01-21 Thread Mike Chambers
I am trying to open a binary file from a URL, and then send that file back to the user's browser (after setting the appropriate content-type). I think i have a handle on how to open the file : using either fread() or file() however, i am not sure how to iterate through the bytes, get the file s

[PHP] MySQL Query Error

2001-01-21 Thread Matt Stone
Hi, I have a MySQL statement, namely: SELECT COUNT(*) AS Count FROM images i LEFT JOIN categories c ON i.cat_id=c.id LEFT JOIN subcategories s ON i.subcat_id=s.id I want to change the LEFT JOINs to INNER JOINs like so: SELECT COUNT(*) AS Count FROM images i INNER JOIN categories c ON i.cat_id=c.i

RE: [PHP] Build with Apache on Linux

2001-01-21 Thread johnny p.
Try following the instructions on the devshed page: http://www.devshed.com/Server_Side/PHP/SoothinglySeamless/ This is an awesome tutorial to get things up and running for a standard web serveer install with Apache, PHP, MySQL, and SSL, if you need it. johnny p. > -Original Message- > F

Re: [PHP] [php] - alphabetizing

2001-01-21 Thread Sean Cazzell
Ray, You could create an array where the keys are the person names and the values are the strings. For example: $people_strings = array ("joe" => "bar", "andy" => "foo"); ksort($people_strings); reset($people_strings); while (list ($key, $value) = each ($people_strings)) { print "$key ->

[PHP] PHP won't allow Apache to start

2001-01-21 Thread Chris Boothe
Any ideas? Normally NuSphere sets it up but it isn't installing PHP even though the status says done. Here is what you asked about, [root@ /root]# httpd -la Compiled-in modules: http_core.c mod_so.c suexec: disabled; invalid wrapper /usr/sbin/suexec [root@ /root]# ll httpd m-rw-r--r--1

Re: [PHP] [php] - alphabetizing

2001-01-21 Thread Josh G
Just build an assosciative array like so $arr["person1"] = "string1"; $arr["person2"] = "string2"; $arr["person3"] = "string3"; $arr = asort($arr); this should do what you're looking for. Gfunk - http://www.gfunk007.com/ I sense much beer in you. Beer leads to

[PHP] [php] - alphabetizing

2001-01-21 Thread Ray Iftikhar
Hello, I was just typing a msg and accidentally hit send before I could finish.. sorry.. I have a file, its contents are as follows: Name of person1, string1 Name of person2, string2 Name of person3, string3 Name of person4, string4 Name of person5, string5 I want to alphabetize the list fr

[PHP] - printing 2 dim. array

2001-01-21 Thread Ray Iftikhar
Hello, I have a file...its contents are as follows: Name of person1, string1 Name of person, string Name of person, string Name of person, string Name of person, string -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

[PHP] HTTP_USER_AGENT and preg_match

2001-01-21 Thread John Hinsley
This seems trivial at first (and maybe at last!): Browser Match Results $result"; ?> But, just as it's a good idea to use the HTTP_USER_AGENT environment to dynamically set the size of type so that Internet Explorer users are not forced to view huge text (which appears fine in Amaya,

[PHP] Macromedia Generator PHP Library :: Beta :: Please evaluate

2001-01-21 Thread Mike Chambers
I am building a library of functions to make it easy to use PHP with Macromedia Generator. I have a first version of the library available at : http://www.markme.com/~mesh/temp/GeneratorLibrary.zip I would appreciate any comments or suggestions. Especially any suggestions on how to optimize the

Re: [PHP] mysql_fetch_array strangeness

2001-01-21 Thread Kristi Russell
each() assigns four elements... (0 = index), (1 = value), (key = index), (value = value) You are concerned with key and value. So: list ($fieldname, $value) = each($row) You may not be using $value but you still need to assign the data to a variable. Or list will only assign $fieldname the num

Re: [PHP] mysql_fetch_array strangeness

2001-01-21 Thread Kristi Russell
each() assigns four elements... (0 = index), (1 = value), (key = index), (value = value) You are concerned with key and value. So: list ($fieldname, $value) = each($row) You may not be using $value but you still need to assign the data to a variable. Or list will only assign $fieldname the num

RE: [PHP] cookie paths are really confusing me...please help!

2001-01-21 Thread Jason Murray
> scenario: im browsing a file in lets call directory 'test'. > this file is including a file in the parent directory. this included > file is setting a cookie. The point here is that the file is being *included*, therefore the cookie will only be local to that "test" directory, regardless of w

[PHP] cookie paths are really confusing me...please help!

2001-01-21 Thread Noah Spitzer-Williams
ok here's what i get from php.net: SetCookie()'s behavior is dependant on where it is called within the web document tree. For example, setting a cookie from a php script in a directory makes that cookie available only to other scripts in that directory and its subdirectories. However, setting a

[PHP-CVS] RE: [PHP-CVS-DAILY] cvs: php4 / ChangeLog

2001-01-21 Thread Warwick Smith
unsubscribe Regards, Warwick Smith Electronic Services Officer / Webmaster Email: [EMAIL PROTECTED] Web: http://www.imvs.sa.gov.au -Original Message- From: changelog [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 12:39 PM To: [EMAIL PROTECTED] Subject: [PHP-CVS-DAILY] cvs:

Re: [PHP] mysql_fetch_array strangeness

2001-01-21 Thread Richard Lynch
> $rowData = mysql_fetch_array($result); mysql_fetch_array can return an array with only numeric indices, only text (fieldname) indices, *OR* *BOTH*, the default. You need to use the "optional" argument: $rowData = mysql_fetch_array($result, MYSQL_ASSOC); By Day:

Re: [PHP] Help With passthru, system, exec

2001-01-21 Thread Richard Lynch
> I've been trying to write something to ping a URL on the system level, and > keep the output in an array. I've been trying to work with system, exec, > and passthru, but it looks as though they all return only the last line of > the output. How would I put the whole output into the array? A d

Re: [PHP] MySQL Access Denied

2001-01-21 Thread Richard Lynch
> I am trying to conect to a MySQL db and no matter what code I use I am always > getting denied, I know the password is correct as I have tested it elsewhere. > Just wondering if this could be caused by the fact that the password has a + > and a . in it. Would that get me denied, and how can I ge

Re: [PHP] Verifying against a file

2001-01-21 Thread Richard Lynch
> $fd=fopen("words.txt", "r"); Check that $fd is not 0. > $words = fread($fd, 100); > > I then convert a string which is passed in a form to this script > > $FirstName=strtolower("$FirstName"); > > And now I check to see if the lowercase version of $FirstName contains any of > the words from

[PHP-CVS] cvs: CVSROOT / commitinfo loginfo

2001-01-21 Thread Jim Winstead
jimwSun Jan 21 18:12:51 2001 EDT Modified files: /CVSROOTcommitinfo loginfo Log: the generated manuals are now gone from cvs, so enable cvs emails from phpweb/manual again Index: CVSROOT/commitinfo diff -u CVSROOT/commitinfo:1.10 CVSROOT/commitinfo:1.1

Re: [PHP] XML Processing Instruction ( was "

2001-01-21 Thread Romulo Roberto Pereira
I forgot to mention that if is PHP the parser (since you are creating PHP scripts in a server that use PHP as CGI or as a module) this could not be treated by the parser? I mean, the common XML tag is To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, January 21, 2001 5:03 PM Subject: [PH

Re: [PHP] XML Processing Instruction ( was "

2001-01-21 Thread Romulo Roberto Pereira
If I am not mistaken XML tags needs to be identifed. So ... Maybe we could vote the use or not of this feature? Rom - Original Message - From: Brian White <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, January 21, 2001 5:03 PM Subject: [PHP] XML Processing

[PHP-CVS] cvs: php4 /sapi/apache mod_php4.c

2001-01-21 Thread Rasmus Lerdorf
rasmus Sun Jan 21 17:13:49 2001 EDT Modified files: /php4/sapi/apache mod_php4.c Log: Kill warning Index: php4/sapi/apache/mod_php4.c diff -u php4/sapi/apache/mod_php4.c:1.87 php4/sapi/apache/mod_php4.c:1.88 --- php4/sapi/apache/mod_php4.c:1.87Sun Jan

[PHP-CVS] cvs: php4 /sapi/apache mod_php4.c

2001-01-21 Thread Zeev Suraski
zeevSun Jan 21 17:10:22 2001 EDT Modified files: /php4/sapi/apache mod_php4.c Log: Sigh. Even less sleep than I thought :) Really fix it this time. Index: php4/sapi/apache/mod_php4.c diff -u php4/sapi/apache/mod_php4.c:1.86 php4/sapi/apache/mod_php4.

[PHP-CVS] cvs: php4 /sapi/apache mod_php4.c

2001-01-21 Thread Zeev Suraski
zeevSun Jan 21 17:08:28 2001 EDT Modified files: /php4/sapi/apache mod_php4.c Log: Too much work, not enough sleep... Fix hash lookup Index: php4/sapi/apache/mod_php4.c diff -u php4/sapi/apache/mod_php4.c:1.85 php4/sapi/apache/mod_php4.c:1.86 --- php4

[PHP] mysql_fetch_array strangeness

2001-01-21 Thread Jaxon
Hi, I'm trying to echo out the field names used as key values in a mysql_fetch_array: $link_id = mysql_connect("localhost", "root", $pass); mysql_select_db("database", $link_id); $result = mysql_query("select * from lists where id = 1", $link_id); $rowData = mysql_fetch_array($result); while

Re: [PHP] CF vs PHP for Creating PDF's

2001-01-21 Thread Michael Stearne
You might look into HTMLDOC. This progam takes HTML files as input and converts them to PDF. You could create a template in HTML, use PHP to replace to user specific fields and then call HTMLDOC to create the PDF. HTMLDOC is located at http://easysw.com/htmldoc/ Michael On Saturday, Janua

[PHP-CVS] cvs: php4 / NEWS

2001-01-21 Thread Zeev Suraski
zeevSun Jan 21 16:11:44 2001 EDT Modified files: /php4 NEWS Log: Update and pastify NEWS Index: php4/NEWS diff -u php4/NEWS:1.566 php4/NEWS:1.567 --- php4/NEWS:1.566 Sun Jan 21 09:36:46 2001 +++ php4/NEWS Sun Jan 21 16:11:43 2001 @@ -2,7 +2,9

[PHP-CVS] cvs: php4 /sapi/apache mod_php4.c

2001-01-21 Thread Zeev Suraski
zeevSun Jan 21 16:06:52 2001 EDT Modified files: /php4/sapi/apache mod_php4.c Log: Don't overwrite PATH_TRANSLATED if it exists Index: php4/sapi/apache/mod_php4.c diff -u php4/sapi/apache/mod_php4.c:1.84 php4/sapi/apache/mod_php4.c:1.85 --- php4/sapi/a

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Carsten Gehling
From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> Sent: Sunday, January 21, 2001 8:42 PM > For experienced PHP developers having register_globals on should not be a > security issue. Injecting arbitrary variables into your symbol table is > only a problem if you arbitrarily use such variables without

Re: [PHP] Build with Apache on Linux

2001-01-21 Thread Markus Fischer
Why not building apache with dso support and build a libphp4.so shared image ? Much less hassle. m. -- Markus Fischer, http://josefine.ben.tuwien.ac.at/~mfischer/ EMail: [EMAIL PROTECTED] PGP Public Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc PGP Fingerprint:

Re: [PHP] Upgrading to 4.04 question, but won't stick

2001-01-21 Thread Rasmus Lerdorf
> We've had 4.01 running since July so I thought I'd upgrade to 4.04 from the > tarball last night. Everything went fine w/ the compile, no errors. Install > said all OK, Then i went and HUP'd apache but when I run phpinfo() the old > module is still loaded. > > What am I doing wrong? Where shoul

[PHP] XML Processing Instruction ( was "

2001-01-21 Thread Brian White
At 10:50 AM 1/19/12 +0200, Teodor Cimpoesu wrote: >I was refering to whole story of using ` >-- teodor The "" construct comes from SGML/XML - it is called a "Processing Instruction"(PI). It's general purpose is to allow application to leave pieces of information in the XML that aren't strictly p

Re: [PHP] Include statement problems

2001-01-21 Thread Stephan Ahonen
> Any ideas? Work arounds? I am using PHP3. Try: $page = str_replace("?", "&", $page); That'll change: include.html?page=main.html?date=12 into: include.html?page=main.html&date=12 So the variables get passed properly. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-

RE: [PHP] getting from PHP the vars that are in the memory during the execution of the script...

2001-01-21 Thread Maciek Uhlig
$some_associative_array = get_defined_vars(); Newest PHP, though (since 4.0.4). Maciek > -Original Message- > From: Romulo Roberto Pereira [mailto:[EMAIL PROTECTED]] > Sent: Saturday, January 20, 2001 3:15 PM > To: php-general > Subject: [PHP] getting from PHP the vars that are in the m

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Alex Black
> include $HTTP_POST_VARS['file']; > ... > ?> > > really isn't any safer. People won't be able to put file=/etc/passwd > right in the URL, but they can still trivially fake up a form post and > inject whatever value for 'file' into the POST data. > > It all boils down to verifying any and all

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Chris Lee
Simple solution to make sure the variables are POST somepage.php?var_1=asd&var_2=qwe&var_3=zxc This way var_1, var_2, var_3 will allways be POST vars and you can still access them through $var_1, $var_2, $var_3 Ramus had a good note though, dont think just because its not a GET or Cookie var t

Re: [PHP] getting from PHP the vars that are in the memory during the execution of the script...

2001-01-21 Thread Chris Lee
$GLOBALS[] should have all varibales right ? maybe someone could correct me. $val) { echo "$pos : $val\n"; } ?> Chris Lee Mediawaveonline.com "Romulo Roberto Pereira" <[EMAIL PROTECTED]> wrote in message 001101c082eb$6536f5c0$[EMAIL PROTECTED]">news:001101c082eb$6536f5c0$[EMA

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Dale Robinson
Thank for the extremely quick response, So setting error_reproting to E_ALL, and making sure you take heed of any "Undefined variable" notices, will allow you to use register_globals in safety? Regards Dale Robinson - Original Message - From: "Rasmus Lerdorf" <[EMAIL PROTECTED]> To: "Da

Re: [PHP] W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert

2001-01-21 Thread Sterling Hughes
[EMAIL PROTECTED] wrote: > > On Sun, Jan 21, 2001 at 09:40:01PM +0100, Sterling Hughes wrote: > > Hoi, > > Das hier ist eine rein-deutschsprachige Liste. Bitte schicke deutsche > > Mails an die deutsche PHP liste (php-center.de). > > Hei Sterling, this is a English speaking list. I know i

Re: [PHP] W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert

2001-01-21 Thread eschmid+sic
On Sun, Jan 21, 2001 at 09:40:01PM +0100, Sterling Hughes wrote: > Hoi, > Das hier ist eine rein-deutschsprachige Liste. Bitte schicke deutsche > Mails an die deutsche PHP liste (php-center.de). Hei Sterling, this is a English speaking list. I know in Südtirol our language is also recogni

Re: [PHP] file selected in form changes in next php page?!

2001-01-21 Thread Andrew Sitnikov
Hello Chris, http://www.php.net/manual/en/features.file-upload.php CH> Dear group, CH> in my first page i have a form selcting a file. CH> The names i used were csvfile, csv_file, and my_file. CH> After submitting the form the filename changed to a totally different file, CH> likeC:\PHP\p

[PHP] Include statement problems

2001-01-21 Thread Si Wizard
Hey, I just signed up on this list. I've got a quick question. I am using an #include statment, and here it is: include.html --- --- so when I include it looks like this --- include.html?page=main.html --- That way the page shown in the include statement is main.html My problem comes when

Re: [PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Rasmus Lerdorf
For experienced PHP developers having register_globals on should not be a security issue. Injecting arbitrary variables into your symbol table is only a problem if you arbitrarily use such variables without initializing or checking them for validity. I think the main point of concern here is tha

Re: [PHP] W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert

2001-01-21 Thread Sterling Hughes
Hoi, Das hier ist eine rein-deutschsprachige Liste. Bitte schicke deutsche Mails an die deutsche PHP liste (php-center.de). Danke, Sterling Philipp Althaus wrote: > > trotz viel Nachlesen und üben schaffe ich es nicht php zum Laufen zu bringen. > Bin neu in der PHP-Welt. > > ich möch

[PHP] solutions to disadvantages when register_globals is off

2001-01-21 Thread Dale Robinson
Everyone seems to recommend turning off register_globals, but accessing them through $HTTP_POST_VARS["var_name"], gets tedious. I haven't found a better solution (not to say there isn't one) than this small snippet. The idea is to turn off "register_globals", as I believe is heavily recommended

Re: [PHP] GetImageSize problem

2001-01-21 Thread eschmid+sic
On Sun, Jan 21, 2001 at 07:02:07PM +0100, Thies C. Arntzen wrote: > On Sun, Jan 21, 2001 at 03:05:31PM +, Sue Bailey wrote: > > I have a bunch of images living on one ISP's server which I want to use > > on another page on another ISP's server, with GetImageSize. I RTFM, and > > see "The filen

Re: [PHP] CF vs PHP for Creating PDF's

2001-01-21 Thread Michael Kimsal
We are doing some PDF work for a client in PHP. Not quite sure how many 'tags' CF has, but, although there are many, it's not an easy thing. Lots of 'exact positioning' for everything, and we ended up writing some routines ourselves to handle textboxes and such. You'll need to invest a bit of t

[PHP] W98se, PWS 4.0, IE 5.5 php wird nicht interpretiert

2001-01-21 Thread Philipp Althaus
trotz viel Nachlesen und üben schaffe ich es nicht php zum Laufen zu bringen. Bin neu in der PHP-Welt. ich möchte PHP ausprobieren und local installieren auf Notebook zum Testen. Leider wird der php-Code nicht interpretiert. Nachfolgend meine Daten: Problem: php-Code wird nicht interpretiert

Re: [PHP] GetImageSize problem

2001-01-21 Thread Thies C. Arntzen
On Sun, Jan 21, 2001 at 03:05:31PM +, Sue Bailey wrote: > I have a bunch of images living on one ISP's server which I want to use > on another page on another ISP's server, with GetImageSize. I RTFM, and > see "The filename needs to be either relative to the current document, > or an absolute

php-general Digest 21 Jan 2001 17:48:15 -0000 Issue 468

2001-01-21 Thread php-general-digest-help
php-general Digest 21 Jan 2001 17:48:15 - Issue 468 Topics (messages 35881 through 35908): Re: " " charactor problem 35881 by: Sean Cazzell 35893 by: Rick Ridgeway 35902 by: CC Zona imap_createmailbox 35882 by: Jochen Kächelin Re: Sending a mail in HTML for

Re: [PHP] Upgrading to 4.04 question, but won't stick

2001-01-21 Thread webbie
Quoting Team JUMP Lists <[EMAIL PROTECTED]>: > We've had 4.01 running since July so I thought I'd upgrade to 4.04 from > the > tarball last night. Everything went fine w/ the compile, no errors. > Install > said all OK, Then i went and HUP'd apache but when I run phpinfo() the > old > module is s

[PHP-CVS] cvs: php4 / NEWS

2001-01-21 Thread Rasmus Lerdorf
rasmus Sun Jan 21 09:36:47 2001 EDT Modified files: /php4 NEWS Log: This probably should have a NEWS entry Index: php4/NEWS diff -u php4/NEWS:1.565 php4/NEWS:1.566 --- php4/NEWS:1.565 Fri Jan 19 18:09:16 2001 +++ php4/NEWS Sun Jan 21 09:36:46 20

Re: [PHP] MySQL replication

2001-01-21 Thread Sean Cazzell
Andi, No personal experience (yet), but there's a good article on phpbuilder that you might want to take a look at if you haven't already: http://www.phpbuilder.com/columns/tanoviceanu2912.php3 Regards, Sean -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMA

Re: [PHP] Looking for a web host provider

2001-01-21 Thread Kristi Russell
Check out www.webintellects.com. To date, I haven't had any problems and the service is $18.95 a month. 200MB of diskspace, 50 user accounts, PHP4, MySQL, domain name hosting, etc. Kristi - Original Message - From: "Pascal Clerin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday

[PHP-CVS] cvs: CVSROOT / avail cvsusers gen_acl_file.m4

2001-01-21 Thread Rasmus Lerdorf
rasmus Sun Jan 21 09:29:25 2001 EDT Modified files: /CVSROOTavail cvsusers gen_acl_file.m4 Log: doc account for Anderson da Silveira Fortaleza Index: CVSROOT/avail diff -u CVSROOT/avail:1.49 CVSROOT/avail:1.50 --- CVSROOT/avail:1.49 Fri Jan 19 11:45:17

[PHP-CVS] cvs: php4 / configure.in /ext/mysql/libmysql libmysql.c /ext/standard basic_functions.c dns.c file.c filestat.c fsock.c ftp_fopen_wrapper.c http_fopen_wrapper.c mail.c syslog.c /main fopen-wrappers.c network.c php_open_temporary_file.c

2001-01-21 Thread Rasmus Lerdorf
rasmus Sun Jan 21 09:26:44 2001 EDT Modified files: /php4 configure.in /php4/ext/mysql/libmysqllibmysql.c /php4/ext/standard basic_functions.c dns.c file.c filestat.c fsock.c ftp_fopen_wrapper.c http_fopen_wrapper.c

[PHP] Looking for a web host provider

2001-01-21 Thread Pascal Clerin
Hello I am bored with my web host provider (www.linuwebhost.com) because it becomes unreachable several times a month (since 5 this morning I am not able to access my site...). In fact I need a good web host provider where I can host my site, with PHP(3 or 4), MySQL, 50MB, and more features a

[PHP] Help With passthru, system, exec

2001-01-21 Thread Pete Lavetsky
Hi Everyone, I've been trying to write something to ping a URL on the system level, and keep the output in an array. I've been trying to work with system, exec, and passthru, but it looks as though they all return only the last line of the output. How would I put the whole output into the array

[PHP] Build with Apache on Linux

2001-01-21 Thread Chris Mulcahy
OK, I've built Apache and PHP on Linux 50 times already. Now it's causing me problems. I've rebuilt my server, I've tried PHP 4.0.3 and PHP 4.0.4. It keeps causing me problems. I could not find libphp4.a and found on the net where someone suggested to rename libmodphp4.a to libphp4.a. During

Re: [PHP] " " charactor problem

2001-01-21 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Rick Ridgeway) wrote: > > > I grab this line and try to make it an array like this: > > print "line: $thelinefromfile\n"; //Check the line > > > $var1 = trim($thelinefromfile); > > > $var2 = split(" ", $thelinefromfile); > > > $count = cou

Re: [PHP] GetImageSize problem

2001-01-21 Thread Romulo Roberto Pereira
If you relly don't like the text jumping you can do a little script that can parse the width and height for each image, I mean get this info from the html files... But you will have to pin point each one... The good thing that the script is here... http://www.rezox.com) ###

Re: [PHP] ibase_num_fields() -a workaround ?

2001-01-21 Thread Meir Kriheli - MKsoft
Hi ibase_num_fields returns the column count of the result, not the row count ! Meir Kriheli MKsoft computer systems 'There's someone in my head but it's not me" - Pink Floyd - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, January 20, 2001 7:01

Re: [PHP] GetImageSize problem

2001-01-21 Thread Sue Bailey
Thanks Rom - I can get the pics with an img src tag, which is why I assumed that GetImageSize would also work - but now I'm told it only works on the local machine, so I guess I'll have to live with text jumping about while pics download. :( Romulo Roberto Pereira wrote: > > Hello! > > First -

Re: [PHP] GetImageSize problem

2001-01-21 Thread Romulo Roberto Pereira
Hello! First - some ISP block you from get files from their server by a httpd request (that is what php does... I think!). To be sure if this is set or not, in the other ISP (not the one that the images are) write a simple html like this: loading images between servers http://Domain/ImagesDir/I

[PHP] file selected in form changes in next php page?!

2001-01-21 Thread Chris Hayes
Dear group, in my first page i have a form selcting a file. The names i used were csvfile, csv_file, and my_file. After submitting the form the filename changed to a totally different file, likeC:\PHP\php72C3.TMP or C:\PHP\phpD2B4.TMP (windows, apache, php4, internet explore

[PHP] GetImageSize problem

2001-01-21 Thread Sue Bailey
I have a bunch of images living on one ISP's server which I want to use on another page on another ISP's server, with GetImageSize. I RTFM, and see "The filename needs to be either relative to the current document, or an absolute filesystem path. Thus absolute URL paths will not work." which is ab

[PHP] MySQL replication

2001-01-21 Thread Andi Gutmans
Hey, Have any of you guys worked with the latest and greatest MySQL replication? Does it work? What are its ups and downs? Andi -- 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 ad

[PHP] Upgrading to 4.04 question, but won't stick

2001-01-21 Thread Team JUMP Lists
We've had 4.01 running since July so I thought I'd upgrade to 4.04 from the tarball last night. Everything went fine w/ the compile, no errors. Install said all OK, Then i went and HUP'd apache but when I run phpinfo() the old module is still loaded. What am I doing wrong? Where should I look to

Re: [PHP] " " charactor problem

2001-01-21 Thread Rick Ridgeway
Sean Cazzell wrote: > > I grab this line and try to make it an array like this: > print "line: $thelinefromfile\n"; //Check the line > > $var1 = trim($thelinefromfile); > > $var2 = split(" ", $thelinefromfile); > > $count = count($var2); > > Are you sure $thelinefromfile is actually being s

Re: [PHP] Why won`t this work??

2001-01-21 Thread Alexander Wagner
bard wrote: > Plus, this is PHP, not javascript. Variables look like this, "$UN" > not this, "UN". $UN is a variable. UN might be a constant, if it is defined as one. If not, its just a string. Wagner -- Three may keep a secret, if two of them are dead. -- PHP General Mailing List (http://w

Re: [PHP] Why won`t this work??

2001-01-21 Thread bard
On Sun, 21 Jan 2001, Alexander Wagner wrote: > [EMAIL PROTECTED] wrote: > > Hi, > > > > Can anyone tell me before I rip my hair out, why this won`t work?? > > > > if (!UN) > > { > > printf("alert('Please enter a User > > Name.');self.history.back();"); > > } > > > > TIA > > Ade > > An undefined

RE: [PHP] my cookies arent working!

2001-01-21 Thread Lucas Young
Hmmm, ok, so what else could I be missing that is stopping my cookies working? -Original Message- From: Markus Fischer [mailto:[EMAIL PROTECTED]] Sent: Sunday, 21 January 2001 10:31 p.m. To: Php-General Subject: Re: [PHP] my cookies arent working! On Sun, Jan 21, 2001 at 05:45:44PM +130

Re: [PHP] my cookies arent working!

2001-01-21 Thread Markus Fischer
On Sun, Jan 21, 2001 at 05:45:44PM +1300, Lucas Young wrote : > I'm actually using code from the web - sympoll from www.ralusp.net and > authlib, both give me errors and neither seems to be writing cookies... I > note in PHP the session save path is /tmp, where should this folder live? W

Re: [PHP] Why won`t this work??

2001-01-21 Thread bard
Try this... alert('Please enter a User Name.'); self.history.back(); Cheers, Brad On Sun, 21 Jan 2001 [EMAIL PROTECTED] wrote: > Hi, > > Can anyone tell me before I rip my hair out, why this won`t work?? > > if (!UN) > { > printf("alert('Please enter a User > Name.');self.history.back(

[PHP] Why won`t this work??

2001-01-21 Thread Website4S
Hi, Can anyone tell me before I rip my hair out, why this won`t work?? if (!UN) { printf("alert('Please enter a User Name.');self.history.back();"); } TIA Ade -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P