Re: [PHP] Accessing Intberase database in NT

2001-04-02 Thread Stuart J. Browne
[EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Any idea how can i possibly access an Interbase database residing in NT4 from my web server running in Linux? To do this, I believe you will have to compile PHP on the Linux box with the Linux GDS libraries (as if

RE: [PHP] php jobs?

2001-04-02 Thread Boaz Yahav
http://www.weberjob.com Sincerely berber Visit http://www.weberdev.com Today!!! To see where PHP might take you tomorrow. -Original Message- From: Joseph Bannon [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 6:05 AM To: [EMAIL PROTECTED] Subject: [PHP] php jobs?

[PHP] I can't connect php with apache.

2001-04-02 Thread Kukai
Hi all, I have been trying to install PHP4.0 to Apache1.3 on Win2K platform. I followed the instruction carefully, and all of applications, PHP4.0, Apache1.3, MySQL are installed correctly, I think. However when I put the URI into the browser, http://localhost/test.php, I got message "The page

[PHP] Retrieving W2000 username as a PHP variable.

2001-04-02 Thread Jon
I am using Apache 1.3.19 for Win32 and PHP 4.04 as a module. I would like to retrieve, as a variable, the user name loged in the W2000 domain. Running PHPINFO() function it does not display USERNAME variable so I would like to know if there is other alternative to accomplish this task. Thanks

[PHP] very dumb question, need help

2001-04-02 Thread Jacky
Hi all I have been to look at manual about session, in php4, still not quite get it. Basically if I have sniplet below in one page, how do I assign value into that session and how do I call it up in next page? I sthe way I assign value into session correct? ( I think it did not, because it did

[PHP] array_diff usage

2001-04-02 Thread V e r b a l
I'm daft. I don't understand the PHP Manual. I have two arrays: Open[0] contains 1 2 3 4 5 Closed[0] contains 1 2 Now: $test = array_diff($Open, $Closed); $lines = count($test); print $lines; Gives me: 1 I thought it should be 3. While: for ($counter =0; $counter = $lines -1; $counter++) {

[PHP] how to build a template??

2001-04-02 Thread E K L
Hi Experts, I'm planning to build a template but failed to do so Here is the code: ? include "class.FastTemplate.php"; $tpl = new FastTemplate("../usr/local/apache/htdocs/toplevel.tpl"); $tpl-define(array("toplevel" = "toplevel.tpl")); $tpl-assign("title", "R U THEre");

Re: [PHP] login without database

2001-04-02 Thread Knut H. Hassel Nielsen
On Fri, 30 Mar 2001, Jon Rosenberg wrote: you could use flat files, another words store the user information in a text file like below: username|pass|email bob|fgffsdg|[EMAIL PROTECTED] foo|bar|[EMAIL PROTECTED] and then just read and write the file with PHP. Jon Be sure to crypt the

[PHP] is this syntax correct?

2001-04-02 Thread Jacky
Hi all is this syntax correct to work on session in php4? ?php global $test; $test = "foo"; session_register("$test"); ? but nest page when I call variable $test to echo it, nothing come up? what did I do wrong? Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you

Re: [PHP] array_diff usage

2001-04-02 Thread Stig Venaas
On Mon, Apr 02, 2001 at 12:41:07AM -0700, V e r b a l wrote: I'm daft. I don't understand the PHP Manual. I have two arrays: Open[0] contains 1 2 3 4 5 Closed[0] contains 1 2 So the arrays contain one string each? array_diff() won't work then. Try this: $a = array(1, 2, 3, 4, 5); $b =

RE: [PHP] is this syntax correct?

2001-04-02 Thread Joseph Bannon
What does global and session_register do? J Say I'm Hot! - Post Your Picture! http://www.sayimhot.com -- 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:

Re: [PHP] is this syntax correct?

2001-04-02 Thread [EMAIL PROTECTED]
I also tried this syntax: ?php global $test; $test = "foo"; session_register("test"); ? and it still not work as when I go to next page, and try echo $test, nothing come up. Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original

[PHP] Max file size of 2 bytes exceeded

2001-04-02 Thread PHP
Hi guys, I seem to be having a problem uploading images. My server is running on FreeBSD and i am using PHP ver 4 I have checked all the settings in my php.ini file. max_execution_time = 30 memory_limit = 8M post_max_size = 8M file_uploads = On upload_max_filesize = 2M I have a form that a

Re: [PHP] is this syntax correct?

2001-04-02 Thread [EMAIL PROTECTED]
Not really, do I need to have session_start at the sender page and the receiver page? Jack [EMAIL PROTECTED] "There is nothing more rewarding than reaching the goal you set for yourself" - Original Message - From: Wade Halsey [EMAIL PROTECTED] To: Jacky@lilst [EMAIL PROTECTED] Sent:

[PHP-CVS] cvs: php4 /ext/dbx dbx.c dbx_odbc.c dbx_pgsql.c

2001-04-02 Thread Marc Boeren
mboeren Mon Apr 2 01:51:36 2001 EDT Modified files: /php4/ext/dbx dbx.c dbx_odbc.c dbx_pgsql.c Log: Inserted a few extra initialisations, just in case. Had some problems in a different module, this solved it there, hance the added insurance. (Mc)

[PHP-CVS] cvs: php4 /ext/aspell config.m4

2001-04-02 Thread Jani Taskinen
sniper Mon Apr 2 02:06:33 2001 EDT Modified files: /php4/ext/aspellconfig.m4 Log: Fixed a typo. Bug: #10103 Index: php4/ext/aspell/config.m4 diff -u php4/ext/aspell/config.m4:1.4 php4/ext/aspell/config.m4:1.5 --- php4/ext/aspell/config.m4:1.4 Tue

[PHP] geocities and php

2001-04-02 Thread Joseph Bannon
I notice that geocities does not allow you to reference images that are on their servers to your homepage on another server/host. Is there a way to make PHP send different host information to geocities' server? Thanks, J -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] session question

2001-04-02 Thread Jan Grafström
Hi! I am trying to learn about sessions and set up this file, ? session_start(); $fillista = "fillista.xml"; session_register("SID"."fillista"); $SID = date("Y F j H:i:s"); print "SID=".$SID; ? This seams not to work on the file fillista.xml, I can still read it afterwords in IE:s cache.

php-general Digest 2 Apr 2001 09:41:06 -0000 Issue 603

2001-04-02 Thread php-general-digest-help
php-general Digest 2 Apr 2001 09:41:06 - Issue 603 Topics (messages 46526 through 46583): libpng error 46526 by: Thalis A. Kalfigopoulos 46543 by: nicuc.ac.jp Programming Jobs 46527 by: Jon Jacob 46531 by: Michael Kimsal 46563 by: natter Re: C and

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/aspell config.m4

2001-04-02 Thread Jani Taskinen
sniper Mon Apr 2 02:07:22 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/aspellconfig.m4 Log: MFH Index: php4/ext/aspell/config.m4 diff -u php4/ext/aspell/config.m4:1.3 php4/ext/aspell/config.m4:1.3.4.1 --- php4/ext/aspell/config.m4:1.3 Wed

[PHP] Page Counter

2001-04-02 Thread Wen Ni
Dear Friends, I want to do page counter for my web site and I wonder whether PHP can do it or not. I am new in PHP so can you all please give me some idea how to solve my problem. Thank a lot. regards, Wendy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Max file size of 2 bytes exceeded

2001-04-02 Thread Christian Reiniger
On Monday 02 April 2001 10:44, you wrote: Hi guys, I seem to be having a problem uploading images. My server is running on FreeBSD and i am using PHP ver 4 I have checked all the settings in my php.ini file. max_execution_time = 30 memory_limit = 8M post_max_size = 8M file_uploads =

Re: [PHP] is this syntax correct?

2001-04-02 Thread Christian Reiniger
On Monday 02 April 2001 22:30, you wrote: Hi all is this syntax correct to work on session in php4? ?php global $test; $test = "foo"; session_register("$test"); ? but nest page when I call variable $test to echo it, nothing come up? what did I do wrong? Jack Use session_start(); --

Re: [PHP] is this syntax correct?

2001-04-02 Thread Christian Reiniger
On Monday 02 April 2001 10:44, you wrote: What does global and session_register do? RTFM -- Christian Reiniger LGDC Webmaster (http://sunsite.dk/lgdc/) Pretty cool, the kind of power information technology puts in our hands these days. - Securityfocus on probing 3600 hosts for known

[PHP] Betr.: [PHP] Page Counter

2001-04-02 Thread M. Verheijen
Dear Wendy, Check out http://www.hotscripts.com/PHP/Scripts_and_Programs/ You should all you the scripts you'll need here!, still some problems? Let me know? Best regards, Maarten Verheijen MvG, Maarten Verheijen T/EXP kamernummer C558 Telefoonummer 4559 Wen Ni [EMAIL PROTECTED] 02-04-01

Re: [PHP] phpinfo unneeded

2001-04-02 Thread juang
guys.. mmmh still confuse, i had try to find out "disable_functions " but i cant found it, and then i write the syntax with myself and i stop-restart my apache mmhhh?? still didn't work. and here its my configure: ./configure '--with-apxs=/usr/local/apache/bin/apxs'

[PHP] Parent class

2001-04-02 Thread Milan Mlynarcik
Is there way to access paret class from outside of class ??? I know that to access parent object from within the class I can use code like this one: ?php class a { vara; function a() { $this-a = "OK"; } } class b extends a {

Re: [PHP] phpinfo unneeded

2001-04-02 Thread Felix Kronlage
On Mon, Apr 02, 2001 at 06:14:07PM +0700, juang wrote: mmmh still confuse, i had try to find out "disable_functions " but i cant found it, and then i write the syntax with myself and i stop-restart my apache mmhhh?? still didn't work. and here its my configure: put the following in

[PHP] File upload via HTML forms

2001-04-02 Thread \[Intent A/S\] Tais M. Hansen
Hi! I'm currently working with a site on a safe mode enabled server. First off, there's no way safe mode can be disabled. Now, I need to be able to upload a file via a HTML form post, read and copy this file to a different location. But when the file is uploaded, it is placed in a tmp dir with

[PHP] Reading specific contents of a file

2001-04-02 Thread Thomas Edison Jr.
using fopen() i can open a file using fread() i can read it's contents, store them print them. But is there any way of checking the contents for a specific word or characters? For example i want the file pointer to search if found, print the word "enter" from the open file. how to do this?

[PHP] Include files????

2001-04-02 Thread Bruno Freire
Hi! My name is Bruno. Anybody can tell me how can i do Include files? I mean, Write a function in a file and after this just include this file in the code, like #include file.h of C++?? Thanks !!!

Re: [PHP] Include files????

2001-04-02 Thread Felix Kronlage
On Mon, Apr 02, 2001 at 08:55:26AM -0300, Bruno Freire wrote: Anybody can tell me how can i do Include files? has the thought of looking up the manual at php.net crossed your mind? try searching php.net for include(), require() -fkr -- gpg-fingerprint: 076E 1E87 3E05 1C7F B1A0 8A48 0D31

Re: [PHP] Database connections

2001-04-02 Thread Yasuo Ohgaki
You don't have to call mysql_close(). PHP handles cleaning resources when script execution is ended. You can set default connection parameters for MySQL in php.ini. I don't know if you need to call mysql_connect(). (I don't use MySQL :) Regards, -- Yasuo Ohgaki ""David Hynes"" [EMAIL

Re: [PHP] known problems with session_register()?

2001-04-02 Thread Yasuo Ohgaki
What is your php.ini? If you are enabled track vars and disabled register globals, all you have to do is assign values to $HTTP_SESSION_VARS and unset($HTTP_SESSION_VARS['your_session_var']). You don't need to use session_register(), session_unregister() if it's the case. Refer to User Notes in

Re: [PHP] Attach File in PHP's Mail Function.

2001-04-02 Thread Yasuo Ohgaki
This has been asked recently. You can search archives. Look for links can be found at http://www.php.net/support.php Most easiest way is grabbing mail class that can handle attachment. There are many of them on the net. I think www.zend.com code exchange might have one. If you want to do it by

Re: [PHP] php-4.0.5-dev with Apache rpm

2001-04-02 Thread Yasuo Ohgaki
Annotated manual is useful. Refer to http://www.php.net/manual/en/install.linux.php http://www.php.net/manual/en/install.apache.php You need to install apache-devel RPM if you are using RedHat. Regards, -- Yasuo Ohgaki ""Paul Juliano"" [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: [PHP] Parent class

2001-04-02 Thread Yasuo Ohgaki
Did you try $b-a()? It should work. -- Yasuo Ohgaki "Milan Mlynarcik" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Is there way to access paret class from outside of class ??? I know that to access parent object from within the class I can use code like

Re: [PHP] I can't connect php with apache.

2001-04-02 Thread Yasuo Ohgaki
I guess your httpd.conf is not allowing. Is your httpd.conf allow CGI script? Refer to Apache manual for that. Regards, -- Yasuo Ohgaki "Kukai" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi all, I have been trying to install PHP4.0 to Apache1.3 on Win2K

RE: [PHP] Page Counter

2001-04-02 Thread Jason Lotito
http://newbienetwork.net/sections.php?op=viewarticleartid=1 Read it, Learn it. Jason Lotito www.NewbieNetwork.net Where those who can, teach; and those who can, learn. -Original Message- From: Wen Ni [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 3:33 AM To: [EMAIL

[PHP] Search Engines

2001-04-02 Thread Geoff Caplan
Steve, You clearly know your stuff about search engines. I was planning to use the header: header("Expires: " . gmdate("D, d M Y H:i:s") . " GMT"); to ensure that pages are not cached in the client. But reading your excellent contribution, I was wondering whether a search bot would see this

[PHP] libphp3.so

2001-04-02 Thread Marcelo Pereira
Hi all, I'm having trouble when installing PHP3-3.0.18. I've done: tar xzvf php3-3.0.18.tar.gz cd php3-3.0.18 ./configure --with-pgsql ./make ./make install Then, in the INSTALL file says to add the follow line at /etc/httpd/conf/httpd.conf LoadMoldulemodules/libphp3.so But, I dunno

Re: [PHP] known problems with session_register()?

2001-04-02 Thread Felix Kronlage
On Mon, Apr 02, 2001 at 09:13:41PM +0900, Yasuo Ohgaki wrote: If you are enabled track vars and disabled register globals, all you have to do is assign values to $HTTP_SESSION_VARS and both are on. Could there be a problem with session_register() ? I do think it's odd, that the same code, on

Re: [PHP] session in php3 and in php4

2001-04-02 Thread A.T.Z.
I heard rumors saying there is no way to use session in php3, is that correct? No. PHPLIB If there is no way to get around this, what is syntax for assign session in php4 then? www.php.net take a look at the manual. Or one of the sites about PHP webmonkey etc.. Bye, B. -- PHP

[PHP] How to substitute Java classes?

2001-04-02 Thread torsten plaul
Hi folks, using Java-classes seems to be the only way to deal with CORBA in an easy way... I installed the Java support for PHP4 successfully. It runs fine under WinNt/Apache. The problem I´ve got is that Sun added some CORBA-classes to the archive (rt.jar) JDK comes with. But instead importing

Re: [PHP] is this syntax correct?

2001-04-02 Thread Jack Dempsey
Jacky, basic thing about sessions: you need session_start() at the top of every page in which you expect to use them...check out zend.com for some tutorials...but yes, you do need it at the top of that page... -jack "Jacky@lilst" wrote: Not really, do I need to have session_start at the

RE: [PHP] File upload via HTML forms

2001-04-02 Thread John Almberg
Howdy, You should be able to read this file using the file system functions. The PHP process (if it is set up properly) should have read access to this directory. The problem you will have is *writing* it to your own directory, as the PHP process probably *doesn't* have write access to your

[PHP] PHP Training

2001-04-02 Thread Matt Davis
Hi, is anyone aware of any php training courses available in the UK or alternativly any online anywhere. Thanks Matt. -- 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] Why does it work this way?

2001-04-02 Thread Boget, Chris
for( $i = "a"; $i = "z"; $i++ ) { } Not entirely too sure why, but the above works. And it's really cool that it does. :) However, it doesn't work as one would expect (aside from the fact that it works at all :p). Just looking at it, I would think that it would iterate from "a" to "z" and

[PHP] why some dll's don't work

2001-04-02 Thread Adrian Murphy
Certain dll's i try to use simply refuse to work. php.ini is edited correctly. php_ftp.dll works php_gd.dll don't php_ldap.dll works php_oci8.dll don't(with oracle 8i personal inastalled) etc. whats going on.all the requiste dll's are in the right folder. -- PHP General Mailing List

Re: [PHP] very dumb question, need help

2001-04-02 Thread Hardy Merrill
At the top of every script that will register or use session variables, I do "session_register" - something like this: script_1.php ?php session_start(); session_register("test"); $test = "myname"; ? script_2.php ?php session_start(); echo "Value

RE: [PHP] geocities and php

2001-04-02 Thread Krznaric Michael
Try cURL http://www.php.net/manual/en/ref.curl.php You can send anything you want. Mike -Original Message- From: Joseph Bannon [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 5:36 AM To: [EMAIL PROTECTED] Subject: [PHP] geocities and php I notice that geocities does

[PHP-CVS] cvs: php4 /ext/standard array.c

2001-04-02 Thread Andrei Zmievski
andrei Mon Apr 2 06:20:17 2001 EDT Modified files: /php4/ext/standard array.c Log: Use correct string length. Index: php4/ext/standard/array.c diff -u php4/ext/standard/array.c:1.106 php4/ext/standard/array.c:1.107 --- php4/ext/standard/array.c:1.106

Re: [PHP] Programming Jobs

2001-04-02 Thread David G.
"Jon Jacob" [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I hope this is not off topic, but I need to ask a general audience this question and this seems like the right group. I have been out of work for two months and I am not sure why. I am a talented web

[PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
To follow up just a bit more, here are skills I would require of someone before hiring them: * Practical SQL knowledge, with hands-on experience of at least 6 months (with projects/URLs to show for it) with either MySQL, Postgres, MSSQL, Oracle, DB2 or another high-level DB system (preferably

[PHP] Re: Programming Jobs - what I look for.

2001-04-02 Thread Jon Jacob
Michael Kimsal wrote: To follow up just a bit more, here are skills I would require of someone before hiring them: * Practical SQL knowledge, with hands-on experience of at least 6 months (with projects/URLs to show for it) with either MySQL, Postgres, MSSQL, Oracle, DB2 or another

RE: [PHP] PHP SITE SUGGESTION

2001-04-02 Thread Krznaric Michael
I have a suspcion that it may have to do with your shell interperting the character. Try to quote your URL with single quotes (''). Mike -Original Message- From: Michael Kimsal [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 10:41 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP

[PHP] Instalation

2001-04-02 Thread Marcelo Pereira
Hi, Why can't I found neither LIBPHP3.SO nor MOD_PHP3.SO ??? Thanks Marcelo Pereira Programmer

RE: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread James Moore
* Ability to talk me through at least 2 ways of solving a data manipulation problem, without code - whiteboard/paper/hand gestures and words only. You also need to be able to argue why one method is better over another. You don't have to be right, but you have to be able to justify your

[PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-04-02 Thread Rasmus Lerdorf
rasmus Mon Apr 2 07:57:11 2001 EDT Modified files: /CVSROOTavail gen_acl_file.m4 Log: Karma for Nick Index: CVSROOT/avail diff -u CVSROOT/avail:1.128 CVSROOT/avail:1.129 --- CVSROOT/avail:1.128 Mon Mar 26 01:36:13 2001 +++ CVSROOT/avail Mon Apr

[PHP] Ming and flash detection

2001-04-02 Thread Jason Stechschulte
Hi, I'm having a problem writing a flash detector, and was hoping someone would help. I had one working that I created with Flash 4, but it would fetch another webpage after loading so that it knew where to redirect to. So it looked like: PHP embeds FLASH --- load variables from PHP

RE: [PHP] Installing PHP as cgi and as self.

2001-04-02 Thread James Moore
Hello, Can I install php as a cgi and install it as its own program? On a redhat 7.0 box Apache 1.3 Thanks Brandon? Yep, cgi is the same as a command line interpreter. Just ./configure and dont enable any of the sapi's James -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] array_diff usage

2001-04-02 Thread Martin Skjöldebrand
Stig Venaas wrote: So the arrays contain one string each? array_diff() won't work then. Sorry - my fault. I'm getting the values from a database - not manually added. Try this: $a = array(1, 2, 3, 4, 5); $b = array(1, 2); $test = array_diff($a, $b); $lines = count($test); echo $lines;

Re: [PHP] Problem installing on BSD

2001-04-02 Thread natter
From my httpd.conf: LoadModule php4_modulelibexec/apache/libphp4.so (this file does exist) AddModule mod_php4.c # And for PHP 4.x, use: # AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps Felix Kronlage wrote: On Mon, Apr 02, 2001 at 12:01:08AM

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Pierre-Yves Lemaire
* Willingness to work weekends/evenings, if need be, to meet deadlines. And if you are still working weekends and evenings after 9 months on the job, quit immediately. Start your own company or go fishing :) py -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
Not sure exactly what you mean. I'm a suit who *wants* to be a techie? I'm a techie who is also a suit, if truth be told. James Moore wrote: * Ability to talk me through at least 2 ways of solving a data manipulation problem, without code - whiteboard/paper/hand gestures and words

[PHP] Snmp, php and Win2K

2001-04-02 Thread Richard Heyes
Anyone have any examples of php that uses snmp to get the details of bandwidth usage from a Win2K server (ie Bytes sent/received on a particular interface)? Thanks. -- Richard Heyes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] libpng error

2001-04-02 Thread Thalis A. Kalfigopoulos
Thank you very much, really appreciate it. But I have to admit that I an example from a book in which he creates a gif (and not a png), where he doesn't actually have to allocate a color. He only has 3 lines which are supposed to work. Maybe true for gif, but cannot tell, since I don't have

RE: [PHP-CVS] cvs: CVSROOT / avail gen_acl_file.m4

2001-04-02 Thread James Moore
Rasmus, please could you add *.chm to cvs wrappers please so the compiled helpfiles in PHPWEB arnt corrupted anymore when they are added. I dont think my Karama allows me to do this myself (I know you can cvs add -kb file.chm but someones bound to forget to do so in the future). Thanks James

Re: [PHP] Ming and flash detection

2001-04-02 Thread Chris Adams
On 2 Apr 2001 07:58:42 -0700, Jason Stechschulte [EMAIL PROTECTED] wrote: // This movie simply redirects to the appropriate page. $m-add(new SWFAction("getURL('$thisURL', ''); stop();")); I added code to write $thisURL to a file so I could see if it is getting passed correctly, and it is. So

RE: [PHP] Starting a Forum?!

2001-04-02 Thread James Moore
Hi... I'm starting a forum, but I have one problem.. 1. Is there a easy way to ignore/don't take HTML/php tags inside a post.. e.g someone echo's $mysql_password/username? or something else... include, require etc... take a look at

Re: [PHP] libpng error

2001-04-02 Thread Thalis A. Kalfigopoulos
On Mon, 2 Apr 2001, Thalis A. Kalfigopoulos wrote: Thank you very much, really appreciate it. But I have to admit that I have an example from a book in which he creates a gif (and not a png), where he doesn't actually have to allocate a color. He only has 3 lines which are supposed to work.

[PHP-CVS] cvs: CVSROOT / cvswrappers

2001-04-02 Thread Rasmus Lerdorf
rasmus Mon Apr 2 08:03:12 2001 EDT Modified files: /CVSROOTcvswrappers Log: .chm files are binary Index: CVSROOT/cvswrappers diff -u CVSROOT/cvswrappers:1.3 CVSROOT/cvswrappers:1.4 --- CVSROOT/cvswrappers:1.3 Mon Mar 5 17:26:41 2001 +++

[PHP-CVS] cvs: php4 / NEWS /ext/odbc php_odbc.c

2001-04-02 Thread Nick Gorham
lurcher Mon Apr 2 08:18:47 2001 EDT Modified files: /php4 NEWS /php4/ext/odbc php_odbc.c Log: Added small change to php_odbc module, to check for failed SQLDisconnects and to close any outstanding transactions if the call fails, then

[PHP] Can php read and than print file like it is

2001-04-02 Thread Jan Grafström
Hi! I have a file with text on 17 rows and when I let php read it ,get filezise and than print I only get the first row. I want all rows exatly like it is in the file, is it possible? My file: html head title/title /head body some rows here /body /html Thanks in advance for all help I can

Re: [PHP] Can php read and than print file like it is

2001-04-02 Thread Steve Werby
"Jan Grafstrm" [EMAIL PROTECTED] wrote: I have a file with text on 17 rows and when I let php read it ,get filezise and than print I only get the first row. I want all rows exatly like it is in the file, is it possible? My file: html head Yes, it's possible. Post your code so we can see

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/standard array.c

2001-04-02 Thread Andrei Zmievski
andrei Mon Apr 2 09:12:07 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard array.c Log: MFH Index: php4/ext/standard/array.c diff -u php4/ext/standard/array.c:1.101 php4/ext/standard/array.c:1.101.2.1 --- php4/ext/standard/array.c:1.101

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
Completely agreed. We're quite casual about start/end times (not strict 9-5) and if you need to take a long lunch to hit the doctor's office or something, that's OK. But we do expect people to pitch in long hours when the deadlines are on - not often, but often enough that they matter. I've

[PHP] PHP3 - Instalation

2001-04-02 Thread Marcelo Pereira
Hi all [again], I'm becoming crazy installing PHP3 on my system I had already been using PHP but with no postgresql support, now I need it and I done: get php3-3.0.18.tar.gz untared it ./configure --with-pgsql ./make ./make install The INSTALL file says to add -LoadModules libphp3

RE: [PHP] nl2br

2001-04-02 Thread Boget, Chris
In PHP there is an instruction : nl2br . Does anybody know if there is something similar in Perl??? I think this syntax is correct... it's been a while... $string =~ /\\n/\br\/g or something along those lines... :p Chris

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Mukul Sabharwal
--- Michael Kimsal [EMAIL PROTECTED] wrote: To follow up just a bit more, here are skills I would require of someone before hiring them: * Practical SQL knowledge, with hands-on experience of at least 6 months (with projects/URLs to show for it) with either MySQL, Postgres, MSSQL,

RE: [PHP] VRML and PHP

2001-04-02 Thread Dominick Vansevenant
Since PHP comes from a preprocessor and you can create VRML Code with it, it is possible. Just set .vrml as your extension in the config file and implement PHP tags. Greetz, Dominick -Original Message- From: Godd [mailto:[EMAIL PROTECTED]] Sent: maandag 2 april 2001 18:59 To: [EMAIL

Re: [PHP] Can php read and than print file like it is

2001-04-02 Thread Steve Werby
"Jan Grafstrm" [EMAIL PROTECTED] wrote: Thank You Steve! Here is my php ? $fillista = "fillista.xml"; $fp = @fopen($fillista,r); $count = fgets($fp,filesize($fillista)); fclose($fp); print "fillista=".$count; ? Your call to fgets() is only returning the first line of the

[PHP] Why does it work this way?

2001-04-02 Thread Mark Roedel
-Original Message- From: Boget, Chris [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 11:12 AM To: Mark Roedel Subject: RE: [PHP] Why does it work this way? Because "z"+1 turns out to be "aa" (which, if you ask me, makes about as much sense as any of the alternatives), How

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Mukul Sabharwal
oops, a 404, well try http://www.devhome.net/resume.txt in txt and http://www.devhome.net/resume.doc in word! :) --- Mukul Sabharwal [EMAIL PROTECTED] wrote: --- Michael Kimsal [EMAIL PROTECTED] wrote: To follow up just a bit more, here are skills I would require of someone before

Re: [PHP] Looping through the alphabet [was: Why does it work this way?]

2001-04-02 Thread Steve Werby
"Boget, Chris" [EMAIL PROTECTED] wrote: for( $i = "a"; $i = "z"; $i++ ) { } Not entirely too sure why, but the above works. And it's really cool that it does. :) However, it doesn't work as one would expect (aside You may know this already and not have a need, but for the benefit of

[PHP] freetype info required

2001-04-02 Thread Robert Vetter
Could someone please supply me with a little information about freetype fonts concerning the following points of interest: 1/ A good description of what it actually is. 2/ How to actually use it in a practical sense hopefully in conjunction with php. 3/ Supply of some small code snippets showing

[PHP] Check whether I have php installed as cgi or api???

2001-04-02 Thread Brandon Orther
Hello, Can I check to see if cgi is installed as a cgi or an api? What does PHP embedded mean? thanXor Brandon -- 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,

[PHP] how do I turn off error checking in foreach() ?

2001-04-02 Thread Chris Lee
here is my code, If select_array() does not find anything it will not return anything, foreach() requires an array. I rtied putting an @ inforn of $database- but this didnt work (didnt think it would) and I cant put in fron of the foreach() I get a parse error.

[PHP] scheduler

2001-04-02 Thread Michael Roark
Does anyone have any code which creates schedules? Like to create a works schedule or a league schedule (baseball, softball that sort of thing) -Micahel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Reading PHP.INI not from C:\WINNT

2001-04-02 Thread Diego Fulgueira
Hi! I can't make php.exe to read the configuration file, php.ini, from another path different from c:\winnt\. This location seems to be the default, but I want to change it to any other. I tried erasing php.ini from C:\winnt\ and I thought php.exe would read the php.ini siting next to it (in the

Re: [PHP] how do I turn off error checking in foreach() ?

2001-04-02 Thread Lindsay Adams
$database is the object. Select_array() is the function in the class, so... Try putting it in front of select_array() I don't know if this will work, but this is where I would think to put it. $database-@select_array() Let me know if it works. On 4/2/01 8:15 AM, "Chris Lee" [EMAIL PROTECTED]

RE: [PHP] VRML and PHP

2001-04-02 Thread James Moore
Since PHP comes from a preprocessor and you can create VRML Code with it, it is possible. Just set .vrml as your extension in the config file and implement PHP tags. Yep totally... James -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP-CVS] cvs: php4(PHP_4_0_5) /ext/standard output.c

2001-04-02 Thread Anil Madhavapeddy
avsmMon Apr 2 09:48:29 2001 EDT Modified files: (Branch: PHP_4_0_5) /php4/ext/standard output.c Log: MFH, rev 1.53 Index: php4/ext/standard/output.c diff -u php4/ext/standard/output.c:1.48.2.2 php4/ext/standard/output.c:1.48.2.3 ---

[PHP] FLASH AND PHP

2001-04-02 Thread Godd
Now VRML and PHP may be possible but if you can get Flash to get in the mix that will be so bad. What I really want to do is to get a flash file that will use the pictures that I send to it via php and let it use that picture to do the animation. Now what I am looking at is a flash file that

[PHP] joining tables and getting results in php query

2001-04-02 Thread Publications
I would like to be able to type in the username, select a change option and then update a table that does not contain the username. auth_user - contains user_id and username userinfo - contains user_id and the field I want to update What do I need to do fix this code? if ($userinfo) { if

[PHP] drop-down menu variables

2001-04-02 Thread Joao Monteiro
when i edit variables with a form the ones wich are simple text get corrected ok, but the ones chosen from drop-down menus only get added to existing variables... what am i doing wrong? Thanx Joao Monteiro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] scheduler

2001-04-02 Thread Rick St Jean
check out www.ileaguemanager.com At 12:12 PM 4/2/01 -0500, Michael Roark wrote: Does anyone have any code which creates schedules? Like to create a works schedule or a league schedule (baseball, softball that sort of thing) -Micahel -- PHP General Mailing List (http://www.php.net/) To

[PHP] duplicate a table

2001-04-02 Thread McShen
how do i duplicate a table? i tried create table refer2 select * from refer; create table refer2 as select * from refer; they didn't work. my mysql version is mysql 3.22.28, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

[PHP] cookies

2001-04-02 Thread Louis Brooks
Okay, I have tried every example in the PHP Essentials book and on the php.net site that I can find on setting cookies using php3. Is there a problem with Netscape 4.x and setting cookies or is there something I have missed in setting up setcookie()? Here is the code I am using: ?php

Re: [PHP] scheduler

2001-04-02 Thread Michael Roark
While this would work. Its a service for which you pay. I was looking for a code snippet. At 02:56 PM 4/2/2001 -0400, Rick St Jean wrote: check out www.ileaguemanager.com At 12:12 PM 4/2/01 -0500, Michael Roark wrote: Does anyone have any code which creates schedules? Like to create a works

  1   2   >