[PHP] Reload a page when a user press the back button

2001-08-16 Thread Mauricio T?llez Jim?nez
Hi all, I don't know if this is a PHP related question, but here it is: I'm developing a PHP / MySQL site, and, in one page the admin of the site has the power to add categories to the database in a input type=text field. To check if the entry is already set, there is a select control with all

Re: [PHP] Sorry... but a good PHP editor for Linux/Unix

2001-08-01 Thread Mauricio T?llez Jim?nez
I think EMACS is the best choice for any language you like. Just install de php suport for EMACS. Bye On Tue, Jul 31, 2001 at 11:07:14PM -0300, Augusto Cesar Castoldi wrote: Sorry about talking about this subject, but a really wanna know if any one nows a good editor for linux/unix.

Re: [PHP] a goog whatever you want editor

2001-07-19 Thread Mauricio T?llez Jim?nez
What about Emacs? I think this is the most powerful, configurable and extensible. Not only good with PHP, but also pretty good for any programming language (C, C++, Java, Ada, Assembly, HTML, etc). You can compile your programs from Emacs, and even debug them. Also have a lot of add-on like

[PHP] Loading values from a select tag

2001-07-18 Thread Mauricio T?llez Jim?nez
Hi all, I want to print all the text stored in a select tag. For example: select name=my_select option value=1Hello option value=2World option value=3Again!!! /select This is the final select, but is created dinamically with javascript. So when the sumbit button is pressed, I want that my php

Re: [PHP] Secure Access to Remote MySQL DB

2001-07-18 Thread Mauricio T?llez Jim?nez
I think that SSL is the more transparent choice. Cheers. On Wed, Jul 18, 2001 at 11:38:19AM -0600, Matthew Aznoe wrote: Greetings, I am developing an application that will access a MySQL database remotely from another server. I would like to be able to use a standard database connection

Re: [PHP] new lines in text fields

2001-07-06 Thread Mauricio T?llez Jim?nez
Hi, I don't know what is exactly what you want to do, but I have a page with a textarea tag, and a mySQL database with a TEXT field, that way I can use newline breaks. Bye. On Fri, Jul 06, 2001 at 04:06:58PM +0100, Mat Marlow wrote: Hi all, I am in desperate need for a solution to HTML text

Re: [PHP] Suggest Table Structure

2001-07-05 Thread Mauricio T?llez Jim?nez
Hi, you have to break your table in pieces and create tables for items that occur more than once. For example: CREATE TABLE articles ( ID int(6) NOT NULL auto_increment, id_category UNSIGNED INT REFERENCES category, HEADING varchar(30) NOT NULL DEFAULT '' , BODY longblob , ...) CREATE TABLE