Fake Name Generator
Create random names for testing and mock data.
include_once $_SERVER['DOCUMENT_ROOT'] . "/lib/lib.php"; $toolName = "Fake Name Generator"; $toolSlug = "fake-name-generator"; $toolCategory = "generators"; $toolCategoryName = "Generators"; $toolContent = [ 'about' => 'Fake Name Generator creates random names for testing, mock data, storytelling, and development use.', 'howto' => [ 'Choose how many names to generate.', 'Click Generate.', 'Copy or download the names.' ], 'why' => 'Useful for developers, writers, and testers who need sample names without using real identities.', 'faq' => [ [ 'q' => 'Are these real people?', 'a' => 'No, these are randomly generated names.' ], [ 'q' => 'Can I generate many names?', 'a' => 'Yes, you can generate multiple names at once.' ], [ 'q' => 'Is it free?', 'a' => 'Yes, completely free.' ] ] ]; include_once $_SERVER['DOCUMENT_ROOT'] . '/inc/tools/related-tools-helper.php'; $relatedTools = getAutoRelatedTools($toolSlug, $toolCategory, 5); include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/header.html"; ?>
include_once $_SERVER['DOCUMENT_ROOT'] . "/inc/nav.html"; ?>Create random names for testing and mock data.