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

    Axis 2 and Java

    Does anyone know where I can get a simple example of Java using Axis2, like a notify then request to get the information back? thanks, - thom
  2. Thomas001

    SQL field name iteration

    What if I'm trying to retreive multiple field names by matching a column they own. like: *E404 Joe *E403 Joe *E402 Joe *E401 Jim If I did a search for Joe, I would get E404, E403, E402, E401.. Am I explaining this well enough?
  3. Thomas001

    My SQL Query

    $row = mysql_query("SELECT dept FROM $db_table WHERE superemail = '$sent_superemail' "); $set_dept = $row[?]; $sql = "SELECT * FROM $dbtable WHERE dept = '$set_dept' " Basicly I'm trying to get the dept based on the superemail, but I can't figure out how I would do it. I'm farely new to SQL...
  4. Thomas001

    Adding SQL fields on the fly..

    How would I go about adding multiple fields to a MySQL database that a user can specify within the same page?
  5. Thomas001

    Syntax Error..

    This isn't getting put into the database, maybe it's because of a syntax error.. I'm not getting any error messages: $creation = "INSERT INTO $uber_table ( `subject` , `comment` , `modif_sc` , `name` , `type`, `date` ) VALUES ('$subject', '$comment'...
  6. Thomas001

    saving to file

    Is there a way to bring up a "save as" dialog to save a certain set of variables? I also have a <textarea> that needs to be saved this way to. Thanks ^_-
  7. Thomas001

    Printing a SQL as array (easy solution?)

    $query = "SELECT subject FROM $uber_table"; $result = mysql_fetch_array(mysql_query($query)); Retrieve($result); // Retrieve This Data and put into link form. // function Retrieve($array) { foreach($array as $value) Print("$value <br>"); } Just trying to get this to print out all...
  8. Thomas001

    Printing an array..

    Does anyone know a good way I can print out an entire array? All I know is that it would probably require a loop of some sort. Thanks :)
  9. Thomas001

    added to database ?

    Would anyone know why I might not be getting an error message after trying to insert something into a database? It doesn't actually insert, and it worked fine yesterday.. The only thing I did was add new fields in the database. Help greatly appreciated.
  10. Thomas001

    included file isn't really being included...

    my include file // // [CONNECT!] global $db_host, $db_user, $db_pass, $db_use, $db_table, $linkID; function Connect() { //if (!isset($db_host)) // If not set use defaults $db_host=('localhost'); //if (!isset($db_user)) // If not set use defaults $db_user=('root'); //if...
  11. Thomas001

    password sql misery

    I'm trying to retreive a password out of a database function Verify() { $query = mysql_query($run); $run = " SELECT * FROM $dbtable WHERE acc='$sent_acc' AND pass='$sent_pass'; "; if($run) return true; else return false; } it always returns true this is where I'm trying to verify if the...
  12. Thomas001

    Using PHP function with OnClick=

    How would I go about using a PHP function I've coded with the Onclick= field on my button?

Part and Inventory Search

Back
Top