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 SkipVought 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. 1jochem

    Search a string through all columns/tables

    not at all sure of the details (other than to know that whether you can do this depends on the version of MySQL you use.) but there is something in the newer implementations called FULLTEXT which allows you to create an index over multiple text fields check out...
  2. 1jochem

    creating new records in mulitple tables

    If your using MySQL then stored procedures is not yet an option (not supported as of writing this.) You can get around this by using the function "mysql_insert_id" - which will tell you the autoincrement ID of the last successful MySQL INSERT statement... check out...
  3. 1jochem

    where is my cookie?

    is the client-side cookie read from the PHP code or using javscript on the client-side and passed back to the server via the ? part of the url? - sorry if this is a stupid Q! rgds, Jochem
  4. 1jochem

    Can somebody help me connect to SQL Server, part 2

    $dbcnx = @mysql_connect("host", "user", "passwd") ---------^ mysql_connect ! mssql_connect
  5. 1jochem

    hide email address

    do something like: (in the HTML page) <a href=&quot;mailto: <script> <!-- document.write('myaddress'); document.write('@'); document.write('mydomain'); document.write('.com'); //--> </script> &quot;>mail me</a> -- basic idea is too write out pieces of the address with javascript at render...
  6. 1jochem

    parsing and page layout

    why does it have to be at the bottom of the page. like DjangMan says just start generating the webpage after you have accessed the DB. PHP engine parses from top to bottom your PHP file. the output of the PHP engine is what ever your PHP code outputted and what ASCII was between the PHP code...

Part and Inventory Search

Back
Top