Is it possible to use the MySQL API functions from php? I want to add MySQL users from php. ie something that will work like this:
<?php
$pwd=PASSWORD($pwd);
INSERT INTO Users (Password) VALUES ($pwd);
?>
The MySQL function PASSWORD() is not part of the php/MySQL interface. Is this possible?
Thanks in advance
Mike F