[PHP] Avoiding repost

2001-07-26 Thread Ashley M. Kirchner
I have a card system that will ask for the required information, and one hits a 'Send' button to send the card. This will submit all the information to a database and send the viewer to a 'Thank You' page. The problem is, if they hit reload on that (Thank You) page, (and answer 'yes' to the

RE: [PHP] Avoiding repost

2001-07-26 Thread Lawrence . Sheed
Set a flag either cookie, or db based. in your submit code, set the flag, fairly simple if ($submitted) { //error i've been posted already } else { //do form submit stuff. $submitted=1; //SetCookie or session variable... } -Original Message- From: Ashley M. Kirchner [mailto:[EMAIL PROTE

[PHP] I want to AUTO_INCREMENT fields

2001-07-26 Thread elias
Hi! I want to have to fields, first field is the primary key and is called 'id' and is an integer, and i want another field of type integer to be also autoincremented... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Re: Avoiding repost

2001-07-26 Thread elias
I remember seeing a solution for this on PHPBuilder.com plz check it out "Ashley M. Kirchner" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I have a card system that will ask for the required information, and > one hits a 'Send' button to send the card.

[PHP] Re: WSIWYG Editor using PHP?

2001-07-26 Thread Adrian Ciutureanu
All messages in this thread reffers to applications for edit PHP/HTML. The question was about a WSIWYG Editor for HTML files that runs in browser, not an application that you install and edit local files! Did anybody click on the link to EZEdit? "Bob Clingan" <[EMAIL PROTECTED]> wrote in message

[PHP] Anyway to reset MySql's AUTO_INCREMENT counter?

2001-07-26 Thread elias
Hi. Usually, Any AUTO_INCREMENT field in MySql table will have always an incrementing value. Now Suppose I emptied the table and then inserted one record, why not this record LAST_INSERT_ID is not '1' or '0' and why it is the lastid+1 before I empty the table? Can't I reset that pointer w/ delet

[PHP] Re: Install

2001-07-26 Thread elias
www.activestate.com (Perl) www.editplus.com (good editor for programming) "Roman" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello ! > > I want to install perl under apache in windows, please send me some > information > how can i install, where I find pe

Re: [PHP] I want to AUTO_INCREMENT fields

2001-07-26 Thread David Robley
On Thu, 26 Jul 2001 18:53, elias wrote: > Hi! > > I want to have to fields, > first field is the primary key and is called 'id' and is an integer, > and i want another field of type integer to be also autoincremented... If you are using mysql, this snippet from the manual answers your question:

Re: [PHP] Anyway to reset MySql's AUTO_INCREMENT counter?

2001-07-26 Thread David Robley
On Thu, 26 Jul 2001 19:13, elias wrote: > Hi. > > Usually, Any AUTO_INCREMENT field in MySql table will have always an > incrementing value. > Now Suppose I emptied the table and then inserted one record, why not > this record LAST_INSERT_ID is not '1' or '0' and why it is the lastid+1 > before I

[PHP] Apache + Oracle + PHP on HPUX

2001-07-26 Thread [EMAIL PROTECTED]
Hi! I've got an HP-UX 10.20 and I would like to install Apache + Oracle + PHP. Does anyone know a place to get an installation guide? Or must I install in the same way as Linux? Regards, - This mail was sent through Eoffice: http://www.e

[PHP] Re: IE -> View Source

2001-07-26 Thread Micha
Steve Haemelinck wrote: > Some sites are able to disable the source view in ie. How do you do that? > > Haemelinck Steve > > Personal: > Haemelinck.be - Developers Unite :) > Junior WebDeveloper > http://www.haemelinck.com/ > [EMAIL PROTECTED] > > Work: > MCT IT Consulting - Take consulting 2 t

[PHP] search my site

2001-07-26 Thread kaab kaoutar
Hi, I have a web site that contaains html files and mysql dbs! I'd like to integrate a search tool in my site ! Can u point me to some already done tools tha t i can use, or ideas that can help me ? Thanks _ Get your FREE download

[PHP] Query String Name ?

2001-07-26 Thread A
Hi there, is there any way to access two variables in a query string that have the same name e.g test.php?name=joe&name=bob Is there any way to extract both values of name without changing the way the query string is created? Thanks, Abe

Re: [PHP] Query String Name ?

2001-07-26 Thread Daniel Rezny
Hello, Thursday, July 26, 2001, 12:14:39 PM, you wrote: A> Hi there, A> is there any way to access two variables in a query string that have the same name e.g A> test.php?name=joe&name=bob A> Is there any way to extract both values of name without changing the way the query string is create

[PHP] download a pdf file

2001-07-26 Thread kaab kaoutar
Hi I looked in the php manual for how to download a file bbut in vain. Thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

[PHP] HTML table problem (solvable with PHP?)

2001-07-26 Thread Seb Frost
OK I've got a problem with my HTML table which I think needs PHP use to solve it. I hope not, because I'd rather fix the problem as it should be fixed. OK let me try and describe it. I have a table with two columns. In the left hand column is 6 rows of fixed height cells with navigational link

[PHP] libmcrypt 2.2.x vs 2.4.x

2001-07-26 Thread Marius Andreiana
Hi I'd like to switch to 2.4.x from 2.2.x but I get warnings with old code using mcrypt_ecb: Warning: size of key is too large for this algorithm Warning: attempt to use an empty IV, which is NOT recommend There's too much legacy code to change and key can't be changed now, any way to use 2.4.

[PHP] Re: download a pdf file

2001-07-26 Thread Fredrik Arild Takle
Like this? Best Regards Fredrik A. Takle Bergen, Norway "Kaab Kaoutar" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi > I looked in the php manual for how to download a file > bbut in vain. > Thanks > > > _

Re: [PHP] Re: download a pdf file

2001-07-26 Thread kaab kaoutar
Maybe ?! I tried it it gives me an error in that line header("Content-Disposition: filename=\"$file\""); But how when i click on a button, the dialog box for downloading appear? Thanks >From: "Fredrik Arild Takle" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: [PHP] Re: download a pdf fi

[PHP] Re: Query String Name ?

2001-07-26 Thread Yasuo Ohgaki
Use array. test.php?name[]=joe&name[]=bob You'll get array "name" has "joe","bob". Or parse query string by yourself. -- Yasuo Ohgaki "A" <[EMAIL PROTECTED]> wrote in message 008801c115bb$cad13360$4301a8c0@abe">news:008801c115bb$cad13360$4301a8c0@abe... Hi there, is there any way to access

[PHP] Re: Avoiding repost

2001-07-26 Thread Lenar
Put your "thank you" on another page. Then after processing your post data, instead outputting "thank you" do: header("Location: http://youthost/thankyoupage.php";); die(); That should do it. Lenar "Ashley M. Kirchner" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECT

[PHP] Arabic+php+mysql

2001-07-26 Thread kaab kaoutar
Hi I'd like to translate my french to site to an arabic one! I used php and mysql! Can u help me a bit pls? Obviously mysql supports arabic ok! but i have i use phpdig to search my site and i also search my mysql dbs! how can i display arabic from mysql to php files as result of a query without th

Re: [PHP] Apache + Oracle + PHP on HPUX

2001-07-26 Thread infoz
>I've got an HP-UX 10.20 and I would like to install >Apache + Oracle + PHP. You have my deepest sympathies. :) I installed and maintained PHP3 & PHP4 + Oracle + OpenSSL + Apache on a system like that for 2 years before we were finally able to retire it and move to a Solaris environment. The h

[PHP] Arabic & php

2001-07-26 Thread kaab kaoutar
How to display Arabic ina php file ? I mean in a pc who's os does not support arabic, how a user can watch my arabic php file Thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP General Ma

Re: [PHP] html form question

2001-07-26 Thread Lenar
> Funny you should ask - just done it myself: Why you use mysql_result function? This can be done a bit simpler way (and more effective): $event\n"; ?> Lenar > >$table="shoots"; > require ("connect.php4"); > $result=MYSQL_QUERY( "SELECT eventName FROM $table"); > $num_rows = mysql_n

[PHP] How to display values in HTML form by retriving from database through PHP

2001-07-26 Thread Balaji Ankem
Hi! Dear friends,   How to display the values in HTML FORM by retrieving the values from database.   Please any one of u know suggest me.   Thanks in advance.   CODE(MODIFYUSER.PHP)     // Connect to MySQL      

RE: [PHP] html form question

2001-07-26 Thread Seb Frost
Thanks for that! I was just using the same structure as I found in a code sample somewhere. - seb -Original Message- From: Lenar [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 13:16 To: [EMAIL PROTECTED] Subject: Re: [PHP] html form question > Funny you should ask - just done it myself

RE: [PHP] Apache + Oracle + PHP on HPUX

2001-07-26 Thread Andrew Hill
Hi, You can use OpenLink ODBC drivers, and compile PHP/apache --with-iodbc as per the HOWTO at www.iodbc.org. The HOWTO is Linux-based, but the major different will be environment variables. During the install of OpenLink MT drivers a shell script will be automatically created (openlink.sh, ope

RE: [PHP] html form question

2001-07-26 Thread Seb Frost
OK so how would that look if I'd done SELECT * instead of SELECT eventName? I'm guessing I have two nested while loops then? I'm guessing something like this.? Or is it not possible and I have to go back to mysql_result? $value\n"; } ?> - seb -Original Message- From: Lenar [ma

Re: [PHP] How to display values in HTML form by retriving from database through PHP

2001-07-26 Thread Daniel Rezny
Hello Balaji, Thursday, July 26, 2001, 2:24:09 PM, you wrote: BA> Hi! Dear friends, BA> How to display the values in HTML FORM by retrieving the values from database. BA> Please any one of u know suggest me. BA> Thanks in advance. BA> CODE(MODIFYUSER.PHP) BA> ---

[PHP] Display fields

2001-07-26 Thread Manohar.K (GM Systems)
We want to display the customer name when the customer code is typed in a maintainable field. Can someone tell us how to do this? TIA KM -Original Message- From: elias [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 3:15 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Install www

RE: [PHP] How to display values in HTML form by retriving from database through PHP

2001-07-26 Thread Jon Haworth
> // Connect to MySQL > > mysql_connect( 'localhost', 'balaji', 'pingpong' ) > or die ( 'Unable to connect to server.' ); ...and you'll be changing your password right about now, I suppose :-) Cheers Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [

Re: [PHP] Arabic & php

2001-07-26 Thread Marty Landman
At 12:10 pm 7/26/01 +, kaab kaoutar wrote: >How to display Arabic ina php file ? >I mean in a pc who's os does not support arabic, how a user can watch my >arabic php file Kaab, If the visitor's computer doesn't support Arabic display then I think you're left with preparing image files. S

Re: [PHP] How to display values in HTML form by retriving from database through PHP

2001-07-26 Thread Balaji Ankem
Hi, friend It is not displaying values.   thanks for u'r reply.   -Balaji - Original Message - From: Daniel Rezny To: Balaji Ankem Cc: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 6:22 PM Subject: Re: [PHP] How to display values in HTML form by retriving f

RE: [PHP] html form question

2001-07-26 Thread Lenar Lõhmus
On Thu, 26 Jul 2001, Seb Frost wrote: > OK so how would that look if I'd done SELECT * instead of SELECT eventName? > I'm guessing I have two nested while loops then? > > I'm guessing something like this.? Or is it not possible and I have to > go back to mysql_result? Nope, instead you c

[PHP] read filenames from dir

2001-07-26 Thread news.php.net
hi, I want to read the filenames in a specific dir (running Linux) and echo the names as link in my browser. Which functions/commands can I use for this? What are the security risks? TIA, Dr.Bob -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: [PHP] How to display values in HTML form by retriving from database through PHP

2001-07-26 Thread Balaji Ankem
Hi! friend yes now it is working.   prebiously because of cache problem it didn't work.   Thanks a lot.   cheers -Balaji - Original Message - From: Daniel Rezny To: Balaji Ankem Cc: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 6:22 PM Subject: Re: [PHP] How

[PHP] rows not columns

2001-07-26 Thread AJDIN BRANDIC
I am trying to display result of a MySQL query using php. Say I get 4 rows from my query. I want to display them verticaly in a table like this title1 field one1field one2 field one3field one4 title2 field two1field two2 field two3field two4 title3 field t

RE: [PHP] read filenames from dir

2001-07-26 Thread Phil Spitler
This should do it for you. read()) { if ((!is_dir($path.$entry)) AND ($entry !== ".") AND ($entry !== "..")){ echo "$entry\n"; } } $d->close(); ?> - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324 mailto:[EMAIL PROTECTED] > -Original M

Fw: [PHP] rows not columns

2001-07-26 Thread Balaji Ankem
  assume $result is the result stored after execution of query.   while ($row = mysql_fetch_object($result)){    echo $row->column1; echo (" "); echo $row->column2; echo (" "); echo $row->column3;  echo (" ");  echo $row->column4;    echo (""); }   here column1,2,3,4

Re: Fw: [PHP] rows not columns

2001-07-26 Thread AJDIN BRANDIC
That will display data from each db row to a row on the screen which is oposite of what i am trying to do. Ajdin On Thu, 26 Jul 2001, Balaji Ankem wrote: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

[PHP] HTTP_REFERRER Problem

2001-07-26 Thread Shrout, Ryan
Here is the code I am trying to use: setcookie('admin2amdmb',mysql_result($user_result, 0, Username),time()); $tdate = date ('Y-m-d h:i:s', time()); $success_query = "INSERT INTO session (SessionID, IP, Login, Sucess, Date)

[PHP] problem while reading on sockets ...

2001-07-26 Thread Arnauld Dravet - smurfie
Hello, simple question: $sock = fsockopen($server_ip, $server_port, $errno, $errstr, 30); while(!feof($sock)) echo fgets($sock,4096); fclose($sock); why does the while() makes an infinite loop, like if FEOF was never found ? what is the character used to tell if there's an EOF or not ? could my

Re: [PHP] read filenames from dir

2001-07-26 Thread Dr.Bob
Thanx Phil, workes great! Dr.Bob "Phil Spitler" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > This should do it for you. > > > $path = "THE DIRECTORY YOU WISH TO LIST THE FILES FROM"; > > $d = dir($path); > while ($entry=$d->read()) { > if ((!is_dir($path

RE: [PHP] HTTP_REFERRER Problem

2001-07-26 Thread Jon Haworth
Try $HTTP_REFERER instead of $HTTP_REFERRER (yes, I know it's spelt wrong, but try it :-) Cheers Jon -Original Message- From: Shrout, Ryan [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 14:53 To: '[EMAIL PROTECTED]' Subject: [PHP] HTTP_REFERRER Problem Here is the code I am trying to u

[PHP] copy shortcut

2001-07-26 Thread Jeremy Morano
I would like to know if there is a way to dissable the copy shortcut in my pages? -- 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] FTP

2001-07-26 Thread Manu Verhaegen
question : Can i make a FTP connection to other server and download a file? How can i do this Greetings, Manu Verhaegen

[PHP] PHP Constructors

2001-07-26 Thread Matthew Schubert
I was reading through the PHP manual and got to the section on constructors. class A { function A() { echo "I am the constructor of A.\n"; } function B() { echo "I am a regular function named B in class A.\n"; echo "I am not a constructor in A.\n"; } } class B extends A {

Re: [PHP] "OR" Problems

2001-07-26 Thread J S R
Thank you s much david. "David Robley" <[EMAIL PROTECTED]> wrote in message 01072515394001.32266@www">news:01072515394001.32266@www... > On Wed, 25 Jul 2001 13:36, J S R wrote: > > Shouldn't this work? I did it because I want the link to change to the > > "top-alt" class when the certain link

RE: [PHP] FTP

2001-07-26 Thread Hoover, Josh
You could try this for the sake of simplicity: $fp = fopen ("ftp://user:[EMAIL PROTECTED]/";, "w"); http://www.php.net/manual/en/function.fopen.php Josh Hoover KnowledgeStorm, Inc. [EMAIL PROTECTED] Searching for a new IT solution for your company? Need to improve your product marketing? Visi

Re: [PHP] IE -> View Source

2001-07-26 Thread Sheridan Saint-Michel
Even if they open a new window without a menu bar, and disable right clicking you can still see their source by opening a new browser window and typing "view-source:http://www.sitename.com"; =P Sheridan - Original Message - From: Jack <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: T

[PHP] File Upload Size Limits

2001-07-26 Thread Michael Conley
I am running PHP 4.0pl1 with Apache 1.3.14 on RedHat Linux 7.1. I am trying to do a file upload from the users PC to my web server. If I do a small file, the transfer goes fine. If I do a large file (> 50 MB), the transfer fails saying either the file was not available for reading or my script

[PHP] hosting

2001-07-26 Thread Jon Yaggie
I am aware this is a bit off topic but i need advice. i have a client that wants to set up hosting. we need to get him a control panel for administrative use. We have search open source stuff and there is one PHP that is alpha. We have no problem paying for it if we could find one. PHP wou

Re: [PHP] IE -> View Source

2001-07-26 Thread Andrew Brampton
How about you get one of these HTML encypting type JScripts... it converts the page into /0D type codes, and then decodes it with a built in JScript function... If you view source they will only see lots of /0D looking things, but the page will display like normal (but maybe a bit slower) Andrew

Re: [PHP] IE -> View Source

2001-07-26 Thread Dennis Gearon
Please try to read any of the browser printed text in this URL(I can't do it in NS): http://rwchat.com/DigiLink1/index.html Alexander Skwar wrote: >So sprach »Steve Haemelinck« am 2001-07-26 um 08:32:11 +0200 : >> Some sites are able to disable the source view in ie. How do you do that? > >You c

Re: [PHP] hosting

2001-07-26 Thread Jason Bell
I personally use www.phpwebhosting.com and they are "OK". I don't think I would put anything mission critical on their servers. Why do I say this? I usually spend all day long with an SSH session open, running VI to edit my site... several times throughout the day, my session will freeze... if I t

Re: [PHP] IE -> View Source

2001-07-26 Thread Clayton Dukes
Works fine for me... - Original Message - From: "Dennis Gearon" <[EMAIL PROTECTED]> To: "PHP Mailing Listl (E-mail)" <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 11:17 AM Subject: Re: [PHP] IE -> View Source > Please try to read any of the browser printed text in this URL(I can't

RE: [PHP] IE -> View Source

2001-07-26 Thread Tyrone Mills
No problems here. -Original Message- From: Dennis Gearon [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 8:17 AM To: PHP Mailing Listl (E-mail) Subject: Re: [PHP] IE -> View Source Please try to read any of the browser printed text in this URL(I can't do it in NS): http://rwcha

Re: [PHP] IE -> View Source

2001-07-26 Thread Sheridan Saint-Michel
What it ultimately comes down to is that you can play any number of games to try and obfuscate or hide your HTML and JavaScript code, but if the clients browser can read it then so can the user. Now, most of these games will prevent your average Joe surfer from reading your source... but your ave

[PHP] hosting

2001-07-26 Thread Aniceto Lopez
Nice one: http://100megswebhosting.com - 100 MB of disk space - 3 GB of bandwidth - 10 subdomains - 10 FTP accounts - control panel - cgi-bin - built-in CGI scripts - PHP 4 - FrontPage extensions - mySQL - 10 POP e-mail accounts - unlimited e-mail forwarding - unlimited autoresponders - SSL cap

[PHP] AOL messing up long links

2001-07-26 Thread david jarvis
This isn't so much PHP, but I bet it happens to lots of people. I have a PHP script which sends out an email to confirm that an email address is valid. In most cases this works fine, however, for AOL people, AOL adds a carriage return in the link, so that the variables passed in the link beco

RE: [PHP] Re: download a pdf file

2001-07-26 Thread Matthew Loff
If the PDF file is publicly accessible via a web server, you should be able to simply do: header("Location: http://www.server.com/file.pdf";); -Original Message- From: kaab kaoutar [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 7:47 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED

Re: [PHP] IE -> View Source

2001-07-26 Thread Matt Greer
on 7/26/01 10:44 AM, Sheridan Saint-Michel at [EMAIL PROTECTED] wrote: > Besides... do you REALLY have anything so mind bogglingly original in your > code that you have to > go to all these extremes to protect it? That's what I've never understood about people wanting to hide their source. HTML

RE: [PHP] PHP/Cold Fusion questions:

2001-07-26 Thread Jeff Pearson
About a year ago I did this with a Cold Fusion page and an ASP page. The ASP page was a navigation menu that I included in a Cold Fusion page that pulled for product information. I was in the middle of migrating everything from Cold Fusion to ASP. I simply included the one file in the other. The i

Re: [PHP] PHP 4.0.6 on RedHat 6.2: Undefined symbols when usingIMAP?!

2001-07-26 Thread Rasmus Lerdorf
> So sprach »Rasmus Lerdorf« am 2001-07-25 um 21:46:48 -0700 : > > Sorry, typo in my response. --with-kerberos is what you want. > > Arghl, of course! :) I should have seen this one myself... *G* > > Thanks a lot! It's now working! > > Hmm - wouldn't it make sense if configure automatically ena

[PHP] asp to php

2001-07-26 Thread kaab kaoutar
Does anyone of u has alreday tried successfully converting aso file to php file ? Is it worth doing so or restarting from scratch? Thanks _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp -- PHP Genera

RE: [PHP] hosting

2001-07-26 Thread Kenn Murrah
this DOES sound like a nice one ... but has anyone actually used them? can someone give me an idea about realibility for commerical purposes? Thanks, KennM -Original Message- From: Aniceto Lopez [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 10:43 AM To: PHP list Subject: [P

Re: [PHP] Big difference?

2001-07-26 Thread Kyle Smith
how do i make it check if it was successfully printed? -legokiller666- http://www.StupeedStudios.f2s.com New address new site ICQ: 115852509 MSN: [EMAIL PROTECTED] AIM: legokiller666 - Original Message - From: "Schill, Johannes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: We

Re: [PHP] PHP 4.0.6 on RedHat 6.2: Undefined symbols when using IMAP?!

2001-07-26 Thread Alexander Skwar
So sprach »Rasmus Lerdorf« am 2001-07-26 um 00:09:33 -0700 : > Why? Only Redhat seems to use kerborized imap libs. Excuse my ignorance, but is there no way for configure to see that the imap libs are kerborized? Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.

[PHP] hosting

2001-07-26 Thread Aniceto Lopez
Yes I use http://100megswebhosting.com to host the web sites of my customers, commerical purposes also and it works fine -- 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 administra

[PHP] fopen - warnings

2001-07-26 Thread Vanessa
Hello List, this is probably a very stupid question, but I dont know how to solve this little problem: I have a script with which text files (exported access db data sheets) can be uploaded to the mysql tables. It all works fine, but very annoyingly I get warning messages, if the text file is not

Re: [PHP] Why doesn't this simple query work?

2001-07-26 Thread Christian Reiniger
On Wednesday 25 July 2001 23:05, Seb Frost wrote: > Thanks for the suggestion but it's too ugly for me :-) I'll just stick > with using '. I don't forsee a problem. > $query = "SELECT shoodID FROM shoots WHERE location='$location'"; wget http://foo.bar/yourscript.php?location=xy';delete+from+

Re: [PHP] fopen - warnings

2001-07-26 Thread david jarvis
try @fopen("categories.txt","r+"); - Original Message - From: Vanessa <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 12:05 PM Subject: [PHP] fopen - warnings Hello List, this is probably a very stupid question, but I dont know how to solve this little proble

[PHP] phpMyNewsLetter

2001-07-26 Thread kaab kaoutar
Hi Is it worth using phpMyNewsletter or rather implementing a newsletter using php by my own!http://jesuislibre.org/progdetail.php3?idprog=28 or try another one that u suggest! Kowing that i'm creating a site for a company so that the company whi'll manage it, i mean insert newsletters ! Thank

Re: [PHP] IE -> View Source

2001-07-26 Thread David Otton
On Thu, 26 Jul 2001 08:17:28 -0700, you wrote: >Please try to read any of the browser printed text in this URL(I can't do it in >NS): >http://rwchat.com/DigiLink1/index.html RWchat Login Page etc etc etc what made you think it would be difficult? djo -- PHP General Mailing L

Re: [PHP] IE -> View Source

2001-07-26 Thread Christian Reiniger
On Thursday 26 July 2001 17:50, Matt Greer wrote: > That's what I've never understood about people wanting to hide their > source. HTML isn't rocket science. Any server side scripting won't be > seen, and Javascript isn't all that difficult. I can't imagine any > webpage that would truly have a r

RE: [PHP] Install

2001-07-26 Thread Kurt Lieber
um... this is a PHP list, not a Perl list. go to www.perl.org for perl info. > -Original Message- > From: Roman [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 25, 2001 10:50 PM > To: Php-General > Subject: [PHP] Install > > > Hello ! > > I want to install perl under apache in win

RE: [PHP] fopen - warnings

2001-07-26 Thread Taylor, Stewart
Assuming that your code works fine apart from the warning message you can use @ so suppress any warning messages e.g. @fopen( -Stewart -Original Message- From: Vanessa [mailto:[EMAIL PROTECTED]] Sent: 26 July 2001 17:06 To: [EMAIL PROTECTED] Subject: [PHP] fopen - warnings Hello Li

[PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
For a number of reasons, I need to offer a client a list of big, impressive-sounding, high-profile sites using PHP. I went looking for the list on PHP.net, and the closest I could find is http://pt2.php.net/sites.php which, as you'll see, is suffering from a fatal error. I did find a list a

[PHP] multiple commands in same sys call

2001-07-26 Thread Dennis Gearon
Is it possible to do multiple commands in a 'system' or 'exec' call, like if I were force feeding that function a shell script? I.E. ssh-agent pass phrases blah blah scp filenames, hosts, etc, blah, blah all in one shell so that the ssh-agent gets called by scp? -- PHP General Maili

[PHP] Re: Example high-profile PHP sites

2001-07-26 Thread Philip Hallstrom
Check zend.com in their case studies section... http://www.zend.com/zend/cs/ Just quickly... U.S. Naval Research Laboratory's Intranet relies on PHP Racing with PHP at the Indy 500 easyDNS And I don't see it off the bat (maybe it's in another section) but the lycos mp3 search ran on php -

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Clayton Dukes
Well, you can use mine if you like, http://www.gdd.net I'm using the Nuke portal software. More can be found at http://phpnuke.org -- Clayton Dukes CCNA, CCDA, CCDP, CCNP (c) 904.477.7825 (h) 904.292.1881 Download Free Essays, Term Papers and Cisco Training from http://www.g

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Chad Day
How about my site.. http://www.bangable.com Might not be the kind of site you want to put on your list, but we do get a lot of traffic.. 4 million page views a month. All PHP/mysql. Chad -Original Message- From: Maurice Rickard [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Erik H. Mathy
A very high traffic site (don't mind the cheese-like content) that I used be the developer for: http://www.ecrush.com 14 million hits a month on avg... - Erik -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL P

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

2001-07-26 Thread Matthew DeChant
I've gotten this far: URL to open an advanced search window(window2) from window1: Advanced Search Enter text in a form (snippet from form, close window if cancel is clicked, redirect window1 to new url, close window): print ""; print "field1\n"; print "\n"; print "\n"; print "\n"; Now the p

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Unni
If every one is giving their website about mine http://www.malayalamovies.com Chad Day wrote: > How about my site.. http://www.bangable.com > > Might not be the kind of site you want to put on your list, but we do get a > lot of traffic.. 4 million page views a month. All PHP/mysql. > > Ch

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: '

Re: [PHP] Session - to restrict same user from two logins

2001-07-26 Thread deco
> an easier way of doing this is to have a database of users with their > password in the table and when they log on simply mark them logged using > sum boolean variable. this will, cut down time. > good luck!. > and remeber Have a nice day :) And when would you uncheck the boolean

[PHP]

2001-07-26 Thread Petr Jůza
Hi everybody, please I have a question about HTML tag input - . Can I use the atributte "value", e.g. if I have a tag , I can use the atributte "value" to assign the implied value. Is this possible by "input type=file"? And what about ACCEPT atributte - what values can I use? Thank you very much

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
While I do appreciate people's contributions, let me frame the discussion a little. The person I need to convince is an administrator of an organization within North America, and he's never heard of PHP. The response I'm hoping to provoke in him is something like this: "You mean _ i

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Jack Dempsey
www.capitalone.com well known credit card company www.audiogalaxy.com <-- I wonder about the coders there (no offense if anyone on this list...just that the site is frequently down), but they're doing some cool stuff integrating the website with a windows app for downloading music... -jack -

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Shrout, Ryan
Not to pimp my own site, but Amdmb.com ( http://www.amdmb.com/ ) uses MySQL and PHP for everything. We get about 5 million pages a month. Ryan Shrout -Original Message- From: Unni [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 12:59 PM To: Chad Day Cc: Maurice Rickard; [EMAIL

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread John Meyer
At 01:14 PM 7/26/2001 -0400, Maurice Rickard wrote: >While I do appreciate people's contributions, let me frame the discussion >a little. The person I need to convince is an administrator of an >organization within North America, and he's never heard of PHP. The >response I'm hoping to provok

RE: [PHP] Example high-profile PHP sites

2001-07-26 Thread Robert Collins
www.insight.com is a publicly traded fortune 1000 company. The site is 50% php now and will be launching its new site this week that will move it up to 90% php. a demo will be available today. -Original Message- From: Maurice Rickard [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 200

Re: [PHP] IE -> View Source

2001-07-26 Thread Alexander Skwar
So sprach »Dennis Gearon« am 2001-07-26 um 08:17:28 -0700 : > Please try to read any of the browser printed text in this URL(I can't do it in > NS): > http://rwchat.com/DigiLink1/index.html wget http://sfdsadf and I can read it. Alexander Skwar -- How to quote: http://learn.to/quote (german)

Re: [PHP] I want to AUTO_INCREMENT fields

2001-07-26 Thread Alexander Skwar
So sprach »elias« am 2001-07-26 um 11:23:56 +0200 : > first field is the primary key and is called 'id' and is an integer, > and i want another field of type integer to be also autoincremented... Pardon me - but what would be the use?? Both columns would contain the same numbers, no? Alexander

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Maurice Rickard
Good point. I'm working on that data as well, but I thought getting a few marquee names wouldn't hurt matters. But yeah, functionality (which is why I'm using it in the first place) should trump popularity. -Maurice At 11:23 AM -0700 7/26/01, John Meyer wrote: > >I'd probably suggest using

Re: [PHP] Anyway to reset MySql's AUTO_INCREMENT counter?

2001-07-26 Thread Alexander Skwar
So sprach »elias« am 2001-07-26 um 11:43:36 +0200 : > Can't I reset that pointer w/ deleting the table and creating it again? Yep, DELETE FROM Table instead of dropping it. Or did you mean w/o? ALTER TABLE Table auto_increment=234; Alexander Skwar -- How to quote: http://learn.to/quote (ger

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Alexander Skwar
So sprach »Maurice Rickard« am 2001-07-26 um 12:35:55 -0400 : > For a number of reasons, I need to offer a client a list of big, > impressive-sounding, high-profile sites using PHP. I went looking In the latest (?) Zend Newsletter, there was a list. IIRC, it contained Lufthansa some US Navy (

Re: [PHP] Example high-profile PHP sites

2001-07-26 Thread Alexander Skwar
So sprach »Jack Dempsey« am 2001-07-26 um 13:16:52 -0400 : > they're doing some cool stuff integrating the website with a windows app OT: And Linux client. Alexander Skwar -- How to quote: http://learn.to/quote (german) http://quote.6x.to (english) Homepage: http://www.digitalprojects.c

  1   2   >