Fake Name Generator

http://www.fakenamegenerator.com/

Fake Names :: Generated
Id Name Address Town Zip Country
Table based on the "FlexCRETE" responsive theme
1 Baron, Warrane 16 Rue du Fossé des Tanneurs TOULON 83000 France
2 Marcoux, Somerville 12 Rue Marguerite VILLIERS-LE-BEL 95400 France
3 Plourde, Audrey 32 Rue du Paillle en queue LES MUREAUX 78130 France
4 Lépicier, Carine 1 Place de la Madeleine PARIS 75009 France
5 Lapresse, Somer 31 Rue Beauvau MARSEILLE 13001 France
6 Briard, Julienne 18 Rue du Fossé des Tanneurs THONON-LES-BAINS 74200 France
7 Goudreau, Vachel 18 Rue Adolphe Wurtz LE PETIT-QUEVILLY 76140 France
8 Briard, Astolpho 13 Place du Jeu de Paume VIENNE 38200 France

$path_to_db_script = $_SERVER['DOCUMENT_ROOT']↵
          . "/" . "db/pjjtextbase.php";
require $path_to_db_script;
$fakenames = ptb_connect('fakenames.csv','F');

$theCount = ptb_count ($fakenames);
$theItem = 0;

for ($i = 0; $i <= $theCount-1; $i++) {
	echo "<tr>
	<td>" . $fakenames[$i]['id'] . "</td>
	<td>" . $fakenames[$i]['lname'] . ", " . $fakenames[$i]['fname'] . " </td>
	<td>" . $fakenames[$i]['address'] . "</td>
	<td>" . $fakenames[$i]['town'] . "</td>
	<td>" . $fakenames[$i]['zip'] . "</td>
	<td>" . $fakenames[$i]['country'] . "</td>
	</tr>";
}

Made with ➠ pjjTextBase

Table used ➠ fakenames.csv

TableSorter ➠ http://tablesorter.com/docs/

Other sources

33 javascript solutions for sorting tables
sorttable: Make all your tables sortable

Feb 17 2021 06:30:58