|
Hi there, and welcome!
It would be most practical to do the script in a server-side language, such as PHP or ASP.NET. If I were doing it, I would store all of the data of each company in a database table (I use MySQL for my databases, but there are other database flavors.) Call the table "companies" and have a field for logo, name, address, telephone, url, services, etc.
You then use a sql query to get the companies that you want from the database. You can randomize the records either with your server-side script or via the query, depending on how many company records you have, and how efficient you want your script to be.
If you are new to server-side scripting, you'll want to take a look through a Google search for some tutorials, because there is a lot to learn about it.
|