[PHP] Re: MySQL query length

2001-08-27 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Niklas lampén) wrote: > Can it cause any problems if mySQL query is very long? I have to compare > many words to many fields in my DB and I've done it like > "Field LIKE '%searchword%' || Field LIKE '%searchword%' || Field LIKE > '%searchwor

Re: [PHP] PCRE Multiline modifier

2001-08-27 Thread _lallous
Thanks! But I still nned to escape, but only once. I mean '<\/pre>' instead of '<\\/pre>'. "Andrey Hristov" <[EMAIL PROTECTED]> wrote in message 004401c12f02$ae5a2d30$0b01a8c0@ANDreY">news:004401c12f02$ae5a2d30$0b01a8c0@ANDreY... > I think that is the solution: > >$mem = "hello world\nI love

RE: [PHP] MySQL query length

2001-08-27 Thread Kees Hoekzema
You can alter the packetsize mysql will accept, you can find out the current setting with a "show variables" query, look for the max_allowed_packet var. You can alter it in your my.cnf file. (i have it on 25M atm). - Kees > -Original Message- > From: Niklas Lampén [mailto:[EMAIL PROTECT

[PHP] session.use_cookie

2001-08-27 Thread Richard Baskett
Could someone tell me how session.use_cookie works? To me it seems that if this is enabled and the user has cookies off.. then sessions will not work period. Any help on this would be appreciated :) Rick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECT

[PHP] MySQL query length

2001-08-27 Thread Niklas Lampén
Can it cause any problems if mySQL query is very long? I have to compare many words to many fields in my DB and I've done it like "Field LIKE '%searchword%' || Field LIKE '%searchword%' || Field LIKE '%searchword%'.". Query is build by a function, so I don't know the exact length but it is

Re: [PHP] virtual() call to CGI script

2001-08-27 Thread Jason Brooke
> I use the PHP virtual() function to call a CGI script, and that works > fine. But I need to prevent the CGI from being executed directly, in > case someone tries to access its URL. > > Since HTTP_REFERER is unreliable, I was wondering how others have > solved this problem ... > > > Egan move i

[PHP] virtual() call to CGI script

2001-08-27 Thread Egan
I use the PHP virtual() function to call a CGI script, and that works fine. But I need to prevent the CGI from being executed directly, in case someone tries to access its URL. Since HTTP_REFERER is unreliable, I was wondering how others have solved this problem ... Egan -- PHP General Ma

Re: [PHP] Web page authentications

2001-08-27 Thread senthilvellan
Hello Admin, The following example will help you HTTP Authentication example Hello $PHP_AUTH_USER."; echo "You entered $PHP_AUTH_PW as your password."; } ?> HTTP Authentication example forcing a new name/pas

RE: [PHP] PHP mysql admin?

2001-08-27 Thread Navid Yar
I downloaded it and it was fine for me. Installation only requires you to unzip the files into some folder and run the Executable. Very easy and quick. I like it, so far. I like the GUI better than phpMyAdmin... -Original Message- From: Chris Fry [mailto:[EMAIL PROTECTED]] Sent: Monday, A

RE: [PHP] PHP mysql admin?

2001-08-27 Thread Navid Yar
Thank you! :) Navid Yar -Original Message- From: Christian Dechery [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 8:58 PM To: Joseph Bannon; PHP (E-mail) Subject: RE: [PHP] PHP mysql admin? phpMyAdmin is very nice... but not even close to Mysqlfront... try it out... http://

[PHP] Disabling certain functions per directory

2001-08-27 Thread Andy Ladouceur
I'd like to use the disable_functions command from the php.ini file to disable certain functions for certain directories. I know it has to do with the httpd.conf file, but have no clue on how to go about doing it, can someone please post an example for me?With the directory I want things disabled

[PHP] Re: Formatting Dates in Form before submit

2001-08-27 Thread Andy Ladouceur
PHP is a processed before the output is sent to the browser, so a dynamic change like what you want with it isn't possible. And unfortunately,I dont know any JScript, or VBScript, so I can't help ya there.. =/ -Andy Traci P Sumpter <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAI

[PHP] Formatting Dates in Form before submit

2001-08-27 Thread Traci P Sumpter
Can anyone tell me how to use the strtotime function within the on change event of a text box?? I need to format the date before submit the form because once it submits it dynamically creates a SQL statement. Is it best to use vbscript or Jscript and if so how? Thanks in advance. -- PHP Gen

Re: [PHP] Re: Need help on putting variable into

2001-08-27 Thread Andy Ladouceur
No problem. With the space in there, it considered Company as something separate... -Andy Hugh Danaher <[EMAIL PROTECTED]> wrote in message 000801c12f74$62b93020$3907f4d8@win95">news:000801c12f74$62b93020$3907f4d8@win95... > Andy, > Thank you. It Works! > Hugh > - Original Message - > Fro

Re: [PHP] Re: Need help on putting variable into

2001-08-27 Thread Hugh Danaher
Andy, Thank you. It Works! Hugh - Original Message - From: Andy Ladouceur <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 8:35 PM Subject: [PHP] Re: Need help on putting variable into > Well,think about it like this: > If you did replace $comp name with ABC Co

Re: [PHP] file uploads & windows clients

2001-08-27 Thread Gerard Samuel
Ok, I tried the to replicate on different browsers. Microsoft IE 5.5 ,6 beta & Opera 5 all show this problem. Here are some snippets of the code that Im using. Thanks <---snip---> echo "\n"; <---snip---> echo "   \n"; <---snip---> if ($pic_type != "image/jpeg") { echo "Pleas

[PHP] Re: Need help on putting variable into

2001-08-27 Thread Andy Ladouceur
Well,think about it like this: If you did replace $comp name with ABC Company, this is what you'd get: Not quite right, eh? This will solve your problem: print ""; =) -Andy Hugh Danaher <[EMAIL PROTECTED]> wrote in message 001201c12f71$75a45b40$c1fcb3d1@win95">news:001201c12f71$75a45b40$c1fcb

Re: [PHP] $HTTP_POST_VARS

2001-08-27 Thread pierre-yves
something like this... if( sizeof( $HTTP_POST_VARS ) > 0 ){ // avoid error when no vars while ( list ( $key, $val ) = each ( $HTTP_POST_VARS )) { print "$key = $val"; } } py - Original Message - From: "Andy Ladouceur" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

[PHP] Need help on putting variable into

2001-08-27 Thread Hugh Danaher
Help. I have a page with a form with lots of text boxes which can be filled with data from a text file. the fopen() and fgets() works, and the text boxes which require numbers have no problems. But, I have text boxes which require several words of text and they refuse to work right. The fir

[PHP] new socket() function in PHP which is > 4.0.6

2001-08-27 Thread Scott Mebberson
Hi Guys, I am trying to setup a socket relay server. Has anyone tried this? Thanks Scott. -- 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 PROTECT

[PHP] file uploads & windows clients

2001-08-27 Thread Gerard Samuel
Hey all. I have a problem. I made a script that handles file uploads, and all the while I was testing on mozilla and netscape, totally forgot about IE. I have it set to only accept jpeg pics. It works no problem on mozilla and netscape, but IE isnt do too well. When I try to upload a jpeg

Re: [PHP] PHP mysql admin?

2001-08-27 Thread Chris Fry
Tried to download this but it bombs after about 55k of the 895k. Seriously broken Chris Christian Dechery wrote: > phpMyAdmin is very nice... > but not even close to Mysqlfront... try it out... > > http://www.mysqlfront.de/ > > At 10:38 27/8/2001 -0500, Joseph Bannon wrote: > >Thanks. I'll giv

Re: [PHP] $HTTP_POST_VARS

2001-08-27 Thread Andy Ladouceur
Thanks! -Andy Jason Murray <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > I am wondering if there is a command or function to get a > > list of all the current '$HTTP_POST_VARS["variable"]' variables? > > Or, a user-created way... Any helps appreciated, thank

Re: [PHP] $HTTP_POST_VARS

2001-08-27 Thread Andy Ladouceur
Ah, its that simple? -feels likea bit of an idiot- Thanks for the help! Tim <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > while (list($k,$v) = each($HTTP_POST_VARS)) { > echo "$k = $v"; > } > > On Mon, 2001-08-27 at 21:48, Andy Ladouceur wrote: > > Hello all

Re: [PHP] PHP mysql admin?

2001-08-27 Thread Jason Brooke
Just gave it a go, it hangs for ages connecting to my servers with many databases, and takes ages to retrieve record sets that load much much faster via the phpmyadmin html interface phpmyadmin, although plenty buggy on certain actions, is far better to use for me so far - Original Message

RE: [PHP] $HTTP_POST_VARS

2001-08-27 Thread Jason Murray
> I am wondering if there is a command or function to get a > list of all the current '$HTTP_POST_VARS["variable"]' variables? > Or, a user-created way... Any helps appreciated, thanks! You can use var_dump($HTTP_POST_VARS); Jason -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Certification

2001-08-27 Thread Christian Dechery
The real reason I was looking for some kind of certification, is the course I'm trying to start. Here in Rio de Janeiro, there are ZERO PHP Training Courses (in all Brazil I don't think there are more than three), and I think Certification is the reason. All other courses has a certification o

Re: [PHP] $HTTP_POST_VARS

2001-08-27 Thread Tim
while (list($k,$v) = each($HTTP_POST_VARS)) { echo "$k = $v"; } On Mon, 2001-08-27 at 21:48, Andy Ladouceur wrote: > Hello all, > I am wondering if there is a command or function to get a list of all the > current '$HTTP_POST_VARS["variable"]' variables? Or, a user-created way... > Any h

RE: [PHP] PHP mysql admin?

2001-08-27 Thread Christian Dechery
phpMyAdmin is very nice... but not even close to Mysqlfront... try it out... http://www.mysqlfront.de/ At 10:38 27/8/2001 -0500, Joseph Bannon wrote: >Thanks. I'll give it a try. > >Joseph > > >-Original Message- >Try phpMyAdmin > >http://phpwizard.net/ > > >- Original Message -

[PHP] Multiple JavaScript Windows

2001-08-27 Thread Carlos Fernando Scheidecker Antunes
Hello All, I need to have multiple JavaScripts windows with my database PHP script. The idea is to have a main Page and links to pop-up JavaScript Windows to enter information on the database. Once these windows are closed the main PHP page need to be automaticaly updated. The Database is a R

[PHP] $HTTP_POST_VARS

2001-08-27 Thread Andy Ladouceur
Hello all, I am wondering if there is a command or function to get a list of all the current '$HTTP_POST_VARS["variable"]' variables? Or, a user-created way... Any helps appreciated, thanks! -Andy L. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

RE: [PHP] Reading php source code?

2001-08-27 Thread Jason Murray
> How hard is it for someone to somehow read the source code out of my php > files on my isp hosted website. They use linux & apache & php 4.0.6. Pretty hard, assuming your code is not output at any point. > I ask because in my logfile it seems someone accessed a uniquely named > not-guessable

[PHP] Reading php source code?

2001-08-27 Thread Seb Frost
How hard is it for someone to somehow read the source code out of my php files on my isp hosted website. They use linux & apache & php 4.0.6. I ask because in my logfile it seems someone accessed a uniquely named not-guessable folder in my web root. It is mentioned in my source code. I use ima

[PHP] Pretty Formatter for PHP?

2001-08-27 Thread Joel Ricker
While I try and adhere to good formatting and punctuation practice in my coding, sometimes in my haste to write code I don't have time to properly format my code especially when I do a copy and paste and the indents don't follow the new code. Are there any apps available that will properly forma

[PHP] Re: appear in Text file

2001-08-27 Thread Andy Ladouceur
Hi Jack, The 'black box' you see is a newline, which can be removed by doing this: $string=str_replace("\n","",$string); $string=str_replace("\r","",$string); That will replace \n (The newlines) and \r (The returns) with nothing, getting rid of your problem. Hope this helps, -Andy Jack <[EMAIL PR

[PHP] POST to port 443 (SSL)

2001-08-27 Thread Patrick Calkins
Hello, I am trying to use the UPS Online Tools, the XML version. This requires you POSTing an XML document to their Tools server, which is SSL enabled. I am having a problem getting this to connect in PHP (4.0.6) on my server (Apache 1.3.20). In my scripts, I use $Socket = fsockopen (www.ups.c

[PHP] payflow pro hosed

2001-08-27 Thread Dan Harrington
Hello, I am having a problem with an ISP that has installed the payflow pro (top of phpinfo shown) and yet it keeps showing up as an unknown function. PHP Fatal error: Call to undefined function: pfpro_init() in /. PHP Fatal error: Call to undefined function: pfpro_process() in /. I

RE: [PHP] Re: The future of PHP -- accessory libraries

2001-08-27 Thread Rasmus Lerdorf
> I love PHP, but for the following reason it could be the death of it. All > the PHP intellectuals stand up, get together, and solve this problem, or at > least give us some reassurance. (I'm only a newbie after all). :) This is solved by people who roll distributions. Debian, Mandrake, RedHat

Re: [PHP] Use PHP to connect to Oracle 8i database

2001-08-27 Thread Andrew Hill
Toni You don't have to use the OCI libraries if you use ODBC. Compiling PHP --with-iodbc as per the HOWTO at www.iodbc.org will get you started. Non-expiring ODBC drivers with a 2-connection license are available as a free download from http://www.openlinksw.com. Free support is also availa

[PHP] Using PHP to move a row of information to another table

2001-08-27 Thread Brandon Orther
Hello, In MSSQL: I want to take one row of information from one table and put it into another row. Does anyone know of an easy way? Or do I have to go column by column copying each column into the new table? Thank you, Brandon Orther WebIntel

Re: [PHP] Use PHP to connect to Oracle 8i database

2001-08-27 Thread Joe Conway
> I want to use php to connect to an Oracle 8i database. > > I have 2 questions: > 1) does the webserver have to be installed on the > database server? No -- you just have to configure your tnsnames.ora so that the web server can connect. Try sqlplus first. If you can connect with sqlplus, yo

[PHP] A Separate Process?

2001-08-27 Thread Pickup, Jordan
Is there any way to make a separate process in PHP? I do real-time stats collection on my site and one of the things I collect is the domain of the user (to get their country). Sometimes getting the domain name takes a few seconds to come back and the user has to wait for that time before their

[PHP] Use PHP to connect to Oracle 8i database

2001-08-27 Thread toni baker
Hi I want to use php to connect to an Oracle 8i database. I have 2 questions: 1) does the webserver have to be installed on the database server? 2) do you have to use the OCI libraries? Thanks Toni __ Do You Yahoo!? Make international

RE: [PHP] RE: What development environment do you use for PHP?

2001-08-27 Thread Andrew Chase
WinCVS is available from http://www.wincvs.org - they also have Mac and X versions, although I've never tried them. -Andy > -Original Message- > From: John Meyer [mailto:[EMAIL PROTECTED]] > > Where do you get WinCVS , by the by? > -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] The future of PHP

2001-08-27 Thread Zeev Suraski
At 12:46 27-08-01, Alexander Skwar wrote: >So sprach »Zeev Suraski« am 2001-08-27 um 09:40:40 +0300 : > > Regarding source code hiding, you can use the Zend Encoder. Pricing wise, > > the lowest you can get it for right now is $50/month, which may be too > high > > for certain developers. > >Uhm

Re: [PHP] RE: What development environment do you use for PHP?

2001-08-27 Thread John Meyer
At 01:21 PM 8/27/01 -0700, you wrote: >I keep my web documents in a CVS repository on a Linux box, and use WinCVS >(GNU) to check files in and out on my WinNT desktop. I use ConTEXT >(freeware) for editing. Documentation and help are always available at >php.net and google.com. I have an Apach

Re: [PHP] header()

2001-08-27 Thread Kurth Bemis
At 04:09 PM 8/27/2001, Alex Sofronie wrote: read the http 1.1 RFC >Hi all! > >Anybody knows where i can find a complete list with headers? A list with >what i can send with the header() function? And what thy mean? >Thanks > >Alex Sofronie >[EMAIL PROTECTED] > > > >-- >PHP General Mailing List (

[PHP] RE: What development environment do you use for PHP?

2001-08-27 Thread Andrew Chase
I keep my web documents in a CVS repository on a Linux box, and use WinCVS (GNU) to check files in and out on my WinNT desktop. I use ConTEXT (freeware) for editing. Documentation and help are always available at php.net and google.com. I have an Apache 'staging' server, and to keep the docume

[PHP] header()

2001-08-27 Thread Alex Sofronie
Hi all! Anybody knows where i can find a complete list with headers? A list with what i can send with the header() function? And what thy mean? Thanks Alex Sofronie [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
I didn't want to cron the backup, just when the admin does :). Thanks anyway and here is the solution i came up with: It's based on a prior answer (thanks, Chris L.) and a pror discussion about forcing download in IE 5.5: This will work with IE 5.0, 5.5, NN6, NN4 (PC-Windows98/Me/2000) and NN4

[PHP] line by line

2001-08-27 Thread Gary
Hi All, I need to get info from a flat file line by line. What I need to do is get 3 separate lines and then a paragraph. Can someone point me to a tutorial or info on the subject. TIA Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

[PHP] Generating Variables

2001-08-27 Thread P.Agenbag
Hi I am trying to auto generate some sql strings. The resulting string should look like this: update $table_name set var1='$var1', var2='$var2' . where id=$id I used a foreach loop to get the keys from a table and in each foreach loop I tried the following. foreach($myrow as $key=>$va

Re: [PHP] clause

2001-08-27 Thread ERISEN, Mehmet Kamil
HEllo, I think this will better work. What Jeremy wants to do is to OUTER joing the tables: SELECT distinct users.uid , users.username FROM users LEFT OUTER JOIN picks using(uid) may do the trick. If you say letf join and the use ids not equal in the where, then I think it's same as saying: wher

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
Thanks a lot. - Original Message - From: "Augusto Cesar Castoldi" <[EMAIL PROTECTED]> To: "Alex Sofronie" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 6:22 PM Subject: Re: [PHP] MySQL Database backup > Alex, > > i'm using the crontab of linux to run a php script: > > in crontab: "w

RE: [PHP] fatal input in flex scanner

2001-08-27 Thread Jaxon
New version, but it's CGI :( It's causing all sorts of problems. Thanks for the help, but I've killed this method in favor of including a file that includes the files :) best, jaxon > -Original Message- > From: Robert V. Zwink [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 27, 2001 2

[PHP] Re: About the $allowed problem

2001-08-27 Thread CC Zona
In article <030d01c12f2f$49ca7d20$0b01a8c0@ANDreY>, [EMAIL PROTECTED] (Andrey Hristov) wrote: > session_start(); > if (!session_is_registered("allowed")){ > $allowed=3306; > session_register("allowed"); > } > var_dump($allowed); > ?> > > called with : > http://192.168.1.11/test2.php?al

Re: [PHP] About the $allowed problem

2001-08-27 Thread Antonio S. Martins Jr.
On Mon, 27 Aug 2001, Andrey Hristov wrote: > session_start(); > if (!session_is_registered("allowed")){ > $allowed=3306; > session_register("allowed"); > } > var_dump($allowed); > ?> > > called with : > http://192.168.1.11/test2.php?allowed=5000 > > returns : > int(3306) Ok, remeb

[PHP] About the $allowed problem

2001-08-27 Thread Andrey Hristov
called with : http://192.168.1.11/test2.php?allowed=5000 returns : int(3306) >From php.ini : variables_order = "EGPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often refe

Re: [PHP] Regular Expression Problem and PHP 4 (urgent) --- continued

2001-08-27 Thread Andrey Hristov
Some time spent to try but now i think it works: "; $a='datadatadatadata[link1]datadatadata{link2}data[link3]'; // $a='datadata{link1}data[link2]datadatadata{link3}data[link4]'; $pattern='/((\[)|\{)(.+?)(?(2)\]|\})/'; echo $a."\n"; echo $pattern."\n"; preg_match_all($pattern,$a,$matches,PREG

Re: [PHP] clause

2001-08-27 Thread Andrey Hristov
I don't know if this will help but why not to try $sql = "SELECT distinct users.uid , users.username FROM users LEFT JOIN picks USING(uid) WHERE picks.users_uid <> users.uid Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Jeremy Morano" <[EMAIL P

Re: [PHP] clause

2001-08-27 Thread ERISEN, Mehmet Kamil
Hello Jeremy, you are using two tables, but you are not joining them. What's you goal? --- Jeremy Morano <[EMAIL PROTECTED]> wrote: > Hi, > > Can somebody help me out? > My where clause is completely being ignored. > More specifically the <>. I tried to use != and that > didn't work either. > Ho

[PHP] clause

2001-08-27 Thread Jeremy Morano
Hi, Can somebody help me out? My where clause is completely being ignored. More specifically the <>. I tried to use != and that didn't work either. However, when I substitute it with an = , It fuctions correctly. Right now, the output is all the users.uid and all the users.username from the tabl

[PHP] Regular Expression Problem and PHP 4 (urgent) --- continued

2001-08-27 Thread Ross Nielsen
Well my first solution didn't really work the way I needed it too so here goes again... Data returned from server process looks like following... Header datadatadatadata[link]datadatadata{link}data[link] datadata{link}data[link]datadatadata{link}data[link] datadatadatadata[link]datadatadata{link

Re: [PHP] PHP/mySQL query problem...

2001-08-27 Thread ERISEN, Mehmet Kamil
Yes, there is a problem. -- SELECT * FROM links WHERE 1=1 and ( name LIKE "%te%" OR description LIKE "%te%" OR url LIKE "%te%" ) AND approved="1" LIMIT 5; -- --- Jeff Lewis <[EMAIL PROTECTED]> wrote: > Guys, why isn't this working? :) > > SELECT * FROM links WHERE name LIKE "%te%" OR descr

Re: [PHP] Re: authentication

2001-08-27 Thread Andrey Hristov
I think that this depends on GPC setting. If first is get, and then cookie I think there is no problem because $allowed from GET will be overwritten by the session variable which is read from session_892147jshfjksahfdjk8978 file because $PHPSESSID==892147jshfjksahfdjk8978 . But is better to use

RE: [PHP] functions returning arrays II

2001-08-27 Thread Robert V. Zwink
The line: echo "$r[ $i ]"; does not need quotation marks. You should change it to: echo $r[ $i ]; I removed the quotation marks and your script ran fine on my server. If this doesn't help post more information. Robert Zwink http://www.zwink.net/daid.net -Original Message-

RE: [PHP] fatal input in flex scanner

2001-08-27 Thread Robert V. Zwink
This line seems a little odd: $files_to_include[count($files_to_include)] = $file; I would change it to: $files_to_include[] = $file; Could be a bit of a bug. I am able to run your script on my server, so the error could also be coming from one of the files you a

Re: [PHP] PHP mysql admin?

2001-08-27 Thread Alexander Skwar
So sprach »Joseph Bannon« am 2001-08-27 um 10:06:39 -0500 : > Are there any free PHP mysql database admin programs out there? yup, phpmyadmin. I'd recommend the newer versions from http://phpmyadmin.sourceforge.net. It has some nice feature additions compared to the original one. Alexander Skw

Re: [PHP] Re: The future of PHP

2001-08-27 Thread Alexander Skwar
So sprach »Geoff Caplan« am 2001-08-27 um 11:26:09 +0100 : > standard, and no central repository. This compares badly with platforms such > as Perl and Java, who tackled this issue long ago. Actually, I think you're right. On the one hand, it's quite nice that there are so many librariries which

[PHP] Re: authentication

2001-08-27 Thread Gert Mellak
hi! I ever solve this problem with sessions... when a user does the login, I have session_start(); session_register("allowed"); $allowed = true; and on the top of all the other sites, where just "special" users are allowed to go in, there is a include ("checkAllowed.php"); checkAllowed.php ju

[PHP] PHP/mySQL query problem...

2001-08-27 Thread Jeff Lewis
Guys, why isn't this working? :) SELECT * FROM links WHERE name LIKE "%te%" OR description LIKE "%te%" OR url LIKE "%te%" AND approved="1" LIMIT 5 I am using a PHP script to add items to the database and a small search file to grab them. Thing is, I want the above to grab ONLY ones that have

RE: [PHP] Re: The future of PHP -- accessory libraries

2001-08-27 Thread Navid Yar
I love PHP, but for the following reason it could be the death of it. All the PHP intellectuals stand up, get together, and solve this problem, or at least give us some reassurance. (I'm only a newbie after all). :) -Original Message- From: Dan Harrington [mailto:[EMAIL PROTECTED]] Sent:

Re: [PHP] PHP mysql admin?

2001-08-27 Thread Gert Mellak
yes, phpMyAdmin is the very best! greetings, gert mellak == eMail: [EMAIL PROTECTED] http://www.mellak.com Andrey Hristov <[EMAIL PROTECTED]> schrieb in im Newsbeitrag: 017a01c12f0c$3f013000$[EMAIL PROTECTED] > Try phpMyAdmin > > http://phpwizard.net/ > > Andrey Hristov > IcyGE

Re: [PHP] Multiple MySQL Tables --> HTML Tables

2001-08-27 Thread Andrey Hristov
Don't forget to mysql_free_result($res) after the "while", if you have other PHP statements before the end of the script. Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Mouncef Belcaid" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday,

Re: [PHP] Multiple MySQL Tables --> HTML Tables

2001-08-27 Thread Andrey Hristov
$v){ $str.=sprintf('|%20s',$v).; } echo $str."\n" } ?> Hope this make a little help. Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Mouncef Belcaid" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 7:08

Re: [PHP] permissions when using fopen

2001-08-27 Thread Andrey Hristov
If Apache/php runs under nobody user, than make all files read only by the group of nobody, and no other users to be in this group. Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Pascal Chouinard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sen

[PHP] permissions when using fopen

2001-08-27 Thread Pascal Chouinard
Hi, I want to read a file on my web server in a .php script using fopen and I don't want to set read permissions on this file for everyone. However it seems that the PHP module has that same access to the filesystem that everyone would have. I can only read this file if I set read permissions

[PHP] PHP Introduction cource @ IBM

2001-08-27 Thread teo
Sorry for the length of the link: "Using PHP with Web databases" http://www-105.ibm.com/developerworks/education.nsf/web-onlinecourse-bytitle/B363B3AB5700BDE486256AAF003AA401?OpenDocument -- teodor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

[PHP] Help me!

2001-08-27 Thread king
i use win98se, where could i get a .DLL or .SO file to accelerate PHP like Zend opt?? thank you!!! -- 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

[PHP] PHP DEVELOPER NEEDED

2001-08-27 Thread Technik
Wanted: PHP developer to join a small but growing techie website. Basic PHP and mySQL experience necessary. Email [EMAIL PROTECTED] for more information Note: this is a non-profit website -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

[PHP] Sessions and Cookies on Macs

2001-08-27 Thread Richard Baskett
Ok on a pc when I have cookies turned off I am still able to access my session variables, but on a mac I can not. Is there a difference between the way session variables are stored on each platform? And if a session is indeed a cookie, then why does the session still work on pc's with cookies di

Re: [PHP] PHP and SOAP/XML-RPC

2001-08-27 Thread Andrey Hristov
Visit: 1)http://freshmeat.net/search/?site=Freshmeat&q=php+soap§ion=projects Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Sean McCormack" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 6:32 PM Subject: [PHP] PHP and S

RE: [PHP] Re: PHP and SOAP/XML-RPC

2001-08-27 Thread Hoover, Josh
Checkout the following list of SOAP implementations: http://www.soapware.org/directory/4/implementations You should find at least two implementations for PHP there. Josh Hoover KnowledgeStorm, Inc. [EMAIL PROTECTED] Searching for a new IT solution for your company? Need to improve your produ

[PHP] path error while calling files

2001-08-27 Thread Carsten Weber
Hello. I am reading in text files in a php-script and am getting path errors. I have set the php-path in php.ini to /home/web/public_html/cgi-bin/chanet/ and am trying to call a file in /home/web/public_html/cgi-bin/chanet/daten/. I use the path ../../cgi-bin/chanet/daten/ to call the files (the

[PHP] Multiple MySQL Tables --> HTML Tables

2001-08-27 Thread Mouncef Belcaid
Hi all, I have a newbie question, I hope somebody can help me out. I have an HTML form (query.html) that has a drop down menu of all 50 states and 3 checkboxes of 3 years (1999, 2000 and 2001), I want users to be able to select one state and any year(s) they want (they can choose one or more yea

[PHP] Re: PHP and SOAP/XML-RPC

2001-08-27 Thread Paul K Egell-Johnsen
Sean McCormack wrote: > > Does PHP currently support SOAP? If so, where is the documentation on it > (couldn't find it on the site)? If not, when will it be supported? Thanks! > > Sean McCormack > Lead Web Developer, Liaison > voice: 512.345.0020 x 189 > email: [EMAIL PROTECTED] Do a search on

RE: [PHP] PHP mysql admin?

2001-08-27 Thread Joseph Bannon
Thanks. I'll give it a try. Joseph -Original Message- Try phpMyAdmin http://phpwizard.net/ - Original Message - > Are there any free PHP mysql database admin programs out there? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

Re: [PHP] Certification

2001-08-27 Thread Michael Kimsal
I know it's not specifically what you're looking for, but it may help further the discussion. We offer PHP training courses. While it's not 'certification' in the sense that we're not a 'well-known, respected' authority, we provide a hands-on environment where you learn a series of skills - from

Re: [PHP] Controlling Printing output

2001-08-27 Thread Michael Kimsal
Use PDFs or Word or something else. Straight HTML wasn't intended to be a method of specifying exact locations for paper reproduction. Using pdflib with PHP (you'll need to compile it in and possibly purchase it as well) you can do this. Using COM support under Windows/PHP you can theoreticall

[PHP] PHP and SOAP/XML-RPC

2001-08-27 Thread Sean McCormack
Does PHP currently support SOAP? If so, where is the documentation on it (couldn't find it on the site)? If not, when will it be supported? Thanks! Sean McCormack Lead Web Developer, Liaison voice: 512.345.0020 x 189 email: [EMAIL PROTECTED] > Automating Catalog Content for Commerce... http://w

Re: [PHP] PHP mysql admin?

2001-08-27 Thread Andrey Hristov
Try phpMyAdmin http://phpwizard.net/ Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Joseph Bannon" <[EMAIL PROTECTED]> To: "PHP (E-mail)" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 6:06 PM Subject: [PHP] PHP mysql admin? > Are there any

[PHP] PHP mysql admin?

2001-08-27 Thread Joseph Bannon
Are there any free PHP mysql database admin programs out there? Thanks, Joseph -- 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] Question about PDF lib.

2001-08-27 Thread Matthew Loff
It's postscript points, I believe... 72 points per inch. So, an 8.5x11 page is 612x792 points large. --Matt -Original Message- From: Johan Holst Nielsen [mailto:[EMAIL PROTECTED]] Sent: Monday, August 27, 2001 3:59 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: [PHP] Questi

Re: [PHP] Dedicated Hosting

2001-08-27 Thread Dan McCullough
I would like to also add in, my real job we have exodus as a host, we are going to be moving from exodus due to worries about their business and them going under ... just to let you know they have dont nothing to calm down our fears, while our $34/k a month doesnt make us a huge client you woul

Re: [PHP] Re: Thinking about going to ASP

2001-08-27 Thread Julio Nobrega Trabalhando
Several articles. Basically is an open-source answer to .NET. http://www.newsforge.com/search.pl?query=mono -- Julio Nobrega A hora está chegando: http://toca.sourceforge.net "Reductor" <[EMAIL PROTECTED]> wrote in message 003901c12ef8$fd9a4ec0$eb00a8c0@mum">news:003901c12ef8$fd9a4ec0$eb00

[PHP] Controlling Printing output

2001-08-27 Thread Er Galvão Abbott
greetings. Are there any ways to control exact printing output? Like exact positioning of an object (pic, text or whatever) in a A4 sheet, for an example? Thanks in advance, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: [PHP] Session not timing outafter 180 minutes

2001-08-27 Thread Johnson, Kirk
> Everything is pretty much set to default vaules. I can > leave the browser open and come back 12+ hours later > and the session is still active. Why?? There is another setting which affects this, gc_probability. This setting determines how often the garbage collection routine runs (that kills o

RE: [PHP] What is it with _vti?

2001-08-27 Thread Seb Frost
The only FP work I do is open it up, lay out a form (for example) and then cut and paste the html into my php doc in textpad. Have deleted all and everything. All seems ok. - seb -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED]] Sent: 27 August 2001 15:27 To: [EMAIL PR

Re: [PHP] MySQL: Updating ID auto_increment fields

2001-08-27 Thread Andrey Hristov
It there are not many gaps, do it by hand. Another algorithm is to make a script: rename the $table."_new" to $table. DO NOT FORGET TO CREATE AGAIN THE INDEXES ON THIS TABLE. 2)or create a empty table with the same structure. phpmyadmin is ideal for that. after that 'INSERT INTO table_new select

RE: [PHP] What is it with _vti?

2001-08-27 Thread Miles Thompson
Before you drop them, noodle around a little bit and learn how much extra crap and duplication of your site FP drops on you. It's like a bloody seagull! Miles BTW - Don't drop them on the Windows machine where you do your FP work, the poor program won't be able to function without all its redu

  1   2   >