[PHP] IE - View Source

2001-07-26 Thread Steve Haemelinck
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 the next level Junior IT Consultant

[PHP] repost: error allways on line 1

2001-07-26 Thread Justin French
Hi, No matter where in my code i have a syntax / parse error, my local test server (php 4.0.1, FreeBSD) it reports it as an error on line one, whereas it actually be 281!! When I upload the same script to the live server, it reports the error on the correct line. This is really eating into my

Re: [PHP] IE - View Source

2001-07-26 Thread Jason Brooke
I was under the impression it couldn't be done because it would require your code control the end-user's web browser, no matter what the brand. Can you please show us these sites? - Original Message - From: Steve Haemelinck [EMAIL PROTECTED] To: Brad S. Jackson (E-mail) [EMAIL

Re: [PHP] IE - View Source

2001-07-26 Thread Peter Houchin
They do it using a java script that disables the right click or they build a custom right click menu -- Peter Houchin Sun Rentals STR Manager Phone: 03 9329 1455 Fax: 03 9329 6755 [EMAIL PROTECTED] http://www.sun.com.au/rentals =

[PHP] how to call HTML file within php file

2001-07-26 Thread Balaji Ankem
Hi! dear friends, I would like to invoke one HTML file if "IF condition " satisfies otherwise invoke another HTML file. I am sending the document. Please help outme. Thanks in advance. Regards -Balaji The Information contained and transmitted by this E-MAIL is proprietary to Wipro

Re: [PHP] IE - View Source

2001-07-26 Thread Jack
There is no way to disable view source from the menu bar in IE, you can only disable view source by disable right click, but they can still view source using the menu bar. Jack [EMAIL PROTECTED] Love your enemies, it will drive them nuts - Original Message - From: Peter Houchin [EMAIL

Re: [PHP] how to call HTML file within php file

2001-07-26 Thread David Robley
On Thu, 26 Jul 2001 16:18, Balaji Ankem wrote: Hi! dear friends, I would like to invoke one HTML file if IF condition satisfies otherwise invoke another HTML file. I am sending the document. Please help out me. Thanks in advance. Regards -Balaji This mailing list doesn't

[PHP] what would return?

2001-07-26 Thread Adrian D'Costa
Hi, I have a php script that will send certain information to a mailing list. Upon arrival the customer will have seven records each with a unique id. On clicking the link a mail will be sent back with the subject having that unique id. On arriving at my mail server I pipe the mail thru a php

[PHP] Re: mail priority

2001-07-26 Thread Adrian D'Costa
You can add it in the headers. In fact you can add any info as long as they abide by the RFC822. I took if from the function.mail.php /* additional header pieces for errors, From cc's, bcc's, etc */ $headers .= From: Birthday Reminder [EMAIL PROTECTED]\n; $headers .= X-Sender: [EMAIL

Re: [PHP] IE - View Source

2001-07-26 Thread Alexander Skwar
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 can't. You can make stupid games and disable right mouse button clicks, but that's still not going to stop anyone to get the HTML output. Alexander

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-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 enabled

[PHP] problem running php

2001-07-26 Thread raj kumar
Hi, Though i am running php on apache server on my win98 machine perfectly, recently i install apache and php on my win2000 server, apache start very well but php is not working, as it seems, though when i run phpinfo out of my server with php.exe it runs but it dosen't show in browser whenever

[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

[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,

[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. This

[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/

[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 perl

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 empty

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

[PHP] Re: IE - View Source

2001-07-26 Thread Micha
body ... onConTextMenu=return false; 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

[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

[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=joename=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=joename=bob A Is there any way to extract both values of name without changing the way the query string is created?

[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] 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

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 file Date:

[PHP] Re: Query String Name ?

2001-07-26 Thread Yasuo Ohgaki
Use array. test.php?name[]=joename[]=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 two

[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 PROTECTED]...

[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

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

[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

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): ?php mysql_connect(db, $user, $password); $result = mysql_query( SELECT eventName FROM $table); while(list($event) = mysql_fetch_row($result))

[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) ?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

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,

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? ?php mysql_connect(db, $user, $password); $result =

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

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. So

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

RE: [PHP] html form question

2001-07-26 Thread Lenar Lhmus
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 can

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 to

[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

RE: [PHP] read filenames from dir

2001-07-26 Thread Phil Spitler
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.$entry)) AND ($entry !== .) AND ($entry !== ..)){ echo a href='$entry'$entry/abr\n; } } $d-close(); ? - Phil

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 ("br"); } here column1,2,3,4 are the attributes of the table.

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

[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

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

[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. snip class A { function A() { echo I am the constructor of A.br\n; } function B() { echo I am a regular function named B in class A.br\n; echo I am not a constructor in A.br\n; } } class B extends

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 is

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? Visit

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:

[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

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

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

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 do it in

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

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

[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

[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

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

[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

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:

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)

[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

[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

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

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 problem: I

[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 !

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 html head meta http-equiv=Content-Language content=en-us meta http-equiv=Content-Type content=text/html;

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

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 windows,

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

[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

[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? as a funny aside, I

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

[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: a href=\javascript:newWindow = window.open('db_viewMD.php?dsn=$dsndb=$dblm=$lmadvsrch=true','advsrch','h eight=$vsize,width=310,scrollbars=$bln,resizeable=yes'); newWindow.focus()\)Advanced Search/a Enter text

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. Chad

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

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

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

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 _

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 provoke

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,

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

  1   2   >