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

    Javascript with php and parameter questions

    Can you write php code inside a javascript function? How do you pass parameter into a javascript function like the one below? I want to change the file name "Header.php" dynamically. Can this be done? <SCRIPT language="JavaScript1.2"> function alert() { testwindow= window.open ("Header.php"...
  2. dmkFoto

    How to specific number of records to retreive in a query?

    My item file contains too many records to display. I want to limit the display to only 20 records at a time. In the Select statement, how do I specify the the first 20 records, 2nd 20, etc.? Thanks. Alex
  3. dmkFoto

    How to fill a dropdown, and capture the return?

    I want to put a couple of dropdowns in my webpage. The first dropdown will be filled with the categories of my products, with the first item "Select product category first!", then followed by the 10 different categories that I retreive from the database query. Would appreciate some sample...
  4. dmkFoto

    HTML editor?

    My first website was written with FrontPage ver 4 six years ago. I have just done a crashed in php/mySQL and rewrote the site with database backbone. Lot of things have changed in the past 6 years, I am sure my FP4 is totally obsolete. What would be considered a good and easy to learn and use...
  5. dmkFoto

    Can I pass a parameter to a php file?

    Suppose I have a template php file as follow: templatex.php <?php echo $Desc; ?> Is there any way to past the parameter into the templatex.php file like: templatex.php/$Desc = 'IPod' Thanks. Alex
  6. dmkFoto

    How exactly the LIKE keyword works?

    I have a table named Inventory and have 3 items in it containing the work w069. I want to run a query to return the three items. My query: Select * from Inventory where Description Like 'w069' It doesn't seem to work, returning zero row. What's wrong? Alex

Part and Inventory Search

Back
Top