RE: [PHP] Multiple languages

2001-07-15 Thread Maxim Maletsky
The best way to do it definitely is: make several files with an array like: file: lang.eng.inc: $dict = Array(); $dict['name'] = 'Name'; $dict['button']['red'] = 'Red Button'; file: lang.ita.inc: $dict = Array(); $dict['name'] = 'il nome';

[PHP] Session Question

2001-07-15 Thread Tom Malone
I'm new to Apache (and PHP) and was unable to find anything approaching an answer to this problem in the Apache documentation. In fact, I'm not even sure if I'm having a problem with Apache or with PHP. I am trying to use sessions to track users on my site and write information to a file. I'm not

[PHP] output plain HTML for CD Rom

2001-07-15 Thread Justin French
Hi, I have a client who wishes to publish some catalogues to CD Rom. Of course they can't be placed onto a CD using PHP code (because it would require the CD user to have PHP installed!!), but PHP/MySQL is definately the best way to build the content, since the same data is being used for

php-general Digest 15 Jul 2001 07:38:53 -0000 Issue 756

2001-07-15 Thread php-general-digest-help
php-general Digest 15 Jul 2001 07:38:53 - Issue 756 Topics (messages 57901 through 57922): Loop an INSERT 10 rows from a Form 57901 by: David Select IN array? 57902 by: Chris Lott 57904 by: Chris Lott 57918 by: James Tan Problem with FORM, SELECT and

[PHP] phpMyAdmin No Error No Output

2001-07-15 Thread Prachait Saxena
HI, I had downloaded a new version 2.2 of phpMyAdmin from the site. and placed it on my site on the Internet. but i am getting no error and no output can any one tell me why this is happning .??? bye -- Prachait Saxena Offical ( [EMAIL PROTECTED] ) Personal ( [EMAIL PROTECTED] )

[PHP] access pop3 without IMAP

2001-07-15 Thread Prachait Saxena
Hi, I want to check mail of a pop account. without using imap. Can any one know how to do that. kindly send it in details. bye -- Prachait Saxena Offical ( [EMAIL PROTECTED] ) Personal ( [EMAIL PROTECTED] ) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Session Question

2001-07-15 Thread Christopher Ostmo
Tom Malone pressed the little lettered thingies in this order... I'm new to Apache (and PHP) and was unable to find anything approaching an answer to this problem in the Apache documentation. In fact, I'm not even sure if I'm having a problem with Apache or with PHP. I am trying to use

Re: [PHP] Anybody using Miva or hosted at Hosting4All?

2001-07-15 Thread Greg Donald
Is anybody on this list hosting an e-commerce site with Hosting4All? Or, has anybody had any experience with the Miva Engine which Hosting4All provide free of charge (i.e. as part of the subscription fee)? I used Miva before. It was slower than java... It sucked.

[PHP] Re: mysql error

2001-07-15 Thread Leon
Maybe you run out of diskspace?? Greets, Leon Elias wrote: Table is full? did you try searching MySql.com for Table is full error message? Andreas ) [EMAIL PROTECTED] wrote in message 000c01c10b81$c765aa60$8d0a@devel01">news:000c01c10b81$c765aa60$8d0a@devel01... hi all, my

[PHP] www.oosha.com/phpdev/ - mailing list

2001-07-15 Thread Brett Shaw
Oosha.com's PhpDEV has got a mailing list if you would like to joing please see below: - To subscribe to the mailinglist, simply send a message with the word 'subscribe' in the Subject: field to the -request address of that list To: [EMAIL PROTECTED] Subject: subscribe To subscribe to the

Re: [PHP] Anybody using Miva or hosted at Hosting4All?

2001-07-15 Thread hunter
what do you need to know about Miva? Its got a GUI front end to allow you to construct your store, it has support for many ecoms (like authorizenet, etc), decent scripting language through mivascript, etc. -- Daniel Baldoni wrote: G'day folks, We've got a web-application ready to install

[PHP] does php have a response.flush function

2001-07-15 Thread Andrew Austin
Does php have a funciton like reponse.flush in asp aa -- 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-mail: [EMAIL PROTECTED]

[PHP] Message from hunter Problems

2001-07-15 Thread ReDucTor
hey, That message sent here, by hunter the Re: [PHP] Anybody using Miva or hosted at ..., i open it in outlook, and my outlook frezzes...any one know why? :) - James ReDucTor Mitchell

Re: [PHP] does php have a response.flush function

2001-07-15 Thread Philip Murray
Hi Andrew, It's flush(); http://nz.php.net/manual/en/function.flush.php Cheers - -- - - - Philip Murray - [EMAIL PROTECTED] http://www.open2view.com - Open2View.com - - -- - - - Original Message - From: Andrew Austin [EMAIL

Re: [PHP] Message from hunter Problems

2001-07-15 Thread hunter
yes it was signedand outlook doesnt handle that well ReDucTor wrote: hey, That message sent here, by hunter the Re: [PHP] Anybody using Miva or hosted at ..., i open it in outlook, and my outlook frezzes...any one know why? :) - James ReDucTor Mitchell -- Michael B. Weiner,

[PHP] Problem Inserting Array of Rows from form

2001-07-15 Thread David
I am trying to insert an array of rows or values from a PHP form into a MySQL database. There are six columns in the table songs: id, songname, rating, video, album_id, movie. Here is what I get when I submit the form Add songs for Record Array INSERT INTO songs VALUES (' 1, blah', ' ***', '

[PHP] Re: Anybody using Miva or hosted at Hosting4All?

2001-07-15 Thread Daniel Baldoni
G'day again, hunter said: what do you mean, arbitrary? Yes, miva can connect to SSL pages and sites, thats how its transactional piece works, and is actually required. In fact as i recall, you have to have an SSL certificate in order to complete the install/configuration/setup for a

Re: [PHP] Problem Inserting Array of Rows from form

2001-07-15 Thread Hank Marquardt
For one, as you've written it you have a mismatch of columns vs. fields -- You're combining id and name into one field for the insert -- thus you have five fields trying to be inserted into a table with six elemets. You should have a print of the mysql_error() in your debug code ... I bet if

Re: [PHP] ereg() help, plz

2001-07-15 Thread Thomas R. Powell
Try this, while ($file_name = readdir($dir2)) { if ($file_name!=. $file_name!=.. $file_name!=head.jpg !ereg(^tn_,$file_name)) { $files[]=$file_name; } } $numfiles = count($files); for ($i=$g; $i$numfiles; $i++){ echo $files[$i]; } Tom At 09:45 PM 7/14/01 -0400, you wrote: hi, I wanna

Re: [PHP] Re: Select IN array?

2001-07-15 Thread teo
Hi James! On Sun, 15 Jul 2001, James Tan wrote: dear chris, mysql does not support 'in' clause at the momment... the only way to this is to use the loop to generate the sql syntax.. orr.. use the implode function... to join the array into 1 string separated by the first parameter... huh?

Re: [PHP] Variable name declarations?

2001-07-15 Thread teo
Hi Kent! On Sat, 14 Jul 2001, Kent Sandvik wrote: function sum_array( $input_array ) { var $index; var $sum = 0; for( $index = 0; $index count( $input_array ); $index++ ) $sum += $input_array[ $index ]; return $sum; } The array variable issue has

Re: [PHP] but mysql? (was: postgres and php)

2001-07-15 Thread teo
Hi Nuno! On Sat, 14 Jul 2001, Nuno Silva wrote: hi there! the operators you want are ~ and ~* and !~ and !~*. select name from table where name ~* 'test'; any idea of something like this in MySQL? I was used to pg and I have no idea of something equivalent in My. to see all operators

[PHP] lack of error

2001-07-15 Thread Jon Yaggie
i am generating an image. Everything is going fine except this one image. it shows only as a broken image. even if you go directly too the file all you get is a broken image. with out an error of some sort i am baffled where to start. any one got an idea what may cause such? here is the

[PHP] Can anyone explain what this does?

2001-07-15 Thread Kurt Lieber
I'm sure this is a simple one, but I've never seen it before: $this-file = $file; I'm specifically confused about the - operator and what that does. I looked in the online documentation under operators, but didn't find anything. Ideally, if someone can point me to the location in the

Re: [PHP] Can anyone explain what this does?

2001-07-15 Thread Patrik Wallstrom
On Sun, 15 Jul 2001, Kurt Lieber wrote: I'm sure this is a simple one, but I've never seen it before: $this-file = $file; I'm specifically confused about the - operator and what that does. I looked in the online documentation under operators, but didn't find anything. Ideally, if

[PHP] Re: Can anyone explain what this does?

2001-07-15 Thread James Tan
hi kurt lieber, ok, did u gone through the tutorial on oop with php?? $this stands for the class reference and file is one of the variable inside the class... u can specify this only in the function of the same class... regards, James Kurt Lieber wrote: I'm sure this is a simple one, but

[PHP] Re: lack of error

2001-07-15 Thread James Tan
hi jon yaggi, i've notice some _ in your link, is the get header sent correctly?? u did not put in your source here, pls do... we are helpless to u without your code... regards, James Jon Yaggie wrote: i am generating an image. Everything is going fine except this one image. it shows

[PHP] Re: Problem Inserting Array of Rows from form

2001-07-15 Thread James Tan
dear david, did u know u do not need to put single quote to enclose number type value?? notice ur field select syntax: INSERT INTO songs VALUES (' 1 // -- 1 is not enclosed with end quote... thus makes only 5 fields, not 6 , blah', ' ***', ' 45', ' 2', ' ') id[0]=: 2 try INSERT INTO songs

Re: [PHP] lack of error

2001-07-15 Thread Jon Yaggie
wonderful i hope ti is the only problem left:) Thank You, Jon Yaggie www.design-monster.com And they were singing . . . '100 little bugs in the code 100 bugs in the code fix one bug, compile it again 101 little bugs in the code 101 little bugs in the code . . .' And it continued until

[PHP] Re: access pop3 without IMAP

2001-07-15 Thread James Tan
hi prachait saxena, I'm trying to build the same too... u can use the socket function to manupulate pop protocol at port 110 refer to the rfc link in the documentation for pop :) hope it helps... regards, James Prachait Saxena wrote: Hi, I want to check mail of a pop account. without

Re: [PHP] Problem Inserting Array of Rows from form

2001-07-15 Thread David
I did add mysql_error which helped me solve part of the problem: I was missing a single quote in the $val line after $id[$i] and before songname : Here is the corrected code but there is still a problem, $vals .=, ('$id[$i]', '$songname[$i]', '$rating[$i]', '$video[$i]', '$album_id[$i]',

[PHP] problem

2001-07-15 Thread [EMAIL PROTECTED]
I have a form with a bunch of text fields in it. The name of the fields is the rowid of items in my data base: FORM METHOD=post ACTION=edit.php3 textarea name=23 class=field/textarea textarea name=2 class=field/textarea textarea name=15 class=field/textarea input type=Submit name=save

Re: [PHP] Re: Problem Inserting Array of Rows from form

2001-07-15 Thread David
I will try without single quotes for the id and other fields which have numeric values. For the original issue I was missing two single quotes. I was missing a single quote in the $val line after $id[$i] and before songname : I really don't need the quote for id since it is a numeric value. Here

[PHP]OT I know, but WTF...

2001-07-15 Thread Chris Cocuzzo
hey- I know this is off topic, but I figured i'd ask to see if other people were experiencing similar problems. I'm having trouble accessing web sites/pages that are secure(https...obviously). I tried changing everything around in IE 6, but so far nothing is working...any ideas? the error is

[PHP] Question about strlen I think

2001-07-15 Thread Dennis Kaandorp
Hello, On my site users can submit ftp's. Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/ /dennis/ must become /uploads/4sp/by/3spdennis/ Thnx, Dennis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] Re:[PHP] Session Question

2001-07-15 Thread Tom Malone
Thanks Christopher! I chmoded the directory to 777 like you said, and it worked fine, but then I took your advice regarding security and put all the data in a MySQL database. Thank you very much for your help! Tom Malone -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] problem

2001-07-15 Thread teo
Hi zerosumzero! On Sun, 15 Jul 1979, [EMAIL PROTECTED] wrote: I have a form with a bunch of text fields in it. The name of the fields is the rowid of items in my data base: FORM METHOD=post ACTION=edit.php3 textarea name=23 class=field/textarea textarea name=2 class=field/textarea

[PHP] Pass variables with PHP_SELF?

2001-07-15 Thread David
How do you pass a variable that was passed from one form to another form and then to PHP_SELF? The first part works fine: I passed a variable from one form to another page with a form using blah.php?id=$idsongsinalbum=$songsinalbumbut when someone submits the second form the value of

[PHP] $($row[0])

2001-07-15 Thread [EMAIL PROTECTED]
If I have a form with fields named by rowid, is there a way to call the string, by the name of each rowid on the next page? $($row[0]) won't work ... -- [EMAIL PROTECTED] http://futurebird.diaryland.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] $($row[0])

2001-07-15 Thread Rasmus Lerdorf
If I have a form with fields named by rowid, is there a way to call the string, by the name of each rowid on the next page? $($row[0]) won't work ... ${$row[0]} Well-documented here: http://php.net/manual/en/language.variables.variable.php -Rasmus -- PHP General Mailing List

RE: [PHP] Pass variables with PHP_SELF?

2001-07-15 Thread Maxim Maletsky
try submitting this page to $REQUEST_URI form action=?=$REQUEST_URI? ... Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- From: David [mailto:[EMAIL PROTECTED]] Sent: Monday,

[PHP] MySQL Connect Timing out?

2001-07-15 Thread Chris Anderson
I have an include file that includes my mysql connect information. Its sole purpose is to login to mysql. Strangely on my Win9x development system with apache, sometimes, almost randomly, the connection will time out. Then if I press refresh it works prefectly. I am only connecting once per

[PHP] Confusion abounds here

2001-07-15 Thread Tom Malone
I just renamed a directory on my webserver (apache) and then did a searchreplace in my text editor to update all my files then uploaded them. Now I am getting the following error on a page I am using to display all the rows in a database that contains session data: Warning: Cannot send session

RE: [PHP]OT I know, but WTF...

2001-07-15 Thread Chris Cocuzzo
platform: win 98 se browser: IE 6 public beta proxie: not using one or whatever connection: LAN-mediaone -Original Message- From: DAve Goodrich [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 12:40 PM To: [EMAIL PROTECTED] Subject: Re: [PHP]OT I know, but WTF... Browser?

[PHP] Wget and PHP

2001-07-15 Thread Clayton Dukes
Is there a utility available that will get PHP based websites? Wget doesn't do it TIA! Clayton DukesCCNA, CCDA, CCDP, CCNPDownload Free Essays, Term Papers and Cisco Training from http://www.gdd.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Re: Confusion abounds here

2001-07-15 Thread Inércia Sensorial
Spaces or new lines can give this problem also. For example (left numbers are lines): 1. 2.?php 3.session_start(); 4.? Might give errors because of the first line (wich is empty). Check if the file logs.php doesn't have this problem. -- Julio Nobrega. Because happiness is a warm gun

RE: [PHP] Confusion abounds here

2001-07-15 Thread Maxim Maletsky
PHP sends them automatically, at the first output you do. But that's irrelevant. What I think you did, is you replacing something created an output (could be some character or even a blank spaced or a newline before ?) in file logs.php just make sure that file starts from ? at the very

Re: [PHP] Wget and PHP

2001-07-15 Thread DAve Goodrich
Wget works just fine for me here. The one problem I see is if you need to complete a form for entry, session login, then it can be a problem. I solve that by allowing a no login on our development box behind the firewall. I'm sure it could be done use a post (php has a post class I believe)

Re: [PHP]OT I know, but WTF...

2001-07-15 Thread DAve Goodrich
on 7/15/01 9:43 AM, Chris Cocuzzo at [EMAIL PROTECTED] wrote: platform: win 98 se browser: IE 6 public beta That is your problem. Tried MS website? DAve proxie: not using one or whatever connection: LAN-mediaone -Original Message- From: DAve Goodrich

[PHP] Re: Confusion abounds here

2001-07-15 Thread Tom Malone
Thanks Maxim and Inercia - you were both right - somehow an extra space was put in before the ? when I did the search and replace. Thank you! Tom Malone -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] how can i creat a file and write a string to it!

2001-07-15 Thread sunny AT wde
i've been looking for an adequate answer all morning in the archives, but can't find one, neithr can i understand the manual. all i want to do is for php to take the strong sent to it through a form, and create a new file with a name 2.html for example, and write the string to it. how can i

Re: [PHP] Wget and PHP

2001-07-15 Thread DAve Goodrich
on 7/15/01 9:59 AM, Clayton Dukes at [EMAIL PROTECTED] wrote: Is there a utility available that will get PHP based websites? Wget doesn't do it TIA! Clayton Dukes CCNA, CCDA, CCDP, CCNP Download Free Essays, Term Papers and Cisco Training from http://www.gdd.net

[PHP] php/apache/cgi

2001-07-15 Thread Raquel Hurtado
Can't get apache to run php under the /cgi-bin directory, getting: Exec format error: exec of /var/www/cgi-bin/test.php failed. Does it mean that I should install PHP as a CGI module? Thanks in advance. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] how can i creat a file and write a string to it!

2001-07-15 Thread John Meyer
At 06:27 PM 7/15/01 +0100, sunny AT wde wrote: i've been looking for an adequate answer all morning in the archives, fwrite($file, $articletext); Don't you have to do a fopen beforehand? John Meyer [EMAIL PROTECTED] Programmer If we didn't have Microsoft, we'd have to blame ourselves

[PHP] Simple (??) control structure problem

2001-07-15 Thread Christopher Kaminski
I'm trying to write a simple weblog script, but I've encountered a perplexing problem. I'm sure I'm overlooking something simple. I'm trying to take textarea form input, parse it, and wrap it in p tags. The problem is removing extra carriage returns. I'm sure there's a problem with the if

Re: [PHP] Simple (??) control structure problem

2001-07-15 Thread James, Yz
Hi Christopher, Why not use nl2br() and trim() ? $string = trim($string); // Clear any unwanted white space (trailing and leading); $string = nl2br($string); // Add line breaks where necessary echo $string; // Voila James Christopher Kaminski [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] installing 4.0.6 fails

2001-07-15 Thread Alexander Lohse
Hi, I used to install every version up to 4.0.4 with apxs. Always worked fine. But Version 4.0.6 fails, telling me that apache would not have been built with mod_so support! I am using apache 1.3.6. Any idea? Regards, Alex PS: Please mail cc-me because I am currently offlist! Thanx. --

Re: [PHP] Simple (??) control structure problem

2001-07-15 Thread Christopher Kaminski
Thanks alot! I didn't do that because I wasn't aware of the nl2br() function. I just taught myself php last weekend. There's still plenty for me to learn. Yz James [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi Christopher, Why not use nl2br() and trim()

[PHP] Re: Question about strlen I think

2001-07-15 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/ /dennis/ must become /uploads/4sp/by/3spdennis/ See http://php.net/preg-replace. You can use the e or f modifier to

[PHP] I want to learn this!

2001-07-15 Thread Minardi boy
Hello My name is Robert-Jan and I've been webdesigning since 97 (very basic HTML sites, little Java and Flash). I got a job on the web in 99 and this was mainly providing content and other guys did the asp stuff for me. This is why I kindo overslept the database hype. And heck I want to learn

Re: [PHP] how can i creat a file and write a string to it!

2001-07-15 Thread Chris Anderson
Try looking under Filesystem functions in the manual. - Original Message - From: sunny AT wde [EMAIL PROTECTED] To: php [EMAIL PROTECTED] Sent: Sunday, July 15, 2001 1:27 PM Subject: [PHP] how can i creat a file and write a string to it! i've been looking for an adequate answer all

[PHP] Re: I want to learn this!

2001-07-15 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Minardi Boy) wrote: I've downloaded the manual at php.net but this wasn't very satisfying as I really don't like reading lots of complicated stuff on the screen of my laptop. Then print it. No kidding. I'm all for conserving paper, but this

[PHP] option value

2001-07-15 Thread Michael Thomas
how can i populate an dropdown box useing php postgresql. Thanks in advance -- 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-mail: [EMAIL PROTECTED]

Re: [PHP] Re: I want to learn this!

2001-07-15 Thread Chris Anderson
Zona is right, if you avoid the manual you will experience many problems. Never avoid the documentation - Original Message - From: CC Zona [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 15, 2001 5:06 PM Subject: [PHP] Re: I want to learn this! In article [EMAIL PROTECTED],

[PHP] Reenviar: Help on LDAP and PHP4

2001-07-15 Thread osman . bayona
___ Consigue tu e-mail gratuito TERRA.COM.CO Haz click en http://www1.terra.com.co/correo Hi... I have this issue that is killing me. I installed PHP 4.0.4 with Solaris 8 and Apache. I want to use LDAP connecting to a server

Re: [PHP] I want to learn this!

2001-07-15 Thread Aral Balkan
If you're running Windows, try the .chm (windows helpfile?) version of the manual -- IMHO it's much easier to navigate then the HTML version. I find it indispensable. Aral :) __ ([EMAIL PROTECTED]) New Media Producer, Kismia, Inc. ([EMAIL PROTECTED]) Adj.

[PHP] converting multiple URL values for the same variable into an array

2001-07-15 Thread Kurt Lieber
I'm modifying some code for ampache (ampache.kveton.com) and have run into a snag that I'm not sure I understand completely. Part of the code produces a URL similar to the following: http://myhost/playlist.pls?song=100song=101song=102 and $song then gets passed to this function: function

RE: [PHP] converting multiple URL values for the same variable into an array

2001-07-15 Thread Kurt Lieber
I should also clarify that .pls is set up as a PHP extension and the page is being interpreted by the PHP engine. --kurt -Original Message- From: Kurt Lieber [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 4:03 PM To: [EMAIL PROTECTED] Subject: [PHP] converting multiple URL

Re: [PHP]OT I know, but WTF...

2001-07-15 Thread Chris Anderson
I've actually had an MS representative tell me not to use the IE6 beta. What's that tell you? - Original Message - From: Chris Cocuzzo [EMAIL PROTECTED] To: PHP General List (E-mail) [EMAIL PROTECTED] Sent: Sunday, July 15, 2001 12:08 PM Subject: [PHP]OT I know, but WTF... hey- I

[PHP] Installing fdf support in php

2001-07-15 Thread Michael Stearns
I am working in a virtual server environment on FreeBSD with PHP4/apache (I don't have root access to the server). I would like to install fdf support. The install instructions that came with the package from Adobe are minimal. From reading the docs on php.net I understood that I could modify

Re: [PHP]OT I know, but WTF...

2001-07-15 Thread Chris Lambert - WhiteCrown Networks
That the IE6 beta is a beta. /* Chris Lambert, CTO - [EMAIL PROTECTED] WhiteCrown Networks - More Than White Hats Web Application Security - www.whitecrown.net */ - Original Message - From: Chris Anderson [EMAIL PROTECTED] To: [EMAIL PROTECTED]; PHP General List (E-mail) [EMAIL

[PHP] [ANN] MySQLConnect for 4D 1.0 Demo

2001-07-15 Thread spinel
FOR IMMEDIATE RELEASE Exenevex, SA ( http://www.exenevex.com ) announces release of MySQLConnect for 4D 1.0 demo version Paris, France - Monday, July 16th, 2001: Exenevex, SA, today announced the release of demo version of MySQLConnect for 4D 1.0 (MacOS Windows). MySQLConnect for 4D is a 4th

[PHP] need some help with EREGI please

2001-07-15 Thread Andre Bajew
Hi all, I know I'm doing something dumb but I keep missing it. What I am trying to do is parse through some text and pick up starting at each font and ending with each /a. Starting at a href and ending with /a works fine. I thought I read the eregi docu thoroughly but maybe not ?? Any help

Re: [PHP] Anybody using Miva or hosted at Hosting4All?

2001-07-15 Thread Rasmus Lerdorf
If you have a shell account on the box, or if you have a similar box yourself, you can build the curl extension as a standalone curl.so and simply dl() it from your script. eg. ./configure your regular configure flags --with-curl=shared make You should then see modules/curl.so which you

Re: [PHP] Session Question

2001-07-15 Thread Rasmus Lerdorf
Warning: fopen(/home/tgmalone/sessn-log/0bbaf33ab1c1f9d714e2244459979ec7.txt,a) - Permission denied in /home/tgmalone/public_html/index.php on line 17 The problem is obvious, but I've been searching, searching and wracking my inadequate brain for a solution and can't find one - can anyone

[PHP] Session questions

2001-07-15 Thread Jason Rennie
Hi all, This might be a dumb question but can anybody tell me why on earth this doesn't work ? session_start() $logged_in = session_is_registered(auth); if($logged_in != true) { if(!(pam_auth($usernamelogin,$pass,$error))) { // send an error if it doens't login

Re: [PHP]OT I know, but WTF...

2001-07-15 Thread Chris Anderson
: ) - Original Message - From: Chris Lambert - WhiteCrown Networks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 15, 2001 7:10 PM Subject: Re: [PHP]OT I know, but WTF... That the IE6 beta is a beta. /* Chris Lambert, CTO - [EMAIL PROTECTED] WhiteCrown Networks - More

RE: [PHP]OT I know, but WTF...

2001-07-15 Thread Chris Cocuzzo
alright. i reinstalled the more stable IE5, however I'm still experiencing problems accessing https sites. any ideas(I went through all the settings too, nothing seems to work). chris -Original Message- From: Chris Anderson [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 10:38

RE: [PHP]OT I know, but WTF...

2001-07-15 Thread Kurt Lieber
I have an idea. Let's keep this thread off the PHP list. One OT email is bad enough -- an entire thread is simply too much. -Original Message- From: Chris Cocuzzo [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 15, 2001 8:10 PM To: PHP General List (E-mail) Subject: RE: [PHP]OT I know,

[PHP] Help you with our programming skills and experience

2001-07-15 Thread David Rosen
Hello, We are a team of experienced programmers with skills of PHP/Perl/JAVA/C++/VB/Servlet/JSP/ASP/PowerBuilder/XML/ DHTML/WAP WML with database of MySQL/MS Access/ MS SQL/ORACLE/DB2/Sybase/Informix. We are experienced in programming for various E-Commerce web site and standalone

Re: [PHP] but mysql? (was: postgres and php)

2001-07-15 Thread Nuno Silva
hello, [EMAIL PROTECTED] wrote: Hi Nuno! On Sat, 14 Jul 2001, Nuno Silva wrote: hi there! the operators you want are ~ and ~* and !~ and !~*. select name from table where name ~* 'test'; any idea of something like this in MySQL? I was used to pg and I have no idea of something

[PHP] mysql_fetch..........

2001-07-15 Thread Deependra B. Tandukar
Greetings ! I have a table in mysql: id item 1 Apple 2 Orange 3 Banana I displayed all the items in HTML with PHP form while ($row=mysql_fetch_array($query)) { $item=$row[item]; echo table trtdinput type=text value=$item name=item /td /tr /table; }; /form Now if I want to

[PHP] Re: Question about strlen I think

2001-07-15 Thread Dennis Kaandorp
Thank you very much! Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is there a way to replace the spaces between the paths? This is what I mean: /uploads//by/

[PHP] Re: Question about strlen I think

2001-07-15 Thread Dennis Kaandorp
argh.. it was to complicated for me :( Can you help me with this? $ftpdata['path'] = preg_replace($ftpdata['path']); Thnx Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dennis Kaandorp) wrote: Is

[PHP] html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
On my site I want people to be able to type HTML into a form. The function strip_tags(); is great but if a person types: a href=http://www.someplace.comMy site!/a (note the omitted ) it screws up the whole page. Is there a function script some place that will stop/fix these kind of errors?

[PHP] Help: PHP 4.0.6 -- PSPELL can't load ASPELL module...

2001-07-15 Thread Garth Dahlstrom
Hi all, I've been searching all over for a solution to get pspell going... I managed to get 4.06 to build with pspell support enabled, first I got an error about no dictionaries... so I installed aspell - since I read there is a dependancy of some kind between them, now I have a new problem.

Re: [PHP] I want to learn this!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/15/01 4:39 PM, Minardi boy at [EMAIL PROTECTED] wrote: Are there any books you guys/gals could recommend? Are there (non university/school) classes (satisfactory)? Try: the Oreilly PHP pocket reference. It shows you how to make forms. Also MySQL from the New Riders has a good chapter

[PHP] Re: html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/16/01 1:47 AM, Ray Dow at [EMAIL PROTECTED] wrote: Try a different format that is also easier for the users to type. For example; a http://somesite.comClick me!/a and then convert that string OR [link:http://somesite.com]Click me![link] NEVER let users type HTML straight into a form

[PHP] Re: access pop3 without IMAP

2001-07-15 Thread Adrian D'Costa
Hi James, I past that stage but stuck with messages that are MultiPart/Mixed. I need to display the attachments and give the viewer to download or view if possible. Adrian On Sun, 15 Jul 2001, James Tan wrote: hi prachait saxena, I'm trying to build the same too... u can use the

[PHP] Re: REGEXP

2001-07-15 Thread Adrian D'Costa
Hi James, Thanks for your mail. But I think the problem like somewhere else. I have the following: echo $buffer; There result : Content-Type: multipart/mixed; This is wrong. It should be Content-Type: multipart/mixed; boundary=B42DA66C4EC07C9B572A58FC I don't know why it is

[PHP] RE: html in my form? bad things! help help help!

2001-07-15 Thread Ray Dow
Everything removed by strip_tags(), including a href=somelinkclick me/a (you original example) See the problem? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, 16 July 1979 3:46 PM To: Ray Dow; [EMAIL PROTECTED] Subject: Re: html in my form?

Re: [PHP] RE: html in my form? bad things! help help help!

2001-07-15 Thread [EMAIL PROTECTED]
on 7/16/01 2:03 AM, Ray Dow at [EMAIL PROTECTED] wrote: Everything removed by strip_tags(), including a href=somelinkclick me/a (you original example) See the problem? Everything isn't removed if you set it up like this: strip_tags($string,a,i,b) that part is working fine, it's tags

[PHP] Session questions

2001-07-15 Thread Jason Rennie
Hi all, This might be a dumb question but can anybody tell me why on earth this doesn't work ? session_start() $logged_in = session_is_registered(auth); if($logged_in != true) { if(!(pam_auth($usernamelogin,$pass,$error))) { // send an error if it doens't login

RE: [PHP] Session questions

2001-07-15 Thread VFSA-eRentals
try just echoing $usernamelogin and see if you can get an out put from that ... it could be because $usernamelogin is not getting set -Original Message- From: Jason Rennie [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 6:14 PM To: [EMAIL PROTECTED] Subject: [PHP]