Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: 805pr
  • Order by date
  1. 805pr

    MySQL and Perl with multiple values

    This link may help you...near the midlle they talk of "multiple selects" and writing the choices to an array. Their is some sample cgi code. You just need to add the code to write to the MySql table. http://www.cgi101.com/class/ch5/text.html
  2. 805pr

    Hey, At home I had a mysql serve

    Have you checked "register_globals =" setting in php.ini & tried it with them on vs off. ? It sounds like your variable $query is not getting passed. Mike
  3. 805pr

    simple SQL? Limit and order...

    I would do it in two steps, although others may have a more efficient way. First you need to SELECT the 10 most current Records into a temporary table. Then sort those 10 by the field you called "rubrik". 1. CREATE TABLE temp SELECT *, MAX(date)AS Max FROM table_name GROUP BY...
  4. 805pr

    Transfering MySQL data from one machine to another

    I would use mysqldump for this. It will backup all tables in a database. from the unix/linux propmt(not in mysql): mysqldump -u username -p database > backup.sql On the second machine first create the database where you want the tables then: mysql -u username -p database < backup.sql Mike
  5. 805pr

    Can't connect to MySQL from other machine

    I was also having trouble getting connected to mysql from a remote client throught the internet (ODBC and PHPSQLAdmin). I kept getting: &quot;ERROR 2013: Lost connection to MySQL server during query&quot; although I could connect locally just fine. So I knew my permissions were o.k. in mysql...

Part and Inventory Search

Back
Top