Re: [PHP] Help with login/redirect/insert to dbase

2002-11-29 Thread Maxim Maletsky
I think you better describe your question here and wait for the world to answer. -- Maxim Maletsky [EMAIL PROTECTED] "Karl James" <[EMAIL PROTECTED]> wrote... : > Hello guys > > Happy thanksgiving!!! > > My question is > I'm Trying to apply this

Re: [PHP] file creation date

2002-11-29 Thread Maxim Maletsky
How would you know about a file on someone's system before it was implicitly sent you by user? Take a look at JavaScript, but I doubt there will be a "sure" solution for it. Nothing is "sure" with JavaScript except for it's cross-browser incompatibility :) -- M

Re: [PHP] Help with the PHP

2002-11-29 Thread Maxim Maletsky
Try this: http://www.sourceforge.net/projects/phptriad and dowload there "phptriad". It is a simplified distribution of PHP. Also, try reading the articles on the web. You might want to start from PHP Beginner (www.phpbeginner.com). There are also some installtion tutorials for you.

Re: [PHP] File handling

2002-11-29 Thread Maxim Maletsky
loop through the file line by line explode()ing every line with "TEXt" in it. Then, if retrning array count is bigger than one, unset() the key one and break the loop. All read OVERWRITE in the original file. Sorry, too lazy writing the code here :) -- Maxim Maletsky [EMAIL PROTECTED

Re: [PHP] login_script_help needed.

2002-11-30 Thread Maxim Maletsky
what is on your line 22? -- Maxim Maletsky [EMAIL PROTECTED] On Sat, 30 Nov 2002 20:46:12 -0800 "Karl James" <[EMAIL PROTECTED]> wrote: > http://www.ultimatefootballleague.com/Create_Account.phps > > hey people > > I was wondering if anyone

Re: [PHP] Redirect opening in a new window

2002-11-30 Thread Maxim Maletsky
isn't there an only module you could modify? Do you really need to edit 2000 pages? I am not NUKE fan, but I am sure there is an easier way -- Maxim Maletsky [EMAIL PROTECTED] On Sat, 30 Nov 2002 12:09:33 -0800 "Troy May" <[EMAIL PROTECTED]> wrote: > That easy soluti

Re: [PHP] groupware tool in PHP for PostgreSQL

2003-01-07 Thread Maxim Maletsky
Miguel González Castaños <[EMAIL PROTECTED]> wrote... : > I have been looking around during more than one month, and the best > that I have found seems to be phpGroupware, PHProjekt and TuTOS but I am > hoping to get some comments/suggestions from you guys. probably phpGroupW

Re: [PHP] regular expression help

2003-01-07 Thread Maxim Maletsky
Here is your answer: http://www.phpbuilder.com/columns/ying2718.php3?page=2 -- Maxim Maletsky [EMAIL PROTECTED] "adrian [EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote... : > I'm a bit useless at regular expressions so i thought i ask. > i need to turn all >

Re: [PHP] Zend IDE vs. PhpEd

2003-01-07 Thread Maxim Maletsky
P... But, that's my own preference. Should I need an IDE I'd choose Zend because it seems to me more affordable and better integrated with PHP. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] fsockopen() to remote URL: what if remote URL "times out"?

2003-01-10 Thread Maxim Maletsky
adjust it to whatever you like. After that time you will get error 110 which means "Connection timed out". Additionally, if you set anything over 30 seconds, you might also consider altering the execution time limit for the php script itself. -- Maxim Maletsky [EMAIL PROTECTED] --

Re: [PHP] Is this possible with php?

2003-01-10 Thread Maxim Maletsky
can do that. 4. The Geeky way: Edit all your files in a simple VIM or other fancy directly on the server by logging there with telnet or SSH. Have fun. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Converting Excel Spreadsheet to MySQL table ...

2003-01-10 Thread Maxim Maletsky
tly on Linux box... -- Maxim Maletsky [EMAIL PROTECTED] "Adam Ferguson" <[EMAIL PROTECTED]> wrote... : > Hello ... > > I was wondering if anyone had a good resource or code sample for opening ( or >accessing ) an excel spreadsheet using php. I need to be abl

Re: [PHP] searching for string inside document

2003-01-10 Thread Maxim Maletsky
me with strchr() and strstr() all these functions can work. Though, you will need to get the document's contents into a variable of your script so you can perform a preg_match()/ereg()/strstr() on that string variable. I believe this is what you missed out. -- Maxim Maletsky [EMAIL PROTECTED] --

Re: [PHP] something annoying about includes/relative paths.

2003-01-10 Thread Maxim Maletsky
7;logic/engine.php'); > > htdocs/system/logic/engine.php > include(CORE_PATH.'html/header.php'); > > and so on and so forth. searching for __FILE__, and removing the filename > from the output, gives you a sort of relative path hack. > > Hope someone finds that useful -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Medium to Large PHP Application Design

2003-01-10 Thread Maxim Maletsky
at matter is the professionality and knowledge of people. PHP can do almost all of it, so as long as the management is good, times are not idiotically strict and people are enough - you can do it just fine. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP/Oracle Command line Segmentation Fault

2003-01-10 Thread Maxim Maletsky
x27;s execution ends. Do what, try removing the last function from your script and run again. If the segfault happens again submit a bug report at http://bugs.php.net with all the possible details (server log, script, system etc) and I will take over the bug myself (I maintain the OCI8 extension)

Re: [PHP] Mysql/php database performance question

2003-01-10 Thread Maxim Maletsky
"keeping those 5 columns with a lot of empty cells in the last columns" is better as it is means exactly for that. Just don't make it a not null field. -- Maxim Maletsky [EMAIL PROTECTED] "Khalid El-Kary" <[EMAIL PROTECTED]> wrote... : > the thing that may

Re: [PHP] PHP not executing files in subdirectories

2003-01-10 Thread Maxim Maletsky
;t want to waste > bandwidth. what are the extensions of these files? You might need to add them to your httpd.conf or .htaccess files. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how can I use an external 'template' file and still use PHP variables?

2003-01-10 Thread Maxim Maletsky
Check out Smarty: http://smarty.php.net it does exactly what you need. -- Maxim Maletsky [EMAIL PROTECTED] "Daevid Vincent" <[EMAIL PROTECTED]> wrote... : > I've posted this a few weeks ago with no response. I want to use an > external > "email template&

Re: [PHP] version switch problem

2003-01-10 Thread Maxim Maletsky
Please, when posting a new message - MAKE IT A *NEW* MESSAGE and not reply to something on the list changing the body and the subject - we notice it because that breaks threading of most email clients (Reference header) -- Maxim Maletsky [EMAIL PROTECTED] "Christian Stalberg&quo

Re: [PHP] phpBB

2003-01-15 Thread Maxim Maletsky
http://sf.net/projects/phpbb -- Maxim Maletsky [EMAIL PROTECTED] Félix García Renedo <[EMAIL PROTECTED]> wrote... : > Hi, > > How could I download phpBB? > I tryed in http://www.phpbb.com/index.php but I couldn't. > > Thanks. > Un saludo. > >

Re: [PHP] Send email when some action

2003-01-15 Thread Maxim Maletsky
mail() function @ http://php.net/mail -- Maxim Maletsky [EMAIL PROTECTED] "Miguel Brás" <[EMAIL PROTECTED]> wrote... : > Hi gents, > > i have a script to manage the registered users on my site. > have also a table with id, name, uname, passwrd, email, datejoined

Re: [PHP] Speed concerns with OOP and PHP4

2003-01-16 Thread Maxim Maletsky
r so) queries to a db, am I making a mistake by going > OO? 500 queries wan't really matter because it has few to do with OO/PHP. 60k of code, if all together on the same request will be definitely slow. So, make sure that *only* the required classes are loaded on each execution. -- Ma

Re: [PHP] Php's future with Asp .NET?

2003-01-16 Thread Maxim Maletsky
paying the licenses for every single form you add to your pages :) -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Php's future with Asp .NET?

2003-01-16 Thread Maxim Maletsky
e tricks that many would like to pay and use. At that point MS decided to also work on Linux. > I have very little ASP experiance, but that has cost me the oppertinity to > apply for several well-paying jobs, as there is very few PHP positions > around - I'm speaking for the UK ma

Re: [PHP] Word Count

2003-01-23 Thread Maxim Maletsky
words, for a programming language, are nothing more than just the spaces. So, as previousely was shown - could the mount of spaces in the string to get the amount of `words' in between them. -- Maxim Maletsky [EMAIL PROTECTED] "Craig" <[EMAIL PROTECTED]> wrote... : >

Re: [PHP] Executing Shell Commands.

2003-01-23 Thread Maxim Maletsky
Use the execution operator backtricks (``) '; echo `ls -la`; ?> will throw you the shell's ls -la to the browser -- Maxim Maletsky [EMAIL PROTECTED] scott <[EMAIL PROTECTED]> wrote... : > Hello, > > Does anybody know how to execute a shell command

Re: [PHP] Page doesn't load..

2003-01-23 Thread Maxim Maletsky
Guess what, if you'll try another browser the whole thing will work :) This is IE's problem -- Maxim Maletsky [EMAIL PROTECTED] Marek Kilimajer <[EMAIL PROTECTED]> wrote... : > Do you get the message from apache? If so, check apache logs. If it is > the exploder'

Re: [PHP] File Permissions

2003-01-24 Thread Maxim Maletsky
try this: echo "you " . ( is_writable("testfile2.php")? 'can ' : 'cannot' ) . " write"; the function is_writable() will tell you in advance whether the file is writable or not. -- Maxim Maletsky [EMAIL PROTECTED] "Don Mc Nair" &

Re: [PHP] Has This Been Done?

2003-01-24 Thread Maxim Maletsky
Pear has an interesting installer. Try checking it out -- Maxim Maletsky [EMAIL PROTECTED] "Stephen" <[EMAIL PROTECTED]> wrote... : > Just a question but has something like ever been done? > > A PHP script that would create an installation form for any other PHP

Re: [PHP] Evaluate PHP var in stored sql statement?

2003-01-24 Thread Maxim Maletsky
use eval() www.php.net/eval -- Maxim Maletsky [EMAIL PROTECTED] "CF High" <[EMAIL PROTECTED]> wrote... : > Hey all. > > I need to find out how to get PHP to evaluate a PHP variable stored in our > MySql database. > > Currently the variable is being re

Re: [PHP] Evaluate PHP var in stored sql statement?

2003-01-24 Thread Maxim Maletsky
eval takes the string and executes PHP in that string. So, eval("\$myrow[2] = \"$myrow[2]\";"); is equivalent to: $myrow[2] = "$myrow[2]"; I'd reccomend you using single quotes and then escape only backslashes and single quotes within a string -- Maxim

Re: [PHP] Evaluate PHP var in stored sql statement?

2003-01-25 Thread Maxim Maletsky
no, much less instead --- Maxim Maletsky [EMAIL PROTECTED] On Sat, 25 Jan 2003 09:18:47 -0800 "Noah" <[EMAIL PROTECTED]> wrote: > Thanks for your help Maxim. > > I've got quite a bit to learn. PHP is far more challenging than Cold > Fusion. >

Re: [PHP] Found a PHP bug!!!!!!!!!

2003-01-28 Thread Maxim Maletsky
just try doing it with === (three equal signs) and you'll see what is where -- Maxim Maletsky [EMAIL PROTECTED] "Cal Evans" <[EMAIL PROTECTED]> wrote... : > John. > > > Actually, "08" is equal to 8 in PHP. PHP will convert the string to an &

Re: [PHP] Found a PHP bug!!!!!!!!!

2003-01-28 Thread Maxim Maletsky
original string. Then compare. That is the only way to be safe, other ways are "magic" because PHP debugged them for you. It's really all about the programming logic. few of you who are fluent with C or Java would dump into this. -- Maxim Maletsky [EMAIL PROTECTED] "Scott Fletche

Re: [PHP] Do php extension need to be thread-safe?

2003-01-28 Thread Maxim Maletsky
Absolutely yes. Take a look at the current extensions there to see how it can be controlled. -- Maxim Maletsky [EMAIL PROTECTED] Joshua Moore-Oliva <[EMAIL PROTECTED]> wrote... : > Do php extension need to be thread-safe? I am running php on apache2. I > would guess tha

Re: [PHP] phpMyAdmin for Microsoft SQL

2003-01-28 Thread Maxim Maletsky
There is nothing for MS SQL that I know. phpMyAdmin was used for mySQL initially and then some volunteers like you made postreSQL and Oracle versions of it. So, you might want to try one on your own on SourceForge :) -- Maxim Maletsky [EMAIL PROTECTED] "Joshua E Minnie" <[EM

Re: [PHP] Help with Filesize

2003-01-28 Thread Maxim Maletsky
Try fstat() function on the file pointer - it will return you the various results, including its size. -- Maxim Maletsky [EMAIL PROTECTED] Rodrigo Corrêa <[EMAIL PROTECTED]> wrote... : > > How do i use the function filesize, because i´m using like: > > I just want asso

Re: [PHP] help needed with session variables

2003-01-28 Thread Maxim Maletsky
n; $_SESSION['firstname'] = $first_name; $_SESSION['lastname'] = $last_name; and the three variables will be available on the next pages. remember to start sessions before hand: session_start(); -- Maxim Maletsky [EMAIL PROTECTED] Pushpinder Singh Garcha <[EMAIL PROTECTE

Re: [PHP] multiple entry forms !!

2003-01-28 Thread Maxim Maletsky
into the DB. That is the most elegant way, IMO. -- Maxim Maletsky [EMAIL PROTECTED] "scott" <[EMAIL PROTECTED]> wrote... : > hi > > looking for some advice > > I have a site in progress. user to it have to enter a LOT of information (it > will contain a club d

Re: [PHP] HELP session cache limiters

2003-01-28 Thread Maxim Maletsky
this means that somewhere (on line 19 of /home/sisource/public_html/stage/administration/config.php) there is an output. For sessions to work, session_start() should be *before* any output was created. Even a new line or a whitespace would break it. -- Maxim Maletsky [EMAIL PROTECTED

Re: [PHP] PHP vs Perl for system scripts (non-web)

2003-01-28 Thread Maxim Maletsky
d write > system stuff in Perl rather than PHP? PHP natively works quite well with mySQL, thus its another reason to use it. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Access to Pear

2003-01-28 Thread Maxim Maletsky
It is a bad idea to "hijack" someone's thread. In other words, when posting a new question, do not reply to an existing post changing its subject and content. Mail headers still reference to the old one and we all see it just being another post of a thread. -- Maxim Maletsky [

Re: [PHP] PHP Page Refresh on Redirection

2003-01-28 Thread Maxim Maletsky
make sure that new page's headers do not cache. See www.php.net/header for examples. -- Maxim Maletsky [EMAIL PROTECTED] "Phil" <[EMAIL PROTECTED]> wrote... : > I have a PHP page with a form that submits to another PHP processing page. > On completion of the PH

Re: [PHP] Good way to organize code using classes???

2003-01-28 Thread Maxim Maletsky
declared before. That way, you only load a few functions, and whenever you need a class you assign a variable to the function's return to have the class. This limits you script to only classes you use and no includes within the script itself. A kind of silly method, but can be easy to wor

Re: [PHP] Need Guru's Help

2003-01-28 Thread Maxim Maletsky
What about looking for something like that written in C that would convert your HTML into XML and then use PEAR's XMLParser to get it into a PHP structure? -- Maxim Maletsky [EMAIL PROTECTED] Tariq Murtaza <[EMAIL PROTECTED]> wrote... : > Hi All Guru's here, > > I

Re: [PHP] printing

2003-01-28 Thread Maxim Maletsky
It's easy to do with JavaScript. Client will only have to confirm. Sometimes, in PDF nor even confirming is necessary. Not sure if what I said makes sense. -- Maxim Maletsky [EMAIL PROTECTED] "Shaun van den Berg" <[EMAIL PROTECTED]> wrote... : > Hey, > > Is th

Re: [PHP] Thread safety

2003-01-28 Thread Maxim Maletsky
Don't the current PHP extensions have a good example there? It's pretty much easy to understand reading the code. -- Maxim Maletsky [EMAIL PROTECTED] "Olga Tonkonog" <[EMAIL PROTECTED]> wrote... : > Hello ! > > I write extension for PHP. I create biblio

Re: [PHP] problem with copy()

2003-01-28 Thread Maxim Maletsky
you need to escape the windows backslash: $file = "c:\pic.jpg"; should be $file = "c:\\pic.jpg"; or $file = "c:/pic.jpg"; which will work the same -- Maxim Maletsky [EMAIL PROTECTED] "Bartosz Matosiuk" <[EMAIL PROTECTED]> wrote...

Re: [PHP] parsing ini files

2003-01-28 Thread Maxim Maletsky
il address. If you click "reply-to" and change the "to" and "body" to your own so it looks like a new post, some of us still get it as a thread of the previous one. -- Maxim Maletsky [EMAIL PROTECTED] "Erich C. Beyrent" <[EMAIL PROTECTED]> wrote..

Re: [PHP] Access

2003-01-28 Thread Maxim Maletsky
with ODBC www.php.net/odbc -- Maxim Maletsky [EMAIL PROTECTED] "Todd Barr" <[EMAIL PROTECTED]> wrote... : > Access > > Does anyone here have any idea how to connect access to PHP? > > Thanks > > > -- > PHP General Mailing List (http://

Re: [PHP] best way to save form data on user side

2003-01-29 Thread Maxim Maletsky
Isn't it simplier to just do like when you purchase something? You also need a prove then that you have paid and are expecting the merchandise to be shipped. That is simply solved with mailing a copy plus a registration number for future reference. Should be more than enough. -- Maxim Mal

Re: [PHP] register_globals

2003-01-29 Thread Maxim Maletsky
ST or $_GET/$_POST respectively -- Maxim Maletsky [EMAIL PROTECTED] "Kiswa" <[EMAIL PROTECTED]> wrote... : > I know its stupid but i´ve been writing a site for a register_globals = on > enviroment > now i need to convert all the code to an off setting > > the page

Re: [PHP] Advice on uploaded files

2003-01-29 Thread Maxim Maletsky
- writable, permissions won't change, things won't get corrupted, it's writable by you and but not by other user etc I'd say that DB is a better way, although altogether it would get it a little slower, but not by too much. DB will be quite large. -- Maxim Maletsky [EMAIL PROTEC

Re: [PHP] ayuda help

2003-01-29 Thread Maxim Maletsky
you used a wrong password -- Maxim Maletsky [EMAIL PROTECTED] Rot Alvarez <[EMAIL PROTECTED]> wrote... : > > Tengo este herros y no se de q esWarning: MySQL Connection Failed: Access denied for >user: 'fullweb@localhost' (Using password: YES) in &

Re: [PHP] php and sql problem with mysql_query and insert

2003-01-29 Thread Maxim Maletsky
Guess what? add this on top of the file: error_reporting(E_ALL); this will probably tell you these variables are unset :) Why? Register global... wrong logic... etc... What php 4 is exactly installed there? -- Maxim Maletsky [EMAIL PROTECTED] "Sunfire" <[EMAIL PROT

Re: [PHP] test

2003-01-29 Thread Maxim Maletsky
worked -- Maxim Maletsky [EMAIL PROTECTED] "Sol" <[EMAIL PROTECTED]> wrote... : > test > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > -- PHP General Mailing List (http://w

Re: [PHP] new

2003-01-29 Thread Maxim Maletsky
and the question is -- Maxim Maletsky [EMAIL PROTECTED] Ysrael Guzmán <[EMAIL PROTECTED]> wrote... : > Warning: Failed opening 'cliente.php' for inclusion > (include_path='.;c:\php4\pear') in Unknown on line 0 > > -- > PHP General Mailing Li

Re: [PHP] PHP Crashing on iPlanet 6sp4 Enterprise, Solaris 8, PHP 4.3.0

2003-01-29 Thread Maxim Maletsky
why don't you check the bug database at bugs.php.net and investigate whether there is anything similar to this? If not, test well, combine your information together (specs, code, system, trace/logs etc) and submit it as a bug. Unless, this is not a bug :) -- Maxim Maletsky [EMAIL PROT

Re: [PHP] php.net links page question

2003-01-30 Thread Maxim Maletsky
mail it to [EMAIL PROTECTED] -- Maxim Maletsky [EMAIL PROTECTED] dan <[EMAIL PROTECTED]> wrote... : > i would like to suggest a link for the php.net links page, how would i > go about doing that? > > > -- > PHP General Mailing List (http://www.php.net/) >

Re: [PHP] Screen Size detect??

2003-01-31 Thread Maxim Maletsky
). And, I wouldn't do it once again :) Best solution? Perhaps using an absolute width for HTML tables (100%) or a fixed (minimal) page width (775 px recommended) P.S: Hope this email gets read archived and read from there :) -- Maxim Maletsky [EMAIL PROTECTED] On Fri, 31 Jan 2003 20:48:19 -08

Re: [PHP] Screen Size detect??

2003-01-31 Thread Maxim Maletsky
On Sat, 01 Feb 2003 18:44:19 +0100 Maxim Maletsky <[EMAIL PROTECTED]> wrote: > There is no way to do that with PHP. > > PHP/JavaScript rule #1: > > PHP = Client Side > JS = Server Side Geez I mean viceversa :) In Stalin's times I'

Re: [PHP] fputs / fwrites ?

2003-01-31 Thread Maxim Maletsky
ed as a new thread. -- Maxim Maletsky [EMAIL PROTECTED] On Fri, 31 Jan 2003 23:41:12 -0600 "Lee Herron" <[EMAIL PROTECTED]> wrote: > Okay, so I want to open a file, get a small number from it (less than 3 > digits) then overwrite a new number (incremented the original

Re: [PHP] how to write clean code.

2003-02-02 Thread Maxim Maletsky
few references for K&R: http://www.purists.org/linux/ http://www.jetcafe.org/~jim/c-style.html http://www.cs.utexas.edu/users/scottm/cs307/Handouts/codingStandards.htm http://staff.oclc.org/~thompson/correct_style.html -- Maxim Maletsky [EMAIL PROTECTED] On Sun, 02 Feb 2003 20:34:35 +0100 anders t

Re: [PHP] file copy

2003-02-03 Thread Maxim Maletsky
header("Content-Disposition: attachment; filename=\"file.gif\""); -- Maxim Maletsky [EMAIL PROTECTED] "Cenk Uysal" <[EMAIL PROTECTED]> wrote... : > hi, > > how can i copy a file from web to my local disk? > > http://www.xxx.com/x

Re: [PHP] mktime with Feb or Jan ..

2003-02-03 Thread Maxim Maletsky
readon about strtotime() function www.php.net/strtotime you might not even need to preg_match() it -- Maxim Maletsky [EMAIL PROTECTED] Torsten Rosenberger <[EMAIL PROTECTED]> wrote... : > Hello > > I parse the apache logfile and get a date format like this > [03

Re: [PHP] PHP Framework

2003-02-03 Thread Maxim Maletsky
ayout. -- Maxim Maletsky [EMAIL PROTECTED] "Danny Shepherd" <[EMAIL PROTECTED]> wrote... : > Well, Yahoo! have moved/are moving to Smarty and they get a few million > views a day. > > The killer part with smarty is that it converts the Smarty tags, in your > template,

Re: [PHP] Help with classes (oop)

2003-02-03 Thread Maxim Maletsky
ed to create the instance (define) your class with already passing parameters to it. Like this: $obj = new First($par1, $par2); The next, you don't need to call $obj->first(..., ...); once again, as you just did it one line above. -- Maxim Maletsky [EMAIL PROTECTED] On Mon, 3 Feb 2003 1

Re: [PHP] php3 + HTTP_POST_FILES

2003-02-04 Thread Maxim Maletsky
No, PHP3 does not support it. http://www.php.net/manual/en/features.file-upload.php";> Note: In PHP versions prior 4.1.0 this was named $HTTP_POST_FILES and it's not an autoglobal variable like $_FILES is. PHP 3 does not support $HTTP_POST_FILES. -- M

Re: [PHP] Security question with PHP on Unix / Linux.

2003-02-04 Thread Maxim Maletsky
ce I am a newbie, I may have misunderstood some concepts here. Most of them. PHP is a programming language, not a shell interface or something. Stays up to you what to do once user runs your PHP script. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php3 + HTTP_POST_FILES

2003-02-04 Thread Maxim Maletsky
same as what $_FILES since PHP 4.1.0 gives you -- Maxim Maletsky [EMAIL PROTECTED] "Dan Rossi" <[EMAIL PROTECTED]> wrote... : > i looked there i'm sure i didnt see that :| what a pain , another reason to > get them to upgrade ;) what information can

Re: [PHP] Security question with PHP on Unix / Linux.

2003-02-05 Thread Maxim Maletsky
already have ported PHP 4.2.3 onto NetWare and we have synched up our > souces for the 4.3 branch. Interesting. Are you working with the php-dev team or on your own? -- Maxim Maletsky [EMAIL PROTECTED] > >>> Maxim Maletsky <[EMAIL PROTECTED]> 02/04/03 08:45PM >>> &g

Re: [PHP] PHP connecting to MS Access

2003-02-05 Thread Maxim Maletsky
You could use ODBC -- Maxim Maletsky [EMAIL PROTECTED] "Phil Schwarzmann" <[EMAIL PROTECTED]> wrote... : > If a MS Access database and a PHP server were on the same machine, could > they connect without having to use something like MS SQL Server? > -- PHP G

[PHP] Re: [PHP-DEV] Database Abstraction

2003-02-05 Thread Maxim Maletsky
es separately. Check out how I did that for ZoomStats: www.sf.net/projects/zoomstats I have also written about it at PHP Architect (www.phparch.com) -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DB] PHP Database Abstraction Layer

2003-02-06 Thread Maxim Maletsky
MySQL API > $dbWave = new Mysql(); > > // Connect to the database > $dbWave->connect( 'yourhost', 'yourport', 'yourdbname', 'yourdbuser', > 'yourdbpass' ); > ?> ZoomStats uses it: http://sf.net/projects/z

Re: [PHP] Client Side PHP

2003-02-06 Thread Maxim Maletsky
I am doing now ;) How would you guys like the idea, though? -- Maxim Maletsky [EMAIL PROTECTED] Pete <[EMAIL PROTECTED]> wrote... : > Has any one ever considered creating browser / client-side php to > replace Javascript and vb?? > > One language across the whole w

Re: [PHP] Client Side PHP

2003-02-06 Thread Maxim Maletsky
bility. The downside is the limited user-base it would be - any way you wish it to work it will have to be a plugin -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Catching Oracle Errors

2003-02-07 Thread Maxim Maletsky
by using OCIError() function. php.net/ocierror -- Maxim Maletsky [EMAIL PROTECTED] fdo cruz <[EMAIL PROTECTED]> wrote... : > > I'm working with Oracle 8.1.5 and my connection is working fine as well as my SQL >parsing but I want that when there's an error, show an

Re: [PHP] How easy is this idea?

2003-06-06 Thread Maxim Maletsky
JavaScript or both. -- Maxim Maletsky [EMAIL PROTECTED] On Fri, 6 Jun 2003 10:38:05 +0100 "Simon Thurtle" <[EMAIL PROTECTED]> wrote: > OK, now I have I have been convinced that PHP is the best thing since cheese > burgers, I have a question... > How easy is it to...

Re: [PHP] Linux vs. Windows

2003-06-06 Thread Maxim Maletsky
> c) In Linux Im using Apache, where in Windows Im using > IIS probably this is the issue. Make it be apache as well. -- Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: My SQL speed.

2002-08-02 Thread Maxim Maletsky
ucial (as Manuel mentioned) to design the right logic within your application. TIP: look for repeating data in your DB, and try to "compress" it somehow. Try to see if you can split and reuse the records. Add more supporting tables and so on Maxim Maletsky PHP Beginner (www.phpbeginn

RE: [PHP] alternative to phpadsnew?

2002-08-03 Thread Maxim Maletsky
You can track ads with phpAdsNew also remotely, not necessarily via view() function. Maxim Maletsky PHP Beginner www.phpbeginner.com -Original Message- From: Andy [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 03, 2002 4:44 PM To: [EMAIL PROTECTED] Subject: [PHP] alternative to

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Well said, Rasmus. - Maxim Maletsky -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 03, 2002 8:06 PM To: Acer Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Protect PHP coding Because it is a silly thread and I shouldn't be replying a

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
working? Is php > becoming a contender? Like I said before do a search for php developers, > you won't find any demand for it. Jsp is newer then php and they have a > lot > more jobs available so something isn't working. > Things ARE working, there is just a lot of cons

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
php-general question or answer one. Deal? Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 12:01 AM > To: Rasmus Lerdorf > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP]

RE: [PHP] Include problems

2002-08-03 Thread Maxim Maletsky
Include and require are identical, except for their failure behavior - require() halts permanently ending execution of the script. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: ::: Flavio Bastos Amiel::> [mailto:[EMAIL PROTECTED

RE: [PHP] Decode email

2002-08-03 Thread Maxim Maletsky
Try looking for it on www.phpclasses.org - it is pretty rich for such content. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: info @ saudiabm [mailto:[EMAIL PROTECTED]] On Behalf Of support- > [EMAIL PROTECTED] > Sent: Sunda

RE: [PHP] Re: May i?

2002-08-03 Thread Maxim Maletsky
You should make your application independent from "id" value - "id" should only serve you as a key to relate the data within application/database. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: ::: Flavio Bastos Amiel:

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
'==' is not an associative operator. Read on: http://www.php.net/manual/en/language.operators.php Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 3:38 AM &

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Acer, Give it up. We are tired of you. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 5:40 AM > To: Justin French; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subjec

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
. This mailing list discusses general php problems. Zend's pricing is not our problem. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 5:57 AM > To: [EMAIL PROTECTED

RE: [PHP] Re: Protect PHP coding

2002-08-03 Thread Maxim Maletsky
Will we get hurt? Ufff whata pain .... Maxim Maletsky > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 7:06 AM > To: César Aracena; [EMAIL PROTECTED] > Subject: RE: [PHP] Re: Protect PHP coding > > the truth hurt

RE: [PHP] Re: Protect PHP coding

2002-08-04 Thread Maxim Maletsky
> No we shouldn't criticise a commerical company because I never hear bad > things about Microsoft on here. Read archives :-) Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Protect PHP coding

2002-08-04 Thread Maxim Maletsky
ssages pop-up on our eyes while reading this mailing list hopping to help someone in trouble. Your senseless typing only makes us hate you. Ciao, Maxim Maletsky [EMAIL PROTECTED] > -Original Message- > From: Acer [mailto:[EMAIL PROTECTED]] > Sent: Sunday, August 04, 2002 5:13 PM

RE: [PHP] Re: Protect PHP coding

2002-08-04 Thread Maxim Maletsky
development, but of its support. And Zend primarely supports PHP. Regards, Maxim Maletsky [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] File Question

2002-08-08 Thread Maxim Maletsky
Ray, __FILE__ is the constant (there's also __LINE__) that is defined right within the file, so its value cannot be modified. Look up here: http://www.php.net/manual/en/language.constants.php Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message

RE: [PHP] mysql_result

2002-08-08 Thread Maxim Maletsky
??? Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: Sascha Braun [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 12:18 AM > To: PHP Mailingliste > Subject: [PHP] mysql_result >

RE: [PHP] Help with multiple select

2002-08-08 Thread Maxim Maletsky
so on . but, I would really recommend you to experiment some alternative ways with use of a loop. That would be way cleaner. Sincerely, Maxim Maletsky [EMAIL PROTECTED] PHP Beginner www.phpbeginner.com > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]

RE: Re[2]: [PHP] Help with multiple select

2002-08-08 Thread Maxim Maletsky
Change $mins to $ret in the HTML code. Sincerely, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 1:34 AM > To: Maxim Maletsky; php-general > Subject: Re[2]:

RE: Re[4]: [PHP] Help with multiple select

2002-08-08 Thread Maxim Maletsky
, Maxim Maletsky PHP Beginner www.phpbeginner.com > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 2:14 AM > To: Maxim Maletsky; php-general > Subject: Re[4]: [PHP] Help with multiple select > > Hello Maxim, >

  1   2   3   4   5   6   7   >