Re: [PHP-DB] short text strings with apostrophes and forms

2006-04-20 Thread Luis Morales
e data from the db you can use: $mycol_value = html_entity_decode ($myCol); $mycol_value: is the value from html form $myCol: is the name of your colum's table to update in your query. Good luck, Regards, Luis Morales On Thu, 2006-04-20 at 17:56 +0200, Jeffrey wrote: > I have an app

Re: [PHP-DB] Retricting Access to Menu Items

2006-03-07 Thread Luis Morales
Miguel, Take this tips: Before load your html main tags put: . . Then try get the person array from another php page, using the same schema for that. Regards, Luis Morales On Mon, 2006-03-06

Re: [PHP-DB] PHP, MySQL and Apache

2006-02-27 Thread Luis Morales
Hi kinfe, To connect to myql from php you only need build your php with mysql support. Now, for render vxml documents you are using apache o IIS ? I recommend LAMP (Linux+Apache+Myql+Php) Regards, Luis Morales On Mon, 2006-02-27 at 16:07 +0100, Kinfe Tadesse wrote: > Hi all, >

Re: [PHP-DB] Tracking Site Version

2006-02-23 Thread Luis Morales
ondering if any of you > > had a similar system, or if you had any suggestions for recording site > > changes etc.. > > > > Many thanks, > > Alex. > -- --

Re: [PHP-DB] Generate Report

2006-02-22 Thread Luis Morales
lumn F Column G Column H Column I Column J Column K Column L ------ end generate_report.php -- Good Luck Buddy!! Regards, Luis Morales On Tue, 2006-02-21 at 23:06 -0500, Jeff Broomall wro

Re: [PHP-DB] Creating checkbox list.

2006-02-21 Thread Luis Morales
gt; and create the above. Can you help? > > As I look at this, I believe I'm going to need to create an array for my > final "report." So I just added the [] after sel_group. > > Thanks. > > Ward > -- - Lui

Re: [PHP-DB] Issues with Oracle

2006-02-20 Thread Luis Morales
b->_db['debug']; echo ""; } ?> ---- Suerte, Luis Morales On Mon, 2006-02-20 at 15:22 -0400, ERNESTO PENALOZA wrote: > php_info -- --------- Luis Mo

Re: [PHP-DB] handling of checkboxvalues

2006-02-13 Thread Luis Morales
umm, ok... if you put your using echo: "; ?> Or over html : "'>" On this way both samples must be ok..... Good luck Luis Morales On Sun, 2006-02-12 at 10:33 +0100, Ruprecht Helms wrote: > Luis Morales wrote: > > Well, > > > > you ca

Re: [PHP-DB] handling of checkboxvalues

2006-02-11 Thread Luis Morales
Well, you can do this... form.php form name='my_form' method='post' action='form.php' ENCTYPE='multipart/form-data'

Re: [PHP-DB] screen resolution!

2006-02-06 Thread Luis Morales
Well, you can do use auto resize if you use 0% over height and width table's html tags. eg. put your table content --- Regards, Luis Morales On Mon, 2006-02-06 at 09:28 -0800, Micah Stevens wrote: > Yes, there is. It's called HTML. > > You might think me

Re: [PHP-DB] PostgreSQL 7.2 - 8.0 replication issue

2005-06-27 Thread Luis Morales
new location on new server su - postgres psql -f db.out template1 Good Luck! Regards, Luis Morales On Mon, 2005-06-27 at 15:46 -0300, Martín Marqués wrote: > El Lun 27 Jun 2005 15:31, Mark Galbreath escribió: > > I have to upgrade a web app from PHP 4.3.11 with PostgreSQL 7.2 to PH

Re: [PHP-DB] connection from Linux/Apache/PHP/Freetds to MSSQL

2005-06-15 Thread Luis Morales
ave a nice day, Regards, Luis Morales On Wed, 2005-06-15 at 23:02 +0200, Fülöp Tamás wrote: > Freetds?? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Moving data from one MySQL table to another

2005-05-19 Thread Luis Morales
Try do that whit phpmyadmin. Regards, Luis Morales Bastien Koert wrote: > if the archive tables structures are identical and no processing needs > to be done, why not use a 'select into table where ' and use the ids > of the records to choose the ones that move? > > B

Re: [PHP-DB] Connecting to MS Access DB in PHP, on Linux, Apache

2005-05-14 Thread Luis Morales
Sure!!! Take a look on: http://www.weberdev.com http://odbtp.sourceforge.net/ My personal suggest is to use odbtp whith pear DB interface. Regards, Luis Morales rob wrote: > Anyone got any good websites or resources on how to connect to an > access database and perform sql querr

Re: [PHP-DB] Need some help

2005-05-11 Thread Luis Morales
Why not use a sessions ? once posted your process form, you can store the final results on session vars and passing the results to other pages. Take a look on www.php.net on session topic. Regards, Luis Morales Murray @ PlanetThoughtful wrote: >>Sorry but this isn't working. T

Re: [PHP-DB] Where are my form variables?

2005-05-04 Thread Luis Morales
The best way is made an var_dump of $_POST array vars: Regards, Luis Morales Juffermans, Jos wrote: >Hi, > >If you expect your variables to be generated automatically, you may find >that newer versions of PHP have that disabled by default - because it's less >secure. &

Re: [PHP-DB] dbase and Debian

2005-03-23 Thread Luis Morales
mysql or symilar to export dbf data base to mysql or any RDBM. Regards, Luis Morales -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] MySQL backup software

2004-10-27 Thread Luis Morales
;; system("/usr/bin/mysqldump -uroot -pag10nus --lock-tables $ref->{'Database'} > ".$path."/$ref->{'Database'}.sql"); system("/usr/bin/bzip2 -9 ".$path."/$ref->{'Database'}.sql"); } $sth->finish(); $dbh->di

[PHP-DB] Concurrent rutines

2004-07-20 Thread Luis Morales
Hello, Does any know how run many procedures concurrently over php. For example: $init = ; While (($t < $timeout ) and ($allresult == 0 ) ){ $t = - $init; launch{ $r[1] = app1; $r[2] = app2; $r[n] = appn; } $allresult = $r[1] && $r[2] && ... && $r[n]; } Regards,