RE: [PHP] Re: ARRAY, IF INSERT

2002-06-21 Thread César Aracena
:56 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP] Re: ARRAY, IF INSERT (i am new to these groups, but shouldn't there be a follow-up-to on a X-post?) César aracena wrote: I have this form in which one Administrator can insert new members and after that, in another page

RE: [PHP] recommend any good learning books

2002-06-21 Thread César Aracena
Hi. I started with PHP and MySQL from scratch (not knowing serious programming before) a couple of months ago with the books PHP4 A beginner's Guide written by Bill McCarty (Osborne) and PHP and MySQL Web Development written by Luke Welling and Laura Thomson (SAMS). The first one, covers I think

[PHP] Installing Syncronizing

2002-06-20 Thread César Aracena
Hello all, I have this client who has a T connection and would like to run a PHP / MySQL based program in local mode, but also be able to make the data available from the web but hosted in a remote server… kinda strange u think? Me too… The problem is that his server doesn’t run with IIS but

[PHP] Incoming Development

2002-06-18 Thread César Aracena
Hi all, All of you, who have read any of the posts I’ve made in the past, may have noticed that I’m really new to PHP and RDBM. Well, now I have the chance of making a great web site and would like it to be my “personal signature” in the future, so I would really like to do it right. Also, I

RE: [PHP] Incoming Development

2002-06-18 Thread César Aracena
handler or http authentication??? -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 11:23 PM To: php Subject: Re: [PHP] Incoming Development on 19/06/02 9:35 AM, César Aracena ([EMAIL PROTECTED]) wrote: b) An area where

RE: [PHP] Incoming Development

2002-06-18 Thread César Aracena
PROTECTED]] Sent: Tuesday, June 18, 2002 11:57 PM To: César Aracena; 'php' Subject: Re: [PHP] Incoming Development Each to their own, but I believe sessions will make it easier for you to know who they are from page to page, for example when they post into a forum or ask a question, it's all based

RE: [PHP] disable ability to download image?

2002-06-18 Thread César Aracena
The only way I've found of doing this, is using thumbnails. Obviously it doesn't serve all kinds of purposes, but no matter what kind of protection you use, a user can simply Save Web Page and open the image as local in the machine. The things about thumbnails, is that you show the image but in

RE: [PHP] Session problems based on browser?

2002-06-18 Thread César Aracena
Hi all. I'm having the same problem when developing a site with a flash animation inside. Let's say I'm seeing the page, I change the flash background color, save the flash animation again and refresh the page... nothing happens. I found out that is a problem of configuration of my IE. If I go

[PHP] Extracting Time??

2002-06-16 Thread César Aracena
Hi all and sorry for bothering again. I need to fetch one time and date from a MySQL DB where is stored as TIMESTAMP (MMDDHHMMSS) to print it in a page but in common format (DD MM at HH:MM:SS). Actually, I don’t care ‘bout the st, nd and th extensions after the day. Thanks for any help

[PHP] RE: [PHP-DB] Extracting Time??

2002-06-16 Thread César Aracena
+54.299.4466621 -Mensaje original- De: César Aracena [mailto:[EMAIL PROTECTED]] Enviado el: Domingo, 16 de Junio de 2002 05:12 a.m. Para: PHP General List; PHP DB List Asunto: [PHP-DB] Extracting Time?? Hi all and sorry for bothering again. I need to fetch one time and date from

RE: [PHP] Can I use a template with this site?

2002-06-15 Thread César Aracena
Hi Ian, I don't know if I'm getting the hole idea of what you're looking for, but here's something. I'm using a schema that was written by Ying Zhang for the myMarket PHP application which is like this: a) One main file which holds all the site's configurations, like DB settings and golbals (OO

RE: [PHP] Advanced User Authentication

2002-06-14 Thread César Aracena
(valid_admin)) { // do admin stuff } else if (session_is_registered(valid_user)) { // do users stuff } else { // prompt for login // this is still what's showing!!!??? } [snip] César Aracena IS / MCSE+I Neuquén, NQN (0299) 156-356688 (0299) 446-6621 -Mensaje original- De: Miguel Cruz [mailto

RE: [PHP] Advanced User Authentication --- solved

2002-06-14 Thread César Aracena
French [mailto:[EMAIL PROTECTED]] Enviado el: Viernes, 14 de Junio de 2002 03:29 a.m. Para: César Aracena Asunto: Re: [PHP] Advanced User Authentication This is a reasonably in-depth topic, and I don't have any experience with the book in question, but here's some code to follow. Please

RE: [PHP] Editor

2002-06-13 Thread César Aracena
you need them. These tool buttons can even create the starting and the closing tags for each string. Two thumbs up... Only problem is, that is not WYSIWYG. César Aracena IS / MCSE+I Neuquén, NQN (0299) 156-356688 (0299) 446-6621 -Mensaje original- De: Daniele Baroncelli [mailto:[EMAIL

[PHP] Advanced User Authentication

2002-06-13 Thread César Aracena
Hi all, I’m trying to make a somehow “advanced” user authentication system fro my own web site. What I’m using as a model example, is the authentication system explained by Luke Welling Laura Thomson in their book “PHP and MySQL Web Development”. In the book, they explain how to make apparently

[PHP] Advanced User Authentication

2002-06-13 Thread César Aracena
Hi all, I’m trying to make a somehow “advanced” user authentication system fro my own web site. What I’m using as a model example, is the authentication system explained by Luke Welling Laura Thomson in their book “PHP and MySQL Web Development”. In the book, they explain how to make apparently

[PHP] Querying for MAX

2002-06-12 Thread César Aracena
I’m sorry if this mensaje is posted twice. I sent it yesterdays, but then my ISP had problems with e-mail and I lost dozens of them and don’t know if sent OK. Hi all, What I’m trying to do here is not inside PHP nor MySQL books I have. I need to query the DB to look the max result in a column.

RE: [PHP] Querying for MAX

2002-06-12 Thread César Aracena
Thanks Natalie Ed. This Works just fine. What I want to do, is let a person subscribe new affiliates without having to look up what the last affiliate's number was and show the next one in the new affiliate form. César Aracena IS / MCSE+I Neuquén, NQN (0299) 156-356688 (0299) 446-6621

[PHP] RE: [PHP-DB] Re: Querying for MAX

2002-06-12 Thread César Aracena
When I try to use this SELECT MAX(column) AS amount FROM table; with PHP, the result I get is always: Resource id #2 and not the number I expect... but if I run this at the mysql command line, it shows the expected number/value. What is that? César Aracena IS / MCSE+I Neuquén, NQN (0299) 156

RE: [PHP] Re: Querying for MAX

2002-06-12 Thread César Aracena
When I try to use this SELECT MAX(column) AS amount FROM table; with PHP, the result I get is always: Resource id #2 and not the number I expect... but if I run this at the mysql command line, it shows the expected number/value. What is that? César Aracena IS / MCSE+I Neuquén, NQN (0299) 156

RE: [PHP] Querying for MAX -- solved

2002-06-12 Thread César Aracena
of you who helped me. César Aracena IS / MCSE+I Neuquén, NQN (0299) 156-356688 (0299) 446-6621 -Mensaje original- De: John Holmes [mailto:[EMAIL PROTECTED]] Enviado el: Miércoles, 12 de Junio de 2002 08:51 p.m. Para: 'César Aracena'; 'PHP DB List'; 'PHP General List' Asunto: RE: [PHP

<    1   2