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 TouchToneTommy 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: joep
  • Content: Threads
  • Order by date
  1. joep

    MySQL installation question

    Hello, After succesfully installed MySQL i have to change the password of the administrator. In the user table of the mysql database stands the User 'root' and no password filled in (seems normal to me) For Host i've filled in the localhost plus my domain. (i think thats' all normal, right?)...
  2. joep

    Uninstalling MySQL ?

    Hello, Can someone explain me how to uninstall MySQL on a FreeBSD UNIX machine? (so no .rpm) Can i just delete all the mysql folders and related files or do i find problems doing that? Best regards Joep
  3. joep

    2 tables INSERT/UPDATE at the same time?

    Hello, With the following string you can update/fill a table: ------------- $sql = "INSERT INTO tableA (name,address,fax,email) VALUES ('$name','$address','$fax','$email')"; ------------- That's easy ands works. But now i want to insert values to another table at the same time. I...
  4. joep

    Two (or more) tables by UPDATE/INSERT query

    Hello, With the following string you can update/fill a table: ------------- $sql = "INSERT INTO tableA (name,address,fax,email) VALUES ('$name','$address','$fax','$email')"; ------------- That's easy ands works. But now i want to insert values to another table at the same time. I...
  5. joep

    Print tables with horizontal output.

    Hello,<br><br>I want to print the results of a query horizontal in colums instead of the usual rows.<br>'Normally':<br>result 1<br>result 2<br>result 3<br>etc.<br><br>My idea:<br>result 1 ¦ result 2 ¦ result 3 ¦ etc.<br><br>I thought something out like this:<br>&lt;?<br>$sql = &quot;SELECT *...
  6. joep

    Let the script decides which part to read ????

    Hello,<br>I hav written 3 scripts. All with a little bit of other output.<br>What i want to do is let the script decides which piece it has to read. (you know, if/ else etc.) The 'problem' is that the script has to 'look' to the value of an ENUM (i've got an ENUM with three choices) and then...
  7. joep

    What's wrong in this code (php results from SQL)

    Hello, <br><br>I've got three checkboxes on which i want to search for results in my database. Code: <br>--------------------------- <br>if ($submit) { <br><br>if ($webmail ¦¦ $opstartcd ¦¦ $telnet) { <br>$sql = &quot;SELECT * FROM access WHERE &quot;; <br><br>if ($webmail) <br>{$sql .=...
  8. joep

    [newbie] PHP searchform

    Hello,<br><br>I have a searchform where i want to be able to search for persons who are married and display the selected records in a table. That's going o.k.<br>But if i don't check the checkbox, there has to be a 'zero' value so that all the records in the database will be displayed. What am i...

Part and Inventory Search

Back
Top