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 IamaSherpa 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: *

  1. zebedeee

    passing a variable

    Try adding something like: <input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;SUBMIT&quot;> before the &quot;</FORM>&quot; line
  2. zebedeee

    could mysql table cell hold unlimited string?

    It might be worth seeing this from the MySQL manual for types TEXT and BLOB: If you want to use GROUP BY or ORDER BY on a BLOB or TEXT column, you must convert the column value into a fixed-length object. The standard way to do this is with the SUBSTRING function. For example: mysql> select...
  3. zebedeee

    why is my search returning commas as values

    If you run the query in mysql, is anything returned?
  4. zebedeee

    Posting variables from PHP to HTML

    Code the HTML page as a PHP page and after the link to the page in the first page add: ?[variable1_name]=[variable1_value]&[variable2_name]=[variable2_value] so if the new page is page2.html, code it as page2.php and make the link in page1.php as: <a...
  5. zebedeee

    shell script problem

    As I'm a bear of very little brain, I'd start by saving the output of the mysql bit into a text file - assuming 1 line per output record. Then, using you favourite scripting language (which I'll assume is Bash), open the text file as an array and use foreach ($line @array){ /* Whatever code...

Part and Inventory Search

Back
Top