[PHP-DB] Form question.......

2002-09-04 Thread Rodrigo
...clickin in submit and then make the conditionshelp heheheh Rodrigo Corrêa [EMAIL PROTECTED] Obs: Sorry about the english, i´m from Brazil...so my english isn´t good

[PHP-DB] I need some information!!!

2002-09-25 Thread Rodrigo
Does anyone know any good scripts for authentication in a site or have specials tips to say.i´m using sessions, but do i have to use session before or after the login page??? Rodrigo Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED

[PHP-DB] Session understanding

2002-09-26 Thread Rodrigo
but i don´t knowthnaks a lot for the help. Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP-DB] Table question....

2002-10-03 Thread Rodrigo
Hi people, is there a way to print a table with the background switching colors??? like one blue, the next black, blue, black... thanks in advance... Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP-DB] Function help....

2002-10-03 Thread Rodrigo
? Equipe Pratic Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP-DB] MySql problem..............

2002-10-15 Thread Rodrigo
is a Paradox 4 ANSI INTL850. am i fried?? ? $conexao = odbc_connect(rodrigo,,) or die(); $query = odbc_exec($conexao,Select * from clientes) or die(); include(link_db_pratic.php); $delete = mysql_query(delete from cli); while (odbc_fetch_row($query)) { $clirep = odbc_result($query,1

[PHP-DB] Help with Date

2002-11-21 Thread Rodrigo Corrêa
Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP-DB] Help with MySQL

2002-12-30 Thread Rodrigo Corrêa
I´m new with MySQL, i´m just wondering if there is a way to get the IP from a MySQL Server, since i acess this by localhost in the webserver Equipe Pratic Sistemas Rodrigo Corrêa Fone

[PHP-DB] Help with date....

2003-01-07 Thread Rodrigo Corrêa
Sistemas Rodrigo Corrêa Fone: (14) 441-1700 [EMAIL PROTECTED] [EMAIL PROTECTED]

[PHP-DB] Hello

2003-12-16 Thread Rodrigo Kochenburger
Hi everybody, i'm new in this list, so let me introduce my self. My name is Rodrigo and i'm from brazil, so sorry if my english isnt correct. let me know know if there's anothers brazilians here. And i'd like to starting using this to ask about some tutorial or something like that to help me

RE: [PHP-DB] timestamp problem

2004-11-18 Thread Rodrigo Cabeceiras
()); $data_func=$curdate[year].- .$curdate[mon].- .$curdate[mday] ; return $data_func; } function quiet_time_stp_hora(){ $curdate=getdate(time()); $hora_func = $curdate[hours].:.$curdate[minutes].:.$curdate[seconds]; return $hora_func; } Rodrigo

Re: [PHP-DB] save as you type

2004-12-12 Thread Rodrigo Kochenburger
wasn't submited yet, it will ask to apply. Rodrigo K -Original Message- From: Matthew Perry [mailto:[EMAIL PROTECTED] Sent: 12 December 2004 05:12 To: [EMAIL PROTECTED] Subject: [PHP-DB] save as you type Is there a way to make an input box save data into a database as users type? My users

[PHP-DB] php and serial port

2005-03-15 Thread Rodrigo Cabeceiras
hi can php interact whit a serial port, (example com1 - modem) and exchange info whit a modem(hayscommand) ? has any one tried ? thks rodrigo --- [This E-mail scanned for viruses by Declude Virus] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP-DB] ODBC Problem

2005-10-10 Thread Rodrigo Haces
to make a test with the isql shell program, i connect and ask for the same query and in shell it returns the correct characters. If someone can help me please i'll apretiate. Thanks rodrigo -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] pg_fetch_array and composite fields

2011-01-10 Thread Rodrigo Dias
Hello all! I'm trying to print only one value from a composite field: while ($row = pg_fetch_array($result,NULL,PGSQL_ASSOC)) { if (isset($row[indef_tam])) { echo Sizes: .$row[indef_tam]; // this shows me the three values from the composite field as a string (e.g. '(100,50,150)' ) echo

[PHP-DB] Realtime connection to postgres database

2020-10-25 Thread Rodrigo Sánchez
1, postgresql 9.6.19) -- ++++++++ Rodrigo Sánchez-Olavarría CSN, Centro Sismologico Nacional Universidad de Chile Celular : +56 9 42137243 -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DB] Realtime connection to postgres database

2020-11-09 Thread Rodrigo Sánchez
to refresh the web page by clicking on the browser) Is there a way to do it ? Rodrigo Sánchez CSN, UCH -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] PHP ERP Applications Need Suggestions????

2010-06-28 Thread Adriano Rodrigo Guerreiro Laranjeira
Hello! You should look at same good stable ERP's PHP based, and start your new project from one of them. By example: * BlueErp * Dolibarr * GNU Enterprise * WebERP Cheers, Adriano Laranjeira. On Mon, 28 Jun 2010 17:17:26 +0530 Mohamed Hashim nmdhas...@gmail.com wrote: *Hello everyone,*

Re: [PHP-DB] auto_increment

2010-09-07 Thread Adriano Rodrigo Guerreiro Laranjeira
Hey friend! I can't see another way to fix your table without a processing (like a stored procedure, script, etcetera). But I believe there is a workaround, which involves a creation of another table. See this: mysql CREATE TABLE stats2 LIKE stats; mysql ALTER TABLE stats2 ADD COLUMN id INT

Re: [PHP-DB] auto_increment

2010-09-08 Thread Adriano Rodrigo Guerreiro Laranjeira
Hello! I didn't use any DROP statements. Do exactly as following: mysql CREATE TABLE stats2 LIKE stats; mysql ALTER TABLE stats2 ADD COLUMN id INT NOT NULL AUTO_INCREMENT, ADD PRIMARY KEY(id); mysql INSERT INTO stats2 SELECT *, 0 FROM stats ORDER BY The first line copies the structure of

Re: [PHP-DB] CSV to MyDB

2011-02-25 Thread Adriano Rodrigo Guerreiro Laranjeira
Hey friend! You can create a DB table with the same structure of your CSV and store it like a normal table, using the mysqlimport command: http://dev.mysql.com/doc/refman/5.5/en/mysqlimport.html In this way, you can do SELECT's and all DML commands. If you want to store the file as you

Re: [PHP-DB] Prepared Statements # of rows

2011-03-04 Thread Adriano Rodrigo Guerreiro Laranjeira
Hey friend! You can use the PDOStatement::RowCount, but there is a problem (extracted from the PHP Manual, http://php.net/manual/en/pdostatement.rowcount.php): PDOStatement-rowCount - Returns the number of rows affected by the last SQL statement. If the last SQL statement executed by the

Re: [PHP-DB] ORDER BY relevance DESC query

2011-04-12 Thread Adriano Rodrigo Guerreiro Laranjeira
Hey friend. The problem is here: ( SELECT `reference`, `organization` FROM `ministry_profiles`... In a subselect, you must select just one column. You are selecting two reference and organization. If you really need both, so you must do two subselects: one for reference and another for