SELECT cities.cityName, cities.cityID, images.imagePath, images.imageName, cities.description, photographers.photographerName, years.yearName
FROM photographers, years, product LEFT JOIN images ON cities.cityID = images.cityID
WHERE cities.cityID = images.cityID
AND cities.cityShow = 'Y'
AND...
Hello everyone,
I made two pages (Search and Result). I've created a database with five tables (cities, categories, images, photographers and years). I used two parameters from search page (categoryID and photographerID). On the results page, I made the following query:
SELECT cities.cityID...
Hello,
can You help me build an advanced results page in Dreamweaver? I have three tables (products, categories and vendor). Table products has the fields: productID, productName, categoryID, vendorID. Table category has the fields: categoryID, categoryName. Table vendor has the fields...
Hello,
I try use this query in localhost (XAMPP) and hi work,
<code>SELECT C.categoryName, Count(P.prodname) as prodcount, c.categoryID FROM categories as C left join products as P on p.categoryID = c.categoryID WHERE P.prodShow = 'Y' GROUP BY c.categoryName</code>
but when I put this code in...
Chris can You write one sample about this thread?
table Multimedia
mmID: 1, 2
mmName: web, flash
mmDesc: web is..., flash is...
mmPath: global\images\web.jpg, global\flash\flash.swf
Can You make this table in database and make php page wich will display at the same place different mmPath...
I put images in database like web.gif and I call it with query in DW8. This work but when I put swf file in database and I call it with <?php echo $row_rsDescription['imagePath']; ?> dont works.
This is code for swf file in imagePath field of database:
<object...
In web pages I found menu with this links
example.php?category=web
example.php?category=music
example.php?category=game
When I click menu button web (example.php?category=web) it opens this page in part of web page. Next buton (music) opens music page in same place of web page etc...
What's...
I have an table with this fields: cat_id, cat_parent_id and cat_name. I have vertical menu with this items! When I click menu items Audio I have "sample.php?c=1" etc...
Example:
cat_id cat_parent_id cat_name
1 0 audio
2 0 video
3...
This script works but one error (radio button is on the top of question) like:
O
Red O
Blue O
White
How to put radio button in the row where is question "White"?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.