Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
PHP Code:
while($row = $find_user->fetch_assoc()) {
why a while when you are sure, that you have only 1 entry?
So...
PHP Code:
$row = $find_user->fetch_assoc()
would be enough and better...
so far
Yannici
Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
Quote:
Originally Posted by
Yannici
PHP Code:
while($row = $find_user->fetch_assoc()) {
why a while when you are sure, that you have only 1 entry?
So...
PHP Code:
$row = $find_user->fetch_assoc()
would be enough and better...
so far
Yannici
For some reason i see alot of people do it for some reason.
Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
Quote:
Originally Posted by
Clawed
For some reason i see alot of people do it for some reason.
For some reason MySQLi is a bitch sometimes and doesn't allow me to re-grab a column.
Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
PDO is so much simpler, suggest you try it out.
Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
Quote:
Originally Posted by
Makarov
PDO is so much simpler, suggest you try it out.
I'm actually working on moving this project in a completely different direction. I've been looking at Node.js & web sockets and I think I'll be able to do something cool with that :p
Re: Fuse Housekeeping [PHP, MySQLi, jQuery]
Maybe an idea to make a staff chatbox in jQuery/Ajax
http://img189.imageshack.us/img189/2337/f83s.png