Hi all. who know how create page like this gameminer ?

Dani AI

Generated

asked how to create a page like "gameminer". As pointed out, sites like that are typically generated by server-side scripts (PHP, ASP.NET) that provide dynamic HTML and JSON endpoints. As noted, the thread lacks specifics; useful things to decide up front are whether the goal is to replicate layout, data feeds, user accounts, game embeds/players, leaderboards, or monetization.

A practical, low-risk plan: inspect the target site with browser developer tools to see which assets and API calls drive the UI (Chrome DevTools). Map visible features to backend components (content CRUD, auth, game library, search, ratings, API endpoints). For a PHP-based rebuild, use modern tooling (Composer) and consider a framework such as Laravel for routing, auth, and migrations (PHP Manual; Laravel Docs). Store structured data (games, posts, users, scores) in MySQL/Postgres and use Redis for caching. Implement APIs that your front end consumes and iterate: minimal viable feature set first, then add caching, pagination, and async loading.

Example minimal schema (starter reference):

CREATE TABLE users (
  id INT AUTO_INCREMENT PRIMARY KEY,
  username VARCHAR(50) UNIQUE NOT NULL,
  password_hash VARCHAR(255) NOT NULL,
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

CREATE TABLE games (
  id INT AUTO_INCREMENT PRIMARY KEY,
  slug VARCHAR(100) UNIQUE NOT NULL,
  title VARCHAR(200) NOT NULL,
  metadata JSON,
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

CREATE TABLE posts (
  id INT AUTO_INCREMENT PRIMARY KEY,
  game_id INT,
  user_id INT,
  title VARCHAR(200),
  body TEXT,
  created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);

Legal and security notes: do not copy copyrighted assets or private data from the original site; respect robots.txt and terms of service (Robots Exclusion Standard). Use prepared statements, output escaping, CSRF protection, and rate limiting. Start small, validate each feature, and expand once the core dynamic plumbing is stable.

Recommended Answers

All 2 Replies

gameminer is not a page its a php or aspx script which create all elements dynamically.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.