PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   General Discussion (http://www.photopost.com/forum/general-discussion/)
-   -   Database user and password fields (http://www.photopost.com/forum/general-discussion/110921-database-user-password-fields.html)

Bap December 15th, 2004 01:56 PM

Database user and password fields
 
Hi I am doing a ccbill intigration and need a little help if possible.

Their software will write to my PP database when a user signs up or canceles keeping my database current.


Here is what a ccbill tech wrote:

"There would be a table or multiple tables under the database. I will
need the name of the one that we need to write to for members to gain
access. Also, there will be field names in the table as well, the ones I
need names for are which one are designated for 'username' and 'password.' "

So I need to have them write to pp_users? what about pp_sortmemb? And what would the field names for username and password be in pp_users.

Thanks in advance
Bap

Chuck S December 15th, 2004 02:26 PM

Why not send a complete insert so he knows how the table is

The password field is simple md5 encryption

INSERT INTO `pp_users` (`userid`, `usergroupid`, `username`, `password`, `email`, `homepage`, `icq`, `aim`, `yahoo`, `joindate`, `posts`, `birthday`, `ipaddress`, `location`, `interests`, `occupation`, `bio`, `site`, `offset`, `views`) VALUES (1, 5, 'SomeUser', 'md5passwordhere', 'someemail@email.net', 'http://', '', '', '', 1099415035, 0, '0000-00-00', '68.44.160.126', '', '', '', '', 'My Website', 0, 129);

Bap December 15th, 2004 02:49 PM

Thanks chuck....Your always great help


All times are GMT -5. The time now is 04:29 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97