jayp
jayp

Reputation: 1

get database field value using javascript

Is there any other way I could access the database using javascript? I have progress bars and I need to check whether the value of a field in my database is true to keep them moving. I've already google-d about it and I found out that it's not possible. If I use cookies, then I have to redefine the cookie everytime I change the computer where I log in. Thank you very much! :)

Upvotes: 0

Views: 613

Answers (1)

pho
pho

Reputation: 25489

You can use ajax to call a php (or asp or coldfusion) script which will return the value of the database field

Upvotes: 1

Related Questions