[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: ?php $i = $value++; // Show first link echo 'a href='.$PHP_SELF.'?add_form='.$value.' New paragraph /a /font'; // Isert form html into $data_fields variable $data_fields = 'html html blah blah a

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'

[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',

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: html xmlns:o=urn:schemas-microsoft-com:office:office xmlns:w=urn:schemas-microsoft-com:office:word

[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

[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(o:p/o:p, , $str); $good =

[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

[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, div and /div and ignore everything else, I also have to search and

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: ?php $file_name = $page_name.$ext or die ('Error 2'); $file = file($path.$file_name) or die ('Error 3'); $str = implode(' ', $file) or die ('Error 4'); // Original first tag //div class=Section1 // Original last tag ///div

[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: ?php $file_name = $page_name.$ext or die

[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!

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

2002-08-15 Thread victor
: 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 Thanks, - Vic __ Post your ad

[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 free ad

[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] 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.com

[PHP] session encode and session decode question

2002-08-30 Thread Victor
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: http://www.php.net

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

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

2002-08-30 Thread victor
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? If you were REALLY concerned

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] calling sql

[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.com

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

2002-08-31 Thread Victor
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 Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

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, 2002 1

[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] RE

[PHP] why is html code written like this? hr /

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

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

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]; [EMAIL

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 checkbox

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

2002-09-02 Thread Victor
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: Re: [PHP] help, array

[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
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 to /home/victor/argilent-www

[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
? phpinfo(); ? 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

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 getting

[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 -- PHP

RE: [PHP] ending a session

2002-09-05 Thread victor
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 manual. How can I send

RE: [PHP] Re: ftp_put

2002-09-05 Thread victor
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 getting

[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 way to write? - Victor www.argilent.com

[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

[PHP] text string in a gif

2001-04-07 Thread Victor
I have (and for me it is really big) 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] F

[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] 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

[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

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

[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
, 2003 5:12 PM To: Victor Cc: [EMAIL PROTECTED] Subject: Re: [PHP] + in filenames Some sample code would help, but maybe try urldecode('$filename'); RW Quoting Victor [EMAIL PROTECTED]: ### I have a file upload field, and some filename checking code, but it ### breaks the code whenever a + is inside

RE: [PHP] + in filenames

2003-01-25 Thread Victor
: 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 other

[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

[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

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

[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

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

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

2003-02-04 Thread victor
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 posted

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

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

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

2003-02-08 Thread Victor
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 developers out

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 name -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

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

2003-02-08 Thread Victor
-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 -- __ / \\ @ __ __@ Adolfo Bello [EMAIL PROTECTED] / // // /\ / \\ // \ // Bello

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

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

2003-02-09 Thread Victor
[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. Unzip the php .zip file

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_computer_name, has read permissions to

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

2002-10-25 Thread victor
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] 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:

[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] SNMP PLEASE HELPP!!!!!!!!!!

2004-03-30 Thread Victor
? $a = snmpwalk(216.18.74.170, public, ); for($i=0; $i551; $i++) { print $a[$i]; print br; } ? 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

[PHP] Why create_element function always return false?

2007-05-04 Thread Victor
domxml_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] PHP forms

2001-01-31 Thread Victor Hamutenya
Hi, my name is Victor from Namibia, I do web development with PHP, I hapenned to find your email address on one of the PHP sites on the Net, as one of the contributors on the PHP notes. Can you please, if it is possible, tell me how to write in a form field with PHP script. Like

Re: [PHP] multiple replaces...

2002-01-12 Thread Victor Boivie
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: [EMAIL PROTECTED] Sent: Saturday, January 12, 2002 1:17 PM Subject: Re: [PHP] multiple replaces

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

2002-02-03 Thread Victor Boivie
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 built-in support for dynamic image generation

[PHP] Problems with maximum execution time

2002-03-09 Thread Victor Usjanov
] 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 got any ideas about what can be wrong ? Thank you in advance -- Victor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Failed to compiled w/ T1lib

2002-04-27 Thread Victor Boivie
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
() 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 Cruz [EMAIL PROTECTED] Cc: Victor

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!! ? $command=wget http://domain.com/images/somepic.gif;; system( $command, $result); echo $result; ? Victor Polyushko - Original Message - From: Robert Cummings [EMAIL PROTECTED

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 [EMAIL PROTECTED] Sent: Thursday, May 16, 2002 5:11 PM

[PHP] Validating forms and showing errors

2002-05-26 Thread Victor Boivie
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 ;) Thanks in advance, Victor -- PHP

[PHP] Detect if javascript is enabled

2001-09-20 Thread Ole Victor
Hi, Does anyone know a simple trick to get PHP detect if the user's browser has javascript enabled? -- Olé -- 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] Re: [PHP-DB] .htpasswd?

2001-02-04 Thread Victor Foitzik
your needs. Another way to do this directly with MySQL is to use the apache auth_mysql module which allows you to store authentication data in a MySQL DB. See http://mysql.com/downloads/contrib.html and http://httpd.apache.org/docs/misc/FAQ-G.html for more info. HTH Victor -- PHP General Ma

Re: [PHP] FORM input type=image ... with a posting value

2001-04-08 Thread Victor Gamov
=image name=images[3] ... /FORM 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-ma

Re: [PHP] nested objects

2007-12-07 Thread Victor Matherly
Thanks that fixed it. That was so simple no wonder I was banging my head on the wall :-). - Original Message - From: Cesar D. Rodas [EMAIL PROTECTED] To: Victor Matherly [EMAIL PROTECTED] Sent: Friday, December 7, 2007 2:37:23 PM (GMT-0500) America/New_York Subject: Re: [PHP] nested

Re: [PHP] nested objects

2007-12-07 Thread Victor Matherly
Actually it is academic intro to OO programing, the overkill html was just helping me understand the concept. Now I can put it to good use :-). - Original Message - From: Jochem Maas [EMAIL PROTECTED] To: Victor Matherly [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Friday

[PHP] nested objects

2007-12-07 Thread Victor Matherly
; }//end setContent function } //end TableCell class ? Victor J. Matherly Technical Services Wave Communications, Inc http://www.wave-communications.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Session timeout

2007-12-13 Thread Victor Matherly
configuring php.ini. I know i will have to write code to do whatever when the session expires... Thank you in advance -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Victor J. Matherly Technical Services Wave Communications, Inc http://www.wave

[PHP] php5 built-in soap - apache performance wsdl generation

2005-07-14 Thread Victor Alvarez
it. I gave a try to Webservice Helper (jool.nl) and I didn't find the result convenient for my purpose. Is there any simple and useful tool to automatic generate the wsdl? I finally did it manually from scratch. Thank you very much in advance. Kind regards, Victor.

[PHP] how to install phpize and php-config?

2005-07-25 Thread Victor Alvarez
/php? Thanks in advance, Victor.

[PHP] wsdl cache?

2005-08-15 Thread Victor Alvarez
not able to update it! Could anybody explain me why and how could I avoid this problem? Thanks. Kind Regards, Victor.

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
, 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 Desarrollo

[PHP] Problem with functions

2002-12-04 Thread Victor Halla
Hi, I have de following code for example ?php $username = victor; function test() { echo $username; } ? If I call the funcion test(), echo print nothing what's is going on ? []´s [EMAIL PROTECTED] __ Victor Halla

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 VH ?php VH $username = victor; VH function test() { VH

  1   2   3   >