[PHP-DB] Re: Changing leters to *

2002-07-03 Thread Mike Germain

Password Field: INPUT TYPE=PASSWORD
An INPUT element with `TYPE=PASSWORD' is a text field as above, except that
the value is obscured as it is entered. (see also: section Security
Considerations).

For example:

Name:  Password: 

"Bartosz Matosiuk" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> Hi
> I need to change letters to * in the form window (password) and I don't
know
> how. Mayby someone has got some ideas
> Thanks
>
> madsiuk ([EMAIL PROTECTED])
>
>



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DB] DB400 on AS/400

2002-06-24 Thread Mike Germain

I am trying to do a query on a database on an AS/400. The database is in
DB400 format which is simaluar to DB2. Can PHP access databases in DB400 via
ODBC or does it only work in DB2?
thx,
Mike




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DB] help with $_Get in form

2002-06-21 Thread Mike Germain

I'm trying to get a partnum field into a select statement but i'm not
getting anything passed into the varable. i'm sure it's a simple fix but i
can't find it.
thx
mike



Inventory Lookup
  
  






 PartNum:
 



";
exit; } else { echo "Connection successful\n"; };
$query = "SELECT whs,loc,miprod,mndesc,onhand FROM npshrlib_prdinv1 where
miprod = '$partnum' ";
$result = odbc_exec($conn, $query);
odbc_result_all($result);


?>





-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php