RE: [PHP] PHPmyadmin

2001-05-07 Thread Ryan W. Zajicek
Theo, Make sure the database exists, then click on the database name on the left hand side of the screen. Now on the right hand side of the screen it should say something like no tables exist and below that you'll see some form fields. Look for the one that says Run SQL query/queries on

RE: [PHP] PHPmyadmin

2001-05-07 Thread John Vanderbeck
I'm curious, Where can I get a copy of PHPmyadmin? Up till now, I have done all my database work strictly through php code and sql statements, which as you can imagine is cumbersome. Sounds like this might be easier? I'm starting up another project right now, and will have to be creating a

RE: [PHP] PHPmyadmin

2001-05-07 Thread Jack Dempsey
http://www.phpwizard.net/projects/phpMyAdmin/ -Original Message- From: John Vanderbeck [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 5:21 PM To: Ryan W. Zajicek; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] PHPmyadmin I'm curious, Where can I get a copy of

RE: [PHP] PHPmyadmin - problem remains

2001-05-07 Thread Theo Richel
Yes the database exists Indeed there are no tables There IS an option to run SQL Queries BUT There is no Browse button here. (there is a browse button when one HAS a table - but this one is for browsing the table - and in the insert file option there is a way to browse to the file on the local

[PHP] PEAR Versions

2001-05-07 Thread Michael Stearne
I have a version of PEAR installed now with 4.0.3pl1. I need some of the newer versions of the functions that have been added since then. I need mysql's afftedRows for instance. I see in the 4.0.5 of PEAR that was given with 4.0.5 that some function have since 4.0.5 in PEAR.php in

[PHP] logical expression 'simplifier'

2001-05-07 Thread Gyozo Papp
Hello, girls and boys, my question sounds a bit strange, but it 's very important for me to simplify my database queries. So, is there any known and implementable algorithm that simplifies an arbitrary logical expression such as: (either in PHP-style and in mathematical forms separated by

[PHP] Refreshing multiple frames?

2001-05-07 Thread Brandon Orther
Hello, I am using php with frames for a menu bar. In one frame I have a menu. When the link is clicked on the menu I would like two frames to be updated. Is there a way to do this? Brandon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] Refreshing multiple frames?

2001-05-07 Thread Zak Greant
You are going to need Javascript to do this. --zak - Original Message - From: Brandon Orther [EMAIL PROTECTED] To: PHP User Group [EMAIL PROTECTED] Sent: Monday, May 07, 2001 5:19 PM Subject: [PHP] Refreshing multiple frames? Hello, I am using php with frames for a menu bar. In

[PHP] Problem with PHP 4.0.5

2001-05-07 Thread Alvaro Collado
I have installed PHP4.0.5 in a Red Hat Linux 6.0 with Apache. When I run the test no problem, all is OK, but when I run a html index file in Netscape ( LocalHost ) whith a single code like this ? echo(Anythig); ? nothing was display, nothing. When I change the code for an know error for

RE: [PHP] Problem with PHP 4.0.5

2001-05-07 Thread John Vanderbeck
Try, ?PHP echo This is a testbr\n; ? Some systems are configured to not allow the shorthand ? and instead REQUIRE the full code start ?PHP - John Vanderbeck - Admin, GameDesign (http://gamedesign.incagold.com/) - GameDesign, the industry source for game design and development issues

[PHP] arrays and strings... a little confusing.

2001-05-07 Thread Christian Dechery
Whats is the difference between [] and {} ? define(NL,br\n); $str=How do you do?; echo $str[3].NL; echo $str{3}.NL; $array = array(how,do,you,do?); echo $array[2].NL; echo $array{2}.NL; this outputs d d you you so there's no difference

[PHP] session_start ()

2001-05-07 Thread shawn
When using session_start () over alot of pages, do i need to reregister the origional session? example: page1:session_start(); session_register('data'); page2:session_start(); page3:session_start(); session_register('data'); new to sessions, (no really), so thanks for

[PHP] Problem with PHP 4.0.5

2001-05-07 Thread Alvaro Collado
Mr . John Vanderbeck None of both codes works, all this test were do. The Netscape ingnore all the tags with ? or ?php for echo or print command. Thanks --- Try, ?PHP echo This is a testbr\n; ? Some

Re: [PHP] Refreshing multiple frames?

2001-05-07 Thread Data Driven Design
Link to another frameset page if you choose not to use javascript. But IMO there's no such thing as a proper use of frames. Frames should never be used for anything. Data Driven Design P.O. Box 1084 Holly Hill, Florida 32125-1084 http://www.datadrivendesign.com http://www.rossidesigns.net -

Re: [PHP] Problem with PHP 4.0.5

2001-05-07 Thread Philip Olson
1. What file extension are you using for your test file? 2. Is this extension found around httpd.conf in a form similar to : AddType application/x-httpd-php .php .php3 .html .phtml .parsemephp When you stated All works ok except ... what works ok? Regards, Philip On Mon, 7 May 2001,

[PHP] PHP vs Coldfusion and ADO vd API

2001-05-07 Thread Jeff
I have two questions: 1) I've seen a lot of benching by pc magazine and they're saying how great cold fusion is and how bad php is. However, they don't use Zend in any of their tests. Does anyone know of benchmarks against popular systems that include php + Zend? 2) What is the performance

[PHP] getimagesize

2001-05-07 Thread todd kennedy
i'm having some odd problems with getimagesize. sometimes it works, sometimes it doesn't. this is the code i'm calling it with: $p_size = getimagesize($photos[$start]); where $photos[$start] has the value im000301.jpg. the php file and the image file are located in the same directory. this

[PHP] if else and or ?

2001-05-07 Thread Andras Kende
Hello, I started to do a php page with mysql connection.. My problem is: I do query from a mysql, I try to setup usernames + passwords to protect the database They would need to use specific user+password+cities to be able to connect. Bad passwd would just print an access denied messsage..

[PHP] Call to a member function on a non-object

2001-05-07 Thread Ender
Okay I get the: Call to a member function on a non-object error when trying to execute this script: It happens in this area: $db=mysql_connect(localhost,'***','***') or die(Unable to connect to database); $edlist = new EditList(serverId, hlstats_Servers, server); $edlist-columns[] = new

Re: [PHP] PHP vs Coldfusion and ADO vd API

2001-05-07 Thread Michael Kimsal
On Mon, 7 May 2001, Jeff wrote: I have two questions: 1) I've seen a lot of benching by pc magazine and they're saying how great cold fusion is and how bad php is. However, they don't use Zend in any of their tests. Does anyone know of benchmarks against popular systems that include

RE: [PHP] if else and or ?

2001-05-07 Thread Maxim Maletsky
there are two ways to simplify your code: 1. database. Keep the usernames in another table. Check against it to verify that the passwords are correct and then go ahead pulling the data out. 2. read on about eval(). php.net/eval eval converts your string into php code. So your if else statements

Re: [PHP] Pregunta

2001-05-07 Thread Michael Hall
Hombre, necesitamos un poco mas de informacion para ayudarte. Cuales versiones de PHP y IIS, por ejemplo, y cual version de Windows? Como lo instalaste? Como modulo o como CGI? La pagina de prueba, tiene todos los tags que necesita? (es decir, ?php y ?. Tiene el archivo la extension .php? Como

[PHP] Whether through PHP/MySQL can I talk to Flash Generator's Flash ?

2001-05-07 Thread Manisha
Hi all, I am trying using PHP with Flash Generator. The designer has given me a Flash file created using Macromedia's Flash Generator 2. The platform is BSDi / Lang - PHP / Database - MySQL. I want to change the content INSIDE the Flash file dynamically (not the flash itself). From books I

Re: [PHP] PostgreSQL vs. Interbase

2001-05-07 Thread Luke Welling
Altunergil, Oktaywrote: The link that goes to interbase's web site in freshmeat.com redirects to http://www.borland.com/interbase/ which does not list the product as free or open source? Is there another version? oktay My understanding is that the current open source version is available

Re: [PHP] Refreshing multiple frames?

2001-05-07 Thread Luke Welling
Brandon Orther wrote: I am using php with frames for a menu bar. In one frame I have a menu. When the link is clicked on the menu I would like two frames to be updated. Is there a way to do this? As others have said, this is a JavaScript task not a PHP task. I am pretty sure there is an

Re: [PHP] updating flash file with php

2001-05-07 Thread Luke Welling
py wrote: any of you has a tutorial/info on how to update a flash file (swf) with a php script ? (data coming from a text file and a database) I have not seen a tutorial, but there are two simple working examples in Rasmus' Intro to PHP presentation here:

Re: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread Martín Marqués
On Mar 08 May 2001 02:07, you wrote: Never tried it though...but can you try to empty or unset the $PHP_AUTH_USER/PWD ? This doesn't work, thats why I use a login html page and sessions. :-) Saludos... :-) -- El mejor sistema operativo es aquel que te da de comer. Cuida tu dieta.

[PHP] Re: [PHP-DEV] Dynamic Update of DNS ??

2001-05-07 Thread Stig Venaas
On Mon, May 07, 2001 at 06:54:53PM +0200, Vincen Pujol wrote: Hi, Sorry for the crossposting but I don't know where to find a solution for this. I need to be able to update dynamically entries in a DNS (Bind 9). My DNS supports dynamic updates but how to do dynamic

[PHP] Dynamic Update of DNS ??

2001-05-07 Thread Vincen Pujol
Hi, Sorry for the crossposting but I don't know where to find a solution for this. I need to be able to update dynamically entries in a DNS (Bind 9). My DNS supports dynamic updates but how to do dynamic updates in my DNS server from a PHP Script ??

RE: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread Robert Covell
I must support this fashion of login and logout. I have never been able to find a way to clear the browser of the username and password. Once I combined sessions with a date and timestamp in the realm, it worked like a charm. Sincerely, Robert T. Covell President / Owner Rolet Internet

[PHP] PHP 4.0.5 Parse Problems

2001-05-07 Thread Ben Gollmer
Hi all - Today I compiled and installed PHP 4.0.5 on my Linux server (Apache 1.3.19, linked statically with php mod_ssl). Suddenly, many of my files would no longer be parsed by PHP - instead, they spit raw code onto the page. I created most of the files on my MacOS X machine using the text

Re: [PHP] PHP 4.0.5 Parse Problems

2001-05-07 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Ben Gollmer) wrote: I only mention them since they got parsed before. They are php files that the designers here have created in HomeSite and saved as PC format, so they are basically 1 long line when I open them in vi, and

Re: [PHP] Decoding .txt attachments

2001-05-07 Thread Zak Greant
The file is likely uuencoded, AFAIK PHP does not have a built-in function to handle this. IIRC there is a function on http://px.sklar.com/ that does this. --zak - Original Message - From: ~~~i LeoNid ~~ [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 07, 2001 12:06 AM

php-general Digest 7 May 2001 07:13:23 -0000 Issue 671

2001-05-07 Thread php-general-digest-help
php-general Digest 7 May 2001 07:13:23 - Issue 671 Topics (messages 51650 through 51703): Really easy question 51650 by: biscut 51653 by: Tom Carter 51663 by: biscut 51664 by: Jack Dempsey 51666 by: heinisch.creaction.de 51667 by: biscut

[PHP] Installing PHP 4.0.5 on win 2000 Professional

2001-05-07 Thread Feroz Tapiya
Hi Everyone, Currently I use MS Frontpage 2000. I wish to use PHP 4.0.5. I have downloaded the installed and lib from the web. I am using Win 2000 Professional and setup IIS on my machine. I have installed everything, but PHP icon or program group never appear. Can we use PHP to develop using

Re: [PHP] URL redirection

2001-05-07 Thread elias
script language=JavaScript location = hello-world.htm; /script can be used even if header is already sent! -elias www.eassoft.cjb.net Jamie Saunders [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, Is there a PHP function that will redirect the current

RE: [PHP] Databases and HTML forms

2001-05-07 Thread Serge Vleugels
check out phpMyAdmin i use it everywhere Serge -Original Message- From: Manuel Lemos [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 4:22 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] Databases and HTML forms Hello Michael, On 20-Apr-01 14:38:48, you wrote: I'm needing to

Re: [PHP] Installing PHP 4.0.5 on win 2000 Professional

2001-05-07 Thread elias
Dear Feroz, Sure you can develop under Windows os using PHP. I'm currently running PHP+Win98+PWS and it rocks! no problems when putting on a *nix server. -elias www.eassoft.cjb.net If you ever done ASP coding then Feroz Tapiya [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Download files extracted from db using Internet Exploded

2001-05-07 Thread Mattias Segerdahl
Hi, When using Internet Exploded to download files from a website which extracts an file from a mysql db I encounter a weird problem. How I do this is simple, I use an href link that looks something like this, downloadcontent.php?PHPSESSID=33f8022176ba48bb8f4421d59d1792a6attachment_ai d=3 The

[PHP] Session Problem

2001-05-07 Thread MySQL
I tried to put sessions to work, but i have a problem to start a session in each browser. When i close the browser and start it again the session_id is the same, if i start another browser he have the same session id as the first one and so on. Can someone tell me why? -- PHP General Mailing

Re: [PHP] Free Database Design Program

2001-05-07 Thread Augusto Cesar Castoldi
It's not a free program. It's a product of Computer Associations. http://www.cai.com http://www.ca.com regards. Augusto On Sun, 6 May 2001, Andrzej Swedrzynski wrote: On Sun, 6 May 2001, Alexander Skwar wrote: [dia] Compared to ERWin, this is indeed *VERY* limited - but maybe I was

Re: [PHP] Cant add new Header

2001-05-07 Thread elias
you can always redirect via JavaScript: script location = newlocation.htm /script ? echo Redirecting please wait; exit(); ? -elias http://www.eassoft.cjb.net Andy [EMAIL PROTECTED] wrote in message 9cuqlv$dgt$[EMAIL PROTECTED]">news:9cuqlv$dgt$[EMAIL PROTECTED]... Hello, I am a

SV: [PHP] Cant add new Header

2001-05-07 Thread Mattias Segerdahl
Make sure you're not sending any output to the browser, not even the body tag, before you send the header(); -Ursprungligt meddelande- Från: elias [mailto:[EMAIL PROTECTED]] Skickat: den 7 maj 2001 22:43 Till: [EMAIL PROTECTED] Ämne: Re: [PHP] Cant add new Header you can always

Re: [PHP] Installing PHP 4.0.5 on win 2000 Professional

2001-05-07 Thread Phil Driscoll
I have installed everything, but PHP icon or program group never appear. Can we use PHP to develop using Windows o/s or not. When I run php.exe in /php/ it just hangs in DOS mode. PHP is something that plugs into the web server - it's not the sort of thing that gets entered in your start menu.

[PHP] ANN: Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread José León Serna
Hello: I'm proud to announce Visual PHP Studio 1.0 Field Test 1, a tool that combines the component technology with the web design, JavaScript and PHP. You can download it for free at http://www.visualphpstudio.f2s.com in the downloads section. Feel free to vote on the survey and post your

[PHP] HTTP_RAW_POST_DATA

2001-05-07 Thread Dmitri Zasypkin
Hi, Could anyone help me with altering PHP sources? Or tell me please where may I ask this question? The problem is when PHP handles a POST request of a known Content-type (e.g. x-www-form-urlencoded), it leaves $HTTP_RAW_POST_DATA blank. I need to alter the sources so that PHP would always put

Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread elias
Hello. Good work! Hope it beats DreamWeaver4+EditPlus2 -elias. José León Serna [EMAIL PROTECTED] wrote in message 002001c0d6e3$35f765a0$469610ac@JLeon">news:002001c0d6e3$35f765a0$469610ac@JLeon... Hello: I'm proud to announce Visual PHP Studio 1.0 Field Test 1, a tool that combines the

[PHP] PostgreSQL vs. Interbase

2001-05-07 Thread Arnold Gamboa
Hi there. I'm currently in serious research on what database to use for a B2B site which is expected to hold millions of records. I have in so far considered two open source databases - Interbase and PostgreSQL. With this in mind, I'm sending this email to both the PostgreSQL and Interbase

Re: [PHP] Free Database Design Program

2001-05-07 Thread Alexander Skwar
So sprach Augusto Cesar Castoldi am Mon, May 07, 2001 at 07:29:35AM -0300: It's not a free program. It's a product of Computer Associations. http://www.cai.com http://www.ca.com Oh, it belongs to CA now? Strange though, that there's nothing at LogicWorks anymore. When did CA buy

Re: [PHP] Image Upload

2001-05-07 Thread Geir Eivind Mork
Kyle Mathews wrote: I'm looking for some code that will upload images to my server from a form submission. I'd also like it to check for a max file size of the images. Any help would be appreciated. what about reading the manual? there are variables that contain the file size.

[PHP] HTTP authentication : logout!!!

2001-05-07 Thread Thomas Edison Jr.
i'm using http authentication for my php pages (members area). Once you login correctly, than you can access anypage as the authentication box doesn't pop-up. Now i woul like to create a logout link after clicking on which, whenever you click on a page using auth, the auth box should pop-up

Re: [PHP] HTTP_RAW_POST_DATA

2001-05-07 Thread Zak Greant
Dmitri Zasypkin wrote: Hi, Could anyone help me with altering PHP sources? Or tell me please where may I ask this question? The problem is when PHP handles a POST request of a known Content-type (e.g. x-www-form-urlencoded), it leaves $HTTP_RAW_POST_DATA blank. I need to alter the sources

[PHP] Days between two dates

2001-05-07 Thread Rosen
Hi, How can I calculate days between two dates ? Thanks, Rosen Marinov -- 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] HTTP authentication : logout!!!

2001-05-07 Thread elias
Never tried it though...but can you try to empty or unset the $PHP_AUTH_USER/PWD ? -elias http://www.eassoft.cjb.net Thomas Edison Jr. [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... i'm using http authentication for my php pages (members area). Once you login

RE: [PHP] Days between two dates

2001-05-07 Thread Boget, Chris
Hi, How can I calculate days between two dates ? This should work: $firstDate = mktime( 0, 0, 0, 1, 12, 2001 ); $secondDate = date( U ); $daysInBetween = ( $secondDate - $firstDate ) / 86400; Chris

Re: [PHP] setcookie()

2001-05-07 Thread Patrick Wayne Tan
BTW here's my php.ini file. many thanks! - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 07, 2001 10:48 AM Subject: [PHP] setcookie() Hi all, I have just migrated my scripts from redhat linux 6.2 and apache to win nt4 and IIS 4. I've been

Re: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread Mauricio Souza Lima
It dont work, what you have to do is that: In the logout.php: -- ? header( 'WWW-Authenticate: Basic realm=Private'); header( 'HTTP/1.0 401 Unauthorized' ); ? htmlbody Logout Sucessful /body/html -- And you have to inform the user to clean the password field, click ok,

RE: [PHP] URL redirection

2001-05-07 Thread Matthew Luchak
? header (Location: http://www.somewhere.com/index.php;); exit; ? Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] Hi, Is there a PHP function that will redirect the current page to another url? -- PHP General Mailing List

RE: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread Matt Schroebel
$PHP_AUTH_USER = ; $PHP_AUTH_PW = ; Ought to do it. From: Thomas Edison Jr. [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 8:39 AM To: [EMAIL PROTECTED] Subject: [PHP] HTTP authentication : logout!!! Now i woul like to create a logout link after clicking on which, whenever you

[PHP] ANN:Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread José León Serna
Hello: I'm proud to announce Visual PHP Studio 1.0 Field Test 1, a tool that combines the component technology with the web design, JavaScript and PHP. You can download it for free at http://www.visualphpstudio.f2s.com in the downloads section. Feel free to vote on the survey and post your

Re: [PHP] HTTP_RAW_POST_DATA

2001-05-07 Thread Dmitri Zasypkin
Zak, Thank you for the answer. Are you sure $HTTP_POST_VARS will be still set after that modification in case of a valid x-www-form-urlencoded POST request? I'm afraid they won't.. Such side effect is very undesirable for me. Anyway thanks. Zak Greant wrote: Dmitri Zasypkin wrote: Hi,

[PHP] Incorrect number of arguments

2001-05-07 Thread Sverre Johan Tøvik
Hi, Somewhere between versions 4.0.0 and 4.0.4pl1, php started generating warning messages whenever a function call don't supply all defined arguments. A quick google search revealed an answer on some mailing list, basically saying it's a feature, not a bug. But, seeing as how this feature

Re: [PHP] Days between two dates

2001-05-07 Thread Rosen
Sorry, it doesn't work !! Rosen Marinov Boget, Chris [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, How can I calculate days between two dates ? This should work: $firstDate = mktime( 0, 0, 0, 1, 12, 2001 ); $secondDate = date( U ); $daysInBetween

[PHP] Large Memory Problem

2001-05-07 Thread Natasha
I'm not connected to the night very speedily, and I wanted to download a manual, which is generated dynamically each time by the server. the manual is around 12MB, how will I download it ? I've tried fread(), it gives me a exhaustive memory error. I used fgets() in a while loop, and fwrite too,

RE: [PHP] HTTP authentication : logout!!!

2001-05-07 Thread John Vanderbeck
I to have never been happy with the way PHP handles actual secure sessions. GameDesign was written to entirely use session based access. Both the main user site, and the admin backend use it, and it works quite well. - John Vanderbeck - Admin, GameDesign (http://gamedesign.incagold.com/) -

RE: [PHP] Days between two dates

2001-05-07 Thread Boget, Chris
Sorry, it doesn't work !! Why do you say that? I just tested it and it worked. It returned: 115.31296296296 115 being the number of days .31296296296 is the fraction of the day that is the difference of hours between the two times. mktime() and date( U ) return a unix timestamp which is

Re: [PHP] Large Memory Problem

2001-05-07 Thread elias
why don't get you get the static .CHM version? it's good and it's 1.2MB ? -elias http://www.eassoft.cjb.net Natasha [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm not connected to the night very speedily, and I wanted to download a manual, which is

Re: [PHP] Days between two dates

2001-05-07 Thread Rosen
It really Work !!! Sorry, thath was my syntax error! Thanks very much !! Rosen Marinov Boget, Chris [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Sorry, it doesn't work !! Why do you say that? I just tested it and it worked. It returned:

Re: [PHP] Re: [PHP] Large Memory Problem

2001-05-07 Thread Natasha
Hi, you probably didn't understand my problem. I'm not on a very speedy connection, however having access to a server, which has PHP enabled, so because the download is generated dynamically Go!Zilla can't really resume to it. That's my problem, so I'm transferring it to my server which

Re: [PHP] Re: [PHP] Large Memory Problem

2001-05-07 Thread Tom Carter
Hi This isn't a PHP thing, but most unix/linux distributions have a program called wget in. You can use this to very easily download a file to your server (eg. wget http://www.freebsd.com/man.php) This will download the file to the server, effectively fixing it at that so you can download it

Re: [PHP] Large Memory Problem

2001-05-07 Thread Natasha
Lemme rephrase the question here : How can I use the socket functions to grab large amounts of data ? which may not be in the memory limit, and doing this without changing the php.ini how would you solve that ? = Do You Yahoo!?

Re: [PHP] Re: [PHP] Large Memory Problem

2001-05-07 Thread David VanHorn
At 02:59 PM 5/7/01 +0100, Tom Carter wrote: Hi This isn't a PHP thing, but most unix/linux distributions have a program called wget in. You can use this to very easily download a file to your server (eg. wget http://www.freebsd.com/man.php) Wget is VERY powerful. I have a php based site that

[PHP] fopen question

2001-05-07 Thread sean
hi I am running the following on my redhat 7.0 / php4 / apache box and receiving the error below. ?PHP $file = fopen(/dev/ttys0,r+); fputs($file,ATI); rewind($file); echo fgets($file,1024); fclose($file); ? Warning: fopen(/dev/ttys0,r+) - Input/output error in /var/www/html/test.php on line 2

[PHP] Sos

2001-05-07 Thread Younes . Khabchaouy
Hi, My name is Younes Khabchaouy , and am working as a junior system administrator . i hade a request to install the php with apache .I did install both with the RPM because we use the Red Hat platform And i did the changes in apache ( httpd.con) Load Modules and Add modules and i

RE: [PHP] Sos

2001-05-07 Thread Altunergil, Oktay
Remove both rpms + apache Do a source install. Using redhat is no excuse for installing PHP+MySQL+Apache from rpms. You will be glad you did it when you're done. It's much easier to usually. oktay -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, May

RE: [PHP] Sos

2001-05-07 Thread Dominick Vansevenant
I heard about abraisoft.com, I used it on Windows to install a new dev machine and it works very good, maybe you can try the redhat linux version? D. -Original Message- From: Altunergil, Oktay [mailto:[EMAIL PROTECTED]] Sent: maandag 7 mei 2001 16:32 To: '[EMAIL PROTECTED]'; [EMAIL

RE: [PHP] Sos

2001-05-07 Thread Paul O'Neil
That's what I did to get mine working on 7.0 -Original Message- From: Altunergil, Oktay [mailto:[EMAIL PROTECTED]] Sent: Monday, May 07, 2001 7:32 AM To: '[EMAIL PROTECTED]'; [EMAIL PROTECTED] Subject: RE: [PHP] Sos Remove both rpms + apache Do a source install. Using redhat is no

Re: [PHP] converting fields from a fixed length text file into an array

2001-05-07 Thread Gyozo Papp
Well, if you'd like to a little bit more sophisticated file reading, just give a try to my class strStream, here is a lin to its short description http://phpclasses.upperdesign.com/browse.html?file=784 (class reference) http://phpclasses.upperdesign.com/packages/228 (the whole package) Papp

RE: [PHP] Sos

2001-05-07 Thread B. van Ouwerkerk
Do a source install. Using redhat is no excuse for installing PHP+MySQL+Apache from rpms. You will be glad you did it when you're done. It's much easier to usually. Yep.. But before you remove everything.. you might want to check the location of your .php files.. they should be outside the

Re: [PHP] fopen question

2001-05-07 Thread Kelvin
Hi sean, try to put a file name not a directory or path. $file = fopen(filename.withextension,r+ Kelvin. [EMAIL PROTECTED] wrote in message 9d6apq$eka$[EMAIL PROTECTED]">news:9d6apq$eka$[EMAIL PROTECTED]... hi I am running the following on my redhat 7.0 / php4 / apache box and

[PHP] Announcement: Smarty template engine 1.4.0 available

2001-05-07 Thread Monte Ohrt
There are many changes to this release, including runtime compilation of templates and the support for arbitrary template resources, such as multiple template directories or databases. Be sure to read the RELEASE_NOTES, especially if you are upgrading from a prior release. Monte

Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1 (Problem Fixed)

2001-05-07 Thread José León Serna
Hello: Sorry, but I didn't know that f2s.com deletes all the .exe files from their servers, now I have uploaded a .rar file and it's working. Sorry for any inconvenience. Best Regards Visual PHP Studio, RAD development with PHP http://www.visualphpstudio.f2s.com -- PHP

[PHP] Book Question - PHP and MySQL Web Development

2001-05-07 Thread Luke Welling
Hi all, I was wondering if anybody out there who has a copy of my book has found any errors. If you have noticed any errors in PHP and MySQL Web Development by Luke Welling and Laura Thomson, and have a second, could you drop me an email? I don't think there will be too many, but I would like

Re: [PHP] Free Database Design Program

2001-05-07 Thread Rick van Dijk
hello Augusto, Maybe our tool is something for you. Dezign for databases is a database development tool using an entity relationship diagram. It visually supports the lay out of the entities and relations and automatically generates SQL schemas for most leading databases including MySQL. Not

[PHP] Linux Version of Visual PHP Studio

2001-05-07 Thread José León Serna
Hello: I have received some comments about a Linux Version of Visual PHP Studio, I have used Delphi 5 to create Visual PHP Studio, so I could use Kylix to create a Linux version, but I don't know how much people would be interested, if you are a linux php programmer and you are interested in

Re: [PHP] fopen question

2001-05-07 Thread sean
even when you are trying to access a COM port? Kelvin [EMAIL PROTECTED] wrote in message 9d6dc8$eug$[EMAIL PROTECTED]">news:9d6dc8$eug$[EMAIL PROTECTED]... Hi sean, try to put a file name not a directory or path. $file = fopen(filename.withextension,r+ Kelvin. [EMAIL PROTECTED]

[PHP] Re: Install problems with PHP and GD

2001-05-07 Thread Daniel BI
If you're running the latest RH, the path should be /usr anyway, issue: find / -name gd.h if the result is /usr/include/gd.h, then the path should be /usr if you have somthing else, I guess you already suppose what the path is.. :) Daniel BI -- PHP General Mailing List

Re: [PHP] Book Question - PHP and MySQL Web Development

2001-05-07 Thread eschmid+sic
On Tue, May 08, 2001 at 01:24:02AM +1000, Luke Welling wrote: I was wondering if anybody out there who has a copy of my book has found any errors. If you have noticed any errors in PHP and MySQL Web Development by Luke Welling and Laura Thomson, and have a second, could you drop me an

[PHP] Pregunta

2001-05-07 Thread Lic. Santa Ortiz Rodriguez
Estoy apenas en la instalacion, baje el archivo el cual me indica que configura automaticamente el iis, lo corro y trato de hacer la pagina de prueba, Este es un ejemplo de php, lo copia igual pero al abrir la pagina no se ve nada, aparece en blanco, no se que es lo que me hace falta algo de

[PHP] PEAR db nextId() function

2001-05-07 Thread Zon Hisham Bin Zainal Abidin
can anyone help with PEAR nextId() function. it's in mysql.php but NOT part of DB.php usage? rgds. -- 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

Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1 (Problem Fixed)

2001-05-07 Thread Markus Fischer
Isn't using *.zip a bit more common ? Luckily I downloaded the *.exe before. - Markus - Original Message - From: José León Serna [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 07, 2001 5:08 PM Subject: Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1 (Problem Fixed)

RE: [PHP] FILE () STRIPS BLANKS FROM THE ARRAY - HOW CAN I STOP IT

2001-05-07 Thread Mark Roedel
-Original Message- From: Jay Lepore [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 06, 2001 7:41 PM To: [EMAIL PROTECTED] Subject: [PHP] FILE () STRIPS BLANKS FROM THE ARRAY - HOW CAN I STOP IT I have an ASCII fixed width text file I'm trying to convert to an array of fields.

[PHP] Multi Dimensional Arrays?

2001-05-07 Thread Brandon Orther
Hello, I am working on a menu script that I wanted to use multi-dimensional arrays for. Here is the conf file I have: //Main Menu Array $main_menu[0] = Menu 1; //Represents the name of the menu //Menu 1 Array $main_menu[0][0] = Test 1; $main_menu[0][1] = Test 2; $main_menu[0][2] = Test 3;

RE: [PHP] session_register() - Netscape workaround?

2001-05-07 Thread Johnson, Kirk
-Original Message- From: Jennifer [mailto:[EMAIL PROTECTED]] Subject: Re: [PHP] session_register() - Netscape workaround? I thought of a workaraound for Netscape and would like some feedback on how to do it and whether it is a good idea. I manually edited the session file and

[PHP] Updating an installation of PEAR

2001-05-07 Thread Michael Stearne
I have a pretty current version of PEAR installed on a server, but would like to upgrade to the most recent CVS. I have pulled the CVS version. How can I install this new version of PEAR into the place I have my current version without recompiling PHP again. Are all the configuration for

[PHP] files created with mkdir and open(file,w+) are owned by nobody

2001-05-07 Thread Ryan Hilton
I'm creating directories and files inside of a php program and they are owned by nobody. How can I assign an owner to them and who should the owner be? Where is documentation for these types of questions? Here is the code snipet: create a directory - I would also like to create it with 775

[PHP] GD Library

2001-05-07 Thread José Luis Malagón V.
Hi, I need generate graphics with php. I know GD Library help me but I don´t know how do I install it. Can somebpdy help me ? Thanks in advance for your help, Jose Luis.

[PHP] Zend.com CVS

2001-05-07 Thread Michael Stearne
Is the Zend CVS down? The connection is really slow, I have been trying to get the source for an hour. Is the problem on my end or Zend? Thanks, Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] ANN: Visual PHP Studio 1.0 Field Test 1

2001-05-07 Thread Meir kriheli
On Tuesday 08 May 2001 00:39, elias wrote: Is it a windows app (I hope it isn't)? -- Meir Kriheli There's someone in my head, but it's not me - Pink Floyd Hello. Good work! Hope it beats DreamWeaver4+EditPlus2 -elias. José León Serna [EMAIL PROTECTED] wrote in message

[PHP] Twin Cities PHP Users Group meeting

2001-05-07 Thread Tim McGuire
The next meeting of the Twin Cities PHP users group is coming: Wednesday, May 9 7:00 PM Downtown St. Paul Check www.tcphp.org for directions and minutes from previous meetings -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

  1   2   >