Jump to content

phpjabbers

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.phpjabbers.com

Profile Information

  • Gender
    Not Telling

phpjabbers's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. There is no such thing as Update ['table'] values (....) see Update syntax in MySQL http://dev.mysql.com/doc/refman/5.0/en/update.html your query showld be like this UPDATE `table2` SET `UID` = `$vbid`, `email` = `$vbemail`, `username`= `$vbuname`, `pwd` = `$vbpass`, `emailverified` = 'yes'
  2. I use SQLyog. Very nice program. It has releases both for Win and Linux. And also it has free community version. http://webyog.com/en/index.php
  3. What is your OS? Try to start/restart mysql with the following su mysql mysql_install_db exit /etc/rc.d/rc.mysqld start / restart
  4. Hi write your db table structure so I can write you the query you need. from the information you provided your query should be something like: select t1.fbla101, t2.firstname, t2.lastname from users as t1, events as t2 where t2.fbla101 = t1.id
  5. I think the problem you have is because you have enabled all extensions during PHP installation. You have to open php.ini and disable all the extensions (just comment the lines). Just leave the extensions that you need because the others (like Orcales oci8 lib) are looking for external files and libs.
  6. Try this one http://www.phpjabbers.com/slideshow/
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.