[PHP] some data output formatting and grouping question...

2002-12-01 Thread Victor
I just have a fucking mental block; I cannot at all conceive the necessary syntax to or even the theoretical algorithm that I need, to do the following: Consider the following table: U | X | Y --|---|-- me|001|0a me|002|0a me|003|0a me|002|0b me|003|0b me|004|0b ..|...|.. then the code says: S

[PHP] some data output formatting and grouping question...

2002-12-02 Thread Victor
I just have a mental block; I cannot at all conceive the necessary syntax to or even the theoretical algorithm that I need, to do the following: Consider the following table: U | X | Y --|---|-- me|001|0a me|002|0a me|003|0a me|002|0b me|003|0b me|004|0b ..|...|.. then the code says: SELECT *

[PHP] some multiple array problems...

2002-12-27 Thread Victor
I am trying to make a calculator that figures out the total price (calculates tax sums up price for print size times quantity etc.) and the mechanism all works fine - but only when the user checks SEQUENTIALLY from their list of available picture. The user should be able to select from their list

[PHP] OOP for Web Programming Paradigm

2003-01-11 Thread Victor
Hello. I have this question. When I program, I try to create a class for each table. Example below. Now what some complain about, and logically so, is that this might impose an overhead (I load all data even if I just need a counter and NOT description). So I say we can make a STATIC version o

Re: [PHP] OOP for Web Programming Paradigm

2003-01-12 Thread Victor
olinux wrote: I'm no OOP programmer but maybe extend your class to include methods for each situation. something like this: function countSingle($cid) function countMulti($cidArray) function countAll() HTH, olinux Hmm, yes, that's an interesting idea. Except perhaps include the first arg

[PHP] total file size

2003-01-22 Thread Victor
Is there a way to find out total upload file size from a file uploaded though an html form? I figure if I know the total size, then I can just consistently poke at the file being uploaded and math a progress bar for the file being uploaded, of course, this all hangs upon the ability of getting the

RE: [PHP] total file size

2003-01-23 Thread Victor
With what then? Why not? Should this be a bug filed in their bugs database? - Vic -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 2:00 PM To: Victor; [EMAIL PROTECTED] Subject: Re: [PHP] total file size yes, it is possible, but not with

[PHP] GD jpg thumbnail - ugly discollored

2003-01-25 Thread Victor
I have a script that takes uploaded images (jpeg only) and makes proportionate thumbnails etc, and saves them in jpeg (.jpg) format again (default compression of %75 I think) anyway, the thumbnails are UGLY. Beauty of content aside, they are discolored, and usually one predominant color takes over

RE: [PHP] GD jpg thumbnail - ugly discollored

2003-01-25 Thread Victor
That is not an option since I do not have control over the hosting company. -Original Message- From: George E. Papadakis [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 25, 2003 3:20 PM To: Victor; [EMAIL PROTECTED] Subject: Re: [PHP] GD jpg thumbnail - ugly discollored Use

[PHP] + in filenames

2003-01-25 Thread Victor
I have a file upload field, and some filename checking code, but it breaks the code whenever a + is inside the filename it verifies space and other tags but breaks on + in the name. Anyone know a fix for this please? - Vic __

RE: [PHP] GD jpg thumbnail - ugly discollored

2003-01-25 Thread Victor
Thanks it worked. - Vic -Original Message- From: Mark Charette [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 25, 2003 4:42 PM To: Victor; [EMAIL PROTECTED] Subject: RE: [PHP] GD jpg thumbnail - ugly discollored make sure you use: ImageCreateTrueColor() to create the thumbnail

RE: [PHP] + in filenames

2003-01-25 Thread Victor
_replace(" ", "", $picture_name); -Original Message- From: Richard Whitney [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 25, 2003 5:12 PM To: Victor Cc: [EMAIL PROTECTED] Subject: Re: [PHP] + in filenames

RE: [PHP] + in filenames

2003-01-25 Thread Victor
From: Richard Whitney [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 25, 2003 5:32 PM To: Victor Cc: [EMAIL PROTECTED] Subject: RE: [PHP] + in filenames Victor! What are you trying to accomplish? Do you want to preserve the original filename? Why not give uploaded files uniformly unique names? In

[PHP] php ISA v.s. php CGI

2003-01-31 Thread Victor
What is the difference between PHP ISAPI filter and PHP CGI (which one would be better to install on IIS 5?) -thanks, - vic __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net

Re: [PHP] Socket error connecting to mySQL

2003-02-04 Thread victor
did u turn mysql on? end of mysql installation output: PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER ! This is done with: /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h CPE00022af118a5-CM024330008757.cpe.net.cable.rogers.com password 'new-passwo

[PHP] unexpected warnings - what do they mean? - phpMyAdmin - also postedon the phpMyAdmin mailing list...

2003-02-04 Thread victor
i am getting the following warnings after i try to inser data into some table cells i created. i have PHP Version 4.1.2 and MySQL 3.23.55. Apache 1.3.23. Redhat 7.3. oh, and i have php 4.3.0 installed, but i dont know how to make apche see it or use it. its ina different directory than the defa

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
they the default lines of code form phpMyAdmin the newest one stable. just installed it today, the lines are not modified they what the devs made them... - Vic Steve Keller wrote: At 2/4/2003 06:46 PM, you wrote: i am getting the following warnings after i try to inser data into some table c

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
r PHP Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: victor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 7:02 PM To: Steve Keller Cc: [EMAIL PROTECTED] Subject: Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also p

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
WHOHOO!!! probme solved! (read: worked around) i downloaded the older phpMyAdmin release and it worked perfectly! could this be a bug in phpMyAdmin? - Vic victor wrote: the error reportin value is marked specifically not to be touched, plus there are other things that are wroong like the

Re: [PHP] unexpected warnings - what do they mean? - phpMyAdmin - also posted on the phpMyAdmin mailing list...

2003-02-04 Thread victor
? why not? someone please help me run the new php, thanks - Vic John W. Holmes wrote: Is it a register_globals problem, then? ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: victor

[PHP] any windows php developers out here?

2003-02-08 Thread Victor
Hello, I am wondering if any of you got a reliable php and MySQL installation (MySQL is easy) I am mostly wondering if there is a point in tying to use windows as a development platform for PHP. I have a nice and working red hat 8.0 installation, but I did an upgrade from 7.3 and now apache doesn't

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
ess I al looking to finding out what I need to configure IIS to to get the ISAPI module to work, etc. -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 6:27 PM To: 'Victor'; [EMAIL PROTECTED] Subject: RE: [PHP] any windows php

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
How do I disable apache 2.0? -Original Message- From: Jason Sheets [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 6:33 PM To: Victor Cc: [EMAIL PROTECTED] Subject: Re: [PHP] any windows php developers out here? You can install PHP + Apache 1.3 on Windows pretty easily

RE: [PHP] How to uncompress PHP

2003-02-08 Thread Victor
I think it's tar -xvf -Original Message- From: —Ñ ŒbŒQ [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 8:26 PM To: [EMAIL PROTECTED] Subject: [PHP] How to uncompress PHP Hi, I am Lin. When I execute a command gzip -d php-4_3_0_tar.gz on the linux. The system show the

RE: [PHP] any windows php developers out here?

2003-02-08 Thread Victor
elopers out here? On Sat, 2003-02-08 at 20:18, Victor wrote: > How do I disable apache 2.0? In Windows, go to service->apache->manual start In GNU/Linux, chkconfig --level 35 httpd off -- __ / \\ @ __ __

RE: [PHP] Why does this happen?

2003-02-08 Thread Victor
Maybe you should rename them differently/ or make then into an array? -Original Message- From: CF High [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 10:52 PM To: [EMAIL PROTECTED] Subject: [PHP] Why does this happen? Hey all. Got a problem with I'm sure a simple solution:

RE: [PHP] any windows php developers out here?

2003-02-09 Thread Victor
olmes [mailto:[EMAIL PROTECTED]] Sent: Saturday, February 08, 2003 8:58 PM To: 'Victor'; [EMAIL PROTECTED] Subject: RE: [PHP] any windows php developers out here? > So I guess I al looking to finding out what I need to configure IIS to > to get the ISAPI module to work, etc. 1. Un

RE: [PHP] any windows php developers out here?

2003-02-09 Thread Victor
> So I guess I al looking to finding out what I need to configure IIS to > to get the ISAPI module to work, etc. 1. Unzip the php .zip file to C:\php\ 2. Copy c:\php\sapi\php4isapi.dll to c:\php\php4isapi.dll 3. Ensure the user IIS runs as, generally IUSR_, has read permissions to C:\php\ and al

[PHP] posix_kill process group

2003-08-10 Thread Victor
Hi. I am trying to use posix_kill(0, $signo); to signal children forked by the parent. All children seem to be in the processgroup of the parent, but sending either 0 or -10 does not seem to signal the children at all. What am I doing wrong? I even tried setting the process group (didn't affec

[PHP] count link clicks

2002-08-13 Thread victor
How do I count how many times a user clicks on a certain link? (and put it into and array or variable I guess). I want to be able to repeat a certain action on the same page as many times as the user clicks on the link($PHP_SELF). Thanks, - Vic ___

RE: [PHP] count link clicks

2002-08-13 Thread victor
I think I'm on the right track with: New paragraph '; // Isert form html into $data_fields variable $data_fields = ' New paragraph '; while ($i = $value) { echo $data_fields; } ?> The only problem is that it ru

RE: [PHP] count link clicks

2002-08-13 Thread victor
THANK YOU! THANK YOU! This does exactly what I need it to! I wish they thought me how to count at PHP kindergarten. - Vic -Original Message- From: Dave at Sinewaves.net [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 3:20 PM To: [EMAIL PROTECTED]; 'Rasmus Lerdorf'; 'vic' Cc:

[PHP] mysql error

2002-08-13 Thread victor
I get this error: Error submiting paragraph.You have an error in your SQL syntax near 'WHERE page_name='features' AND par_id='13' ' at line 1 But my code, I think is fine: // Insert the form information into the database mysql_query("INSERT INTO malibu_data SET heading='$heading', para

RE: [PHP] mysql error

2002-08-13 Thread victor
Yes, thank you very much, I shouldn$B!G(Bt code late at night without any caffeine in me. - Vic -Original Message- From: @ Edwin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 14, 2002 12:29 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] mysql error Looks like

[PHP] html parsing from html file through php

2002-08-14 Thread victor
Hello, I am making an app that read from an html file outputted by MS word (ya its for those people that need to make webpages but don't know how o write html) anyway, using MS word is a requirement; After the user saves their .doc file as a web page (now and htm file) the php will take that html

[PHP] P.S. html parsing from html file through php

2002-08-14 Thread victor
Actually I think there is even less work to be done, the paragraph spacing problem I talked about earlier can be avoided if I leave all that foobar tags and erase only: http://www.w3.org/TR/REC-html40";> Community <--[Need everything here]-> <- in there, not the

[PHP] file_get_contents ( string filename [, int use_include_path])

2002-08-14 Thread victor
Can someone explain me more abou the usage of this code: file_get_contents ( string filename [, int use_include_path]) I just got it from the annual, and I still don't get what they mean by string filename and int use_include_path Thanks, This has to do with the other question I posted ear

[PHP] how do i continue with ereg replace?

2002-08-14 Thread victor
I want to have the ereg_replace action happen many times before the result is echoed, how do I do this? The following is the code that I have that obviously is flawed because the later variable as afar as ai know cancels out the first one... $good = ereg_replace("", " ", $str); $good = ereg_repl

[PHP] frames and variables

2002-08-14 Thread victor
Has anyone here designed php sites that use a combination of php pages and html pages? What I want to know is how to pass a variable from nav_frame.php (at the top) to itself, AND to the data.php frame (lower frame, main body) I can pass variables to itself, (with the "?page_name=content.htm" t

[PHP] so nobody knows how do get rid of everything outside or certain tags?

2002-08-15 Thread victor
I asked this question a while ago, and I am still seeking clarification, I fooled with ereg_replace and they only do a piece of what I want, I would like to know how to keep only a chunk of text defined between 2 tags let's say, and and ignore everything else, I also have to search and replace c

RE: [PHP] so nobody knows how do get rid of everything outside or certain tags?

2002-08-15 Thread victor
Thanks, I tried this code first, and I wrote my script like this: // Original last tag // preg_match('!]+>(.*)!Uis',$str,$regs); $everything_between_divs=$regs[1]; $good = implode(' ', $everything_between_divs) or die ('Error 5'); $clean = ereg_replace("", " ", $regs[1]); echo $clean; ?>

[PHP] undefined offset && bad argument

2002-08-15 Thread victor
I get this error: Notice: Undefined offset: 1 in /home/victor/argilent-www/sites/malibu_place_2/index.php on line 104 Warning: Bad arguments to implode() in /home/victor/argilent-www/sites/malibu_place_2/index.php on line 106 Error 5 For this code: // Original last tag // preg_match

[PHP] good read on regular expressions

2002-08-15 Thread victor
What is a good read on general expressions that a php programmer should check out? I am trying to familiarize myself with them so that I can pars the silly ms word html pages. - Vic __ Post your ad for free now! http://pers

[PHP] i some more help on the whole ereg thingy please

2002-08-15 Thread victor
$regs) or die ('Error 5'); // This is for later use to edit the contents of stuff between // the div tags - if I get the div tags to ever work $clean = ereg_replace("", " ", $good); echo $clean; ?> it doesn't work, what do you think I'm doing wrong? I get thi

[PHP] and or statement

2002-08-28 Thread Victor
What is the "and" "or" statement in php? I need this to see if the first statement is whatever, and or the second statement is whatever... if (!isset($PHP_AUTH_USER) "and or" blah($blah)) {} Thank you - vic __ Post your fre

[PHP] PASSWORD()

2002-08-29 Thread Victor
Is PASSWORD() still usable? I used it in my scripts a while ago to encrypt and decript password strings that I stored into databases, but from some time all my scripts don't work (the login part) because I cannot do a mysql query like so: $sql = "SELECT * FROM users WHERE username = '$PHP_AUTH_U

[PHP] session_unregister - but w00t about the back button?

2002-08-29 Thread Victor
I can logout with session_unregister - but w00t about the back button? This is probably so trivial that it has been discussed before, if anyone has some knowledge or link at hand mind passing it on? Thanks. - Victor > www.argilent.

[PHP] session encode and session decode question

2002-08-30 Thread Victor
m I supposed to encode to get the variable from the session? - Victor > www.argilent.com __ Post your ad for free now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Re: session_unregister - but w00t about the back button?

2002-08-30 Thread victor
K, thanks, i will sort of realized this, but I was wondering if the user is silly enough to leave the browser window open then someone can press the back button and go back, I will probably write a message somewhere to tell the user to close the browser window. To the one who asked about the sess

RE: [PHP] Re: session_unregister - but w00t about the back button?

2002-08-30 Thread victor
somewhere are taking a nap. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: Friday, August 30, 2002 10:32 PM To: victor; 'Richard Lynch'; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: session_unregister - but w00t about the back button?

[PHP] calling sql results inoto variables

2002-08-31 Thread Victor
x27;s see... Ok, now I ende up with this code: for($i = 0; $i < sizeof($check); $i++) { # echo $i; echo ''; $data = $check[$i]; $db_data = ("SELECT * FROM mytable WHERE ID = '$check[$i]'"); $row = mysql_query($db_data); # $row = mysq

RE: [PHP] calling sql results inoto variables

2002-08-31 Thread victor
The silly me, I had an exit; inside the for loop and I was wondering why id only looped once, somebody slap me! - Victor > www.argilent.com -Original Message- From: Victor [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31, 2002 7:52 AM To: [EMAIL PROTECTED] Subject: [PHP] call

[PHP] newest entry in db

2002-08-31 Thread Victor
How can I use php to get the newest entry from mysql database? Ie, if I make a timestamp and then I want to retrieve the last timestamp I made how do I go about doing it? Any php or mysql documentation? - Victor > www.argilent.

[PHP] why do i get this error please tell me?

2002-08-31 Thread Victor
end repeat You have an error in your SQL syntax near 'order=1 WHERE ID='2'' at line 2 - Victor > www.argilent.com __ Post your ad for free now! http://personals.yahoo.ca -- PHP General Mailin

RE: [PHP] why do i get this error please tell me?

2002-08-31 Thread victor
Yep, figured it just now, thanks anyway, ahhh.. You'd thing they put reserved names right besides the damn mysql command in the manual. Alas it shall not be so. - Victor > www.argilent.com -Original Message- From: Chris Knipe [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31

[PHP] RE: [PHP-DB] RE: [PHP] why do i get this error please tell me?

2002-08-31 Thread victor
I meant besides the UPDATE or SELECT or any filed that those words might interfere with... - Victor > www.argilent.com -Original Message- From: Mark Charette [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 31, 2002 2:18 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP-DB]

[PHP] why is html code written like this?

2002-09-02 Thread Victor
When I learned html it was always written like this: now I see people write it like this: ... why? - Victor > www.argilent.com __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (h

RE: [PHP] why is html code written like this?

2002-09-02 Thread Victor
Ok, but is this kind of html compliant with old browsers like Netscape 4? Is it compliant with most new browsers? - Victor > www.argilent.com -Original Message- From: Adrian Murphy [mailto:[EMAIL PROTECTED]] Sent: Monday, September 02, 2002 7:13 AM To: [EMAIL PROTECTED]; [EM

RE: [PHP] Re: PHP checkbox/hidden field question

2002-09-02 Thread victor
Some check box info here too: http://www.experts-exchange.com/Web/Web_Languages/PHP/Q_20117420.html - Victor > www.argilent.com -Original Message- From: Marek Kilimajer [mailto:[EMAIL PROTECTED]] Sent: Monday, September 02, 2002 7:24 AM To: PHP Subject: Re: [PHP] Re: PHP check

[PHP] help, array values echoed as Array on loop!

2002-09-02 Thread Victor
=> 15 => 16 => 17 etc... why does it echo as Array? - Victor > www.argilent.com __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] help, array values echoed as Array on loop!

2002-09-02 Thread Victor
Thank you, I figured it out 30 seconds after I posted the question, you were right about the problem. - Victor > www.argilent.com -Original Message- From: Chris Wesley [mailto:[EMAIL PROTECTED]] Sent: Monday, September 02, 2002 4:11 PM To: 'PHP' Cc: Victor Subject: R

[PHP] ftp question

2002-09-02 Thread Victor
I took the scriopt from php manual and adapted it to my needs, but I get an error: Warning: ftp_put(): user_pictures/vic/: No such file or directory in /home/victor/argilent-www/sites/kodak/upload_picture.php on line 103 This is the code: # set up basic connection $conn_id

RE: [PHP] Re: ftp question

2002-09-02 Thread victor
with a folder I create as me to see if I can write to it. - Victor > www.argilent.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, September 02, 2002 9:46 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: ftp question Hi, Your script upload the file

RE: [PHP] Re: Session problem

2002-09-03 Thread victor
might want to do this instead of haven people press the back button. - Victor > www.argilent.com -Original Message- From: Erwin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 6:19 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: Session problem > I am using session_start

[PHP] continuation to the ftp story

2002-09-03 Thread Victor
The problem with my other php - well - problem was that the destination and file variables were reversed, I think, no I changed them, but I get this error when I try to ftp a file to a server: Warning: ftp_put(): error opening /home/victor/sites/kodak/user_pictures/vic Can user permissions

RE: [PHP] Uploading file

2002-09-03 Thread victor
tell you most things about php and some things about web server and dbs - Victor > www.argilent.com -Original Message- From: Clemson Chan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 4:04 PM To: [EMAIL PROTECTED] Subject: [PHP] Uploading file Hi, I am new to t

RE: [PHP] ftp_put

2002-09-03 Thread victor
Well I'm having the same problem... no useful suggestions from ME yet. :) - Victor > www.argilent.com -Original Message- From: Jason Romero [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 03, 2002 5:13 PM To: [EMAIL PROTECTED] Subject: [PHP] ftp_put I am having problems

[PHP] emacs on win32

2002-09-04 Thread Victor
This is somewhat php related: how do you get syntax highlighting and coloring (whatever) for php in the windows version of emacs? - Victor > www.argilent.com __ Post your free ad now! http://personals.yahoo.ca --

RE: [PHP] ending a session

2002-09-05 Thread victor
ty much take care of everything as far as I know. - Victor > www.argilent.com -Original Message- From: Raphael Hamzagic [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 5:32 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] ending a session Of course Gurhan, I have read all the php m

RE: [PHP] Re: ftp_put

2002-09-05 Thread victor
take it directly from the users computer through form? - Victor > www.argilent.com -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 9:34 PM To: Jason Romero Cc: [EMAIL PROTECTED] Subject: [PHP] Re: ftp_put >I am having problems

[PHP] $_GLOBAL["var"] or $_GLOBAL['var'] or $_GLOBAL[var]; ???

2002-09-22 Thread Victor
$_GLOBAL["var"] or $_GLOBAL['var'] or $_GLOBAL[var] - I noticed that in a mysql statement you can only use: $_GLOBAL[var]. I would like to get the advice of more experienced php programmers out there about this. Which one of the above it the "most best&

[PHP] ftp_problem - ... php_network_getaddresses: getaddrinfo failed: ...

2002-10-25 Thread victor
s), so where to now??? - Victor | www.argilent.com __ Post your free ad now! http://personals.yahoo.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] File sharing

2001-10-24 Thread Victor
I'm trying to access an object as a Singleton. Here is the source code I'm using. The problem is that the member objFile from the $test variable is set to an open file in the class constructor. It works fine, but when I recover it from the memory, the file handler gets lost in starts being consid

[PHP] text string in a gif

2001-04-07 Thread Victor
) is that when I use a string which contains a blank eg "My text" the text of the button looks like "My%20TEXT" :-( How can I fix it?? TIA, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

[PHP] newbie question about variables

2001-04-08 Thread Victor
RTFMs ;-)) are wellcome. Best regards, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Why create_element function always return false?

2007-05-04 Thread Victor
l_version() ). OS is Windows XP. Would someone help me ,please? Thanks a lot. Victor. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SNMP PLEASE HELPP!!!!!!!!!!

2004-03-30 Thread Victor
"; } ?> This is my code and i recieve a huge list. Some of it i understand but i can't understand the OID part and all the ips there. Can you please help me Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] My first post

2002-12-03 Thread Victor Espina
Hi. I'm new in PHP. Could you point me where can i download a sample script about how can i paginate some results? TIA -- == Victor J. Espina S. Gerente de Desarrollo / Software Development Manager Software de Venezuela, S.A. Caracas, Vene

Re: [PHP] My first post

2002-12-04 Thread Victor Espina
Thank you a lot! That is exactly what i was looking for. -- == Victor J. Espina S. Gerente de Desarrollo / Software Development Manager Software de Venezuela, S.A. Caracas, Venezuela Email: [EMAIL PROTECTED] Personal site: http

Re: [PHP] My first post

2002-12-04 Thread Victor Espina
guage, with a great OOP implementation, an elegant sintax, a lot of native functions and the mos important: REALLY FAST!! So, you can bet you will see me here a lot, bothering you with stupid questions! :-) -- == Victor J. Espina S. Gerente de Desar

[PHP] Problem with functions

2002-12-04 Thread Victor Halla
Hi, I have de following code for example If I call the funcion test(), echo print nothing what's is going on ? []´s [EMAIL PROTECTED] __ Victor Halla ICQ#: 114575440 Current ICQ status: + More ways to conta

Re: [PHP] Problem with functions

2002-12-04 Thread Victor Halla
Thanks !!! Victor "Tom Rogers" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > Thursday, December 5, 2002, 9:15:53 AM, you wrote: > VH> Hi, > > VH> I have de following code for example > > >

RE: [PHP] HELP PLEASE ! Need PHP Advice !!!

2003-02-27 Thread Victor Stan
First of all, are they paying you to automate or to repurpose the content for the web? Taking a page designed for print and then "automating" it into a page for the web is the wrong approach, your problem is not technical it is a design problem. Technically it is easy, I think, does Quark not have

[PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
I get these errors from a simple "session_start();" script. Warning: session_start() [function.session-start]: open(/tmp\sess_f4aa3ef3c537bb6327d5e7b991e91be7, O_RDWR) failed: No such file or directory (2) in c:\inetpub\wwwroot\picoblog\admin.php on line 2 Warning: session_start() [function.sessi

RE: [PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
ed? - Vic -Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 10:23 AM To: Victor Stan; [EMAIL PROTECTED] Subject: Re: [PHP] PHP on IIS session problems > I get these errors from a simple "session_start();" script. > > Warning: sess

RE: [PHP] PHP on IIS session problems

2003-03-03 Thread Victor Stan
K, thanks, I tried stopping just the web sites from the control panel, but I guess I had to stop the whole thing and restart. - Vic -Original Message- From: 1LT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 11:07 AM To: Victor Stan; [EMAIL PROTECTED] Subject: Re

[PHP] Re: PHP Session register variable not always restored with contents

2002-10-24 Thread Victor Soroka
I have same troubles!!! I use php internet trade traffic system, and 10-20% of visitors lose their sessions data. Cut from logs: Remote address: ## Referer: http://mydomain.com/ URI: /out.php?id=1&PHPSESSID=235a91cef853e750a6b67a70375e7d88 User-agent: Mozilla/4.0 (compatible; MSIE 5.5; Win

RE: [PHP] Re: PHP Session register variable not always restored with contents

2002-10-26 Thread Victor Soroka
On Thu, 24 Oct 2002 21:26:30 +, John W. Holmes wrote: > What is supposed to be in the session? Maybe these users are just > denying cookies? Maybe... But my php compiled with --use-trans-sid and use this feature. In the session i store account, access timestamp etc... P.S. And 10% of traffic

[PHP] BUG with session trans sid ?

2002-11-13 Thread Victor Soroka
I have tried to disable cookies and got strange behavior of PHP 4.0.6. So, I use php4.0.6 in default redhat installation. My code: ini_set('session.use_cookies', FALSE); ini_set('session.use_trans_sid', TRUE); ini_set('session.save_handler', 'user'); Then I set my own session handlers and start

Re: [PHP] multiple replaces...

2002-01-12 Thread Victor Boivie
quot;, "bar" => "banana"); $string = "I like foos and bars"; $string = strtr($string, $foo); echo $string; output: I like apples and bananas // Victor - Original Message - From: "'Nick Wilson'" <[EMAIL PROTECTED]> To: <[E

Re: [PHP] RANT: Why doesn't PHP have built-in support for dynamic image generation?

2002-02-03 Thread Victor Boivie
gick is so much easier to install than GD, and it's a lot better too. // Victor. - Original Message - From: "Weston Houghton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, February 03, 2002 8:45 AM Subject: Re: [PHP] RANT: Why doesn't PHP have

[PHP] Failed to compiled w/ T1lib

2002-04-27 Thread Victor Boivie
p/www/apache_1.3.24. Any ideas? It worked good before I installed t1lib and messed around with it. Thanks in advance, Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can anyone help me save img from URL?

2002-05-16 Thread Victor Polyushko
Hi, I was wondering if someone knows how to save the image from the given url http://domain.com/image.gif into a file on a local machine Any suggestion will be greatly appreciated. Thank you in advance Victor Polyushko

Re: [PHP] Can anyone help me save img from URL?

2002-05-16 Thread Victor Polyushko
fread() and it does not allow me to accomplish that :-(( Have you guys ever come across such a problem? Again thank you very much for your suggestions Best Regards, Victor Polyushko - Original Message - From: "Robert Cummings" <[EMAIL PROTECTED]> To: "Miguel Cr

Re: [PHP] Done w/ PHP - VB or C# ?

2002-05-16 Thread Victor Polyushko
Does anyone know if there is any global reliable and free :-) statistics on usage of PHP vs ASP. I am having the same dilemma., do I need to stick to going deeply into PHP (which in my opinion rulez!!) or start paying more attention to ASP... Best Regards, Victor Polyushko - Original

Re: [PHP] Can anyone help me save img from URL?

2002-05-16 Thread Victor Polyushko
BINGO!! thank you guys for your input I used a very simple command to accomplish that and it works!! http://domain.com/images/somepic.gif";; system( $command, $result); echo $result; ?> Victor Polyushko - Original Message - From: "Robert Cummings" <[EMAIL PR

Re: [PHP] Done w/ PHP - VB or C# ?

2002-05-16 Thread Victor Polyushko
hmm.. good question, I guess number of active job openings will be the best measure :-)) (or websites using PHP vs ASP) - Original Message - From: "Miguel Cruz" <[EMAIL PROTECTED]> To: "Victor Polyushko" <[EMAIL PROTECTED]> Cc: "Php" <[EMA

[PHP] Validating forms and showing errors

2002-05-26 Thread Victor Boivie
it can hightlight the bad fields. I don't want to stick it in the URL since it would be too ugly, but I do have session variables I can stick them in. Is this the way to go? Or is there a better solution? I guess many of you have fought with this before so I know you can help me ;) Than

[PHP] Problems with maximum execution time

2002-03-09 Thread Victor Usjanov
- [09/Mar/2002:10:30:44 +0100] "POST /mail/src/redirect.php HTTP/1.1" 302 0 my_hostname - - [09/Mar/2002:10:30:44 +0100] "GET /mail/src/webmail.php HTTP/1.1" 200 204 my_hostname - - [09/Mar/2002:10:30:46 +0100] "GET /mail/src/right_main.php HTTP/1.1" 200 15956 Someone

Re: [PHP] FORM with a posting value

2001-04-08 Thread Victor Gamov
and so on. When you submit this form the $images array will be set and sizeof($images) == 1. -- CU, Victor Gamov -- 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]

  1   2   3   >